我正在尝试测试基于Windows Server 2008上的PostGIS / Geoserver / OpenLayers堆栈的简单Web地图。
当我通过以下方式加载WMS层时:
var gwctest = new OpenLayers.Layer.WMS(
"gwctest",
"http://localhost:1979/geoserver/wms",
{
'layers': 'Index2000:index_vect_s100',
'format': 'image/png',
'srs': 'EPSG:3857',
'units': 'm',
'transparent': true
},
{'opacity': 0.8, 'isBaseLayer': false, 'visibility': false}
);
一切似乎都很好。
但是,当我尝试使用GeoWebCache将WMS图层添加到地图中时,
"http://localhost:1979/geoserver/wms"
与:
"http://localhost:1979/geoserver/gwc/service/wms"
我的数据突然从正确的位置移动:
关于可能的原因有什么想法?
编辑:有关GWC邮件列表帖子的一些其他信息。