Код: Выделить всё
<html>
<head>
<title> A Basic GeoExt Page </title>
<script type="text/javascript" src="http://extjs.cachefly.net/ext-3.4.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="http://extjs.cachefly.net/ext-3.4.0/ext-all.js"></script>
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-3.4.0/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-3.4.0/examples/shared/examples.css" />
<script src="http://www.openlayers.org/api/2.11/OpenLayers.js"></script>
<script type="text/javascript" src="http://localhost:8080/geoserver/www/GeoExt/script/GeoExt.js"></script>
<script type="text/javascript">
Ext.onReady(function() {
var map = new OpenLayers.Map();
var map1 = new OpenLayers.Map();
var layer = new OpenLayers.Layer.WMS(
"Global Imagery",
"http://maps.opengeo.org/geowebcache/service/wms",
{layers: "bluemarble"}
);
var layer1 = new OpenLayers.Layer.WMS(
"Global Imagery",
"http://maps.opengeo.org/geowebcache/service/wms",
{layers: "bluemarble"}
);
map.addLayer(layer);
var panel=new GeoExt.MapPanel({
renderTo: 'gxmap',
region: "center"
height: 400,
width: 600,
map: map,
title: 'A Simple GeoExt Map'
});
var viev=new Ext.Viewport({
width: 500,
height: 360,
padding: 10,
layout:'border',
items: [{
xtype: 'panel',
title: 'Центральная панель',
html: 'Центральная панель',
region: 'center',
margin: '5 5 5 5'
},{
xtype: 'panel',
title: 'Верхняя панель',
//html: 'Верхняя панель',
region: 'north',
height: 80
},{
xtype: 'panel',
title: 'Нижняя панель',
html: 'Нижняя панель',
region: 'south',
height: 80
},{
xtype: 'panel',
title: 'Левая панель',
html: 'Левая панель',
region: 'west',
width: 100
},{
xtype: 'panel',
title: 'Правая панель',
html: 'Правая панель',
region: 'east',
width: 120
}] ,
});
});
</script>
</head>
<body>
<div id="gxmap"></div>
</body>
</html>
Использую OpenLayers+GeoExt.
Заранее благодарен.