I try to get my WFS working but with no success. Actually I use nearly the same Code like in the OL3-Examples.In Firebug I can see a lot of WFS-Requests and a GML-Response which looks fine to me. Nevertheless nothing is shown in the map.Can someone see the problem?
var vectorSource = new ol.source.ServerVector({ //format: new ol.format.GeoJSON(), format: new ol.format.WFS(), loader: function(extent, resolution, projection) { var url = 'http://.......&REQUEST=getfeature&typename=deu_adm1_3857&&STYLES=&BBOX=-20026376.39,-20048966.10,20026376.39,20048966.10&SRS=EPSG:3857& MAXFEATURES=99&SERVICE=WFS&VERSION=1.1.0'; $.ajax({ url: url }); }, strategy: ol.loadingstrategy.createTile(new ol.tilegrid.XYZ({ maxZoom: 19 })), projection: 'EPSG:3857' }); var loadFeatures = function(response) { vectorSource.addFeatures(vectorSource.readFeatures(response)); }; var vectorLayer = new ol.layer.Vector({ source: vectorSource, style: new ol.style.Style({ stroke: new ol.style.Stroke({ color: 'rgba(0, 0, 255, 1.0)', width: 5 }) }) });
أكثر...
var vectorSource = new ol.source.ServerVector({ //format: new ol.format.GeoJSON(), format: new ol.format.WFS(), loader: function(extent, resolution, projection) { var url = 'http://.......&REQUEST=getfeature&typename=deu_adm1_3857&&STYLES=&BBOX=-20026376.39,-20048966.10,20026376.39,20048966.10&SRS=EPSG:3857& MAXFEATURES=99&SERVICE=WFS&VERSION=1.1.0'; $.ajax({ url: url }); }, strategy: ol.loadingstrategy.createTile(new ol.tilegrid.XYZ({ maxZoom: 19 })), projection: 'EPSG:3857' }); var loadFeatures = function(response) { vectorSource.addFeatures(vectorSource.readFeatures(response)); }; var vectorLayer = new ol.layer.Vector({ source: vectorSource, style: new ol.style.Style({ stroke: new ol.style.Stroke({ color: 'rgba(0, 0, 255, 1.0)', width: 5 }) }) });
أكثر...