我还没有找到一个如何在OpenLayers 3中通过WFS处理MapServer,特定向量的例子。如果有人可以提供一个例子,那将非常感激。
例如:这是我如何通过Openlayers 2中的WFS请求从MapServer创建矢量图层:
baseLayer = new OpenLayers.Layer.Vector( "test",
{
style: {fillColor: "green"},
strategies: [new OpenLayers.Strategy.Fixed()],
protocol: new OpenLayers.Protocol.WFS(
{
version: "1.0.0",
url: "http://localhost/cgi-bin/mapserv?map="+mapPath,
featureType: "test",
}),
isBaseLayer: true,
projection: new OpenLayers.Projection("EPSG:31255")
});
map.addLayer(baseLayer);
OpenLayers 3中的等价物是什么?
答案 0 :(得分:0)
在OL3和mapserver上查看本教程,看看它是否有用http://vipassanaandenvironmentalinformatics.blogspot.com/2013/06/web-gis-development-using-openlayers-3.html