2
我還沒有找到如何通過OpenLayers 3中的WFS處理MapServer特定矢量的示例。如果有人能夠提供一個示例,將會非常感激。如何從MapServer創建Openlayers 3中的WFS圖層來源
作爲例子:這我怎麼創建從通過WFS索取地圖服務器矢量圖層中的OpenLayers 2:
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);
這將是在3的OpenLayers相當於?