javascript - How to get the extent of a GeoJSON vector source? - Stack Overflow

I have this GeoJSON file (polygon.geojson)...{"type": "Feature","geometry"

I have this GeoJSON file (polygon.geojson)...

{
  "type": "Feature",
  "geometry": { "type": "Polygon", "coordinates": [ [ [73, 15], [83.0, 15], [83, 5], [73, 5], [73, 15] ] ] },
  "properties": { "name": "Foo" }
}

...and use it as vector source:

var vectorSource = new ol.source.Vector({
    url: 'polygon.geojson',
    format: new ol.format.GeoJSON(),
    projection : 'EPSG:4326',
});

Now I want to get the extent with:

var extent = vectorSource.getExtent();

The value of extent, however, is:

Array [ Infinity, Infinity, -Infinity, -Infinity ]

I'm using OL 3.9.0 and the vector layer with this source is displayed properly. What am I doing wrong?

I have this GeoJSON file (polygon.geojson)...

{
  "type": "Feature",
  "geometry": { "type": "Polygon", "coordinates": [ [ [73, 15], [83.0, 15], [83, 5], [73, 5], [73, 15] ] ] },
  "properties": { "name": "Foo" }
}

...and use it as vector source:

var vectorSource = new ol.source.Vector({
    url: 'polygon.geojson',
    format: new ol.format.GeoJSON(),
    projection : 'EPSG:4326',
});

Now I want to get the extent with:

var extent = vectorSource.getExtent();

The value of extent, however, is:

Array [ Infinity, Infinity, -Infinity, -Infinity ]

I'm using OL 3.9.0 and the vector layer with this source is displayed properly. What am I doing wrong?

Share Improve this question edited Sep 15, 2015 at 17:38 Mark asked Sep 15, 2015 at 11:49 MarkMark 5194 silver badges13 bronze badges 3
  • You could try to replace ol.js by ol-debug.js and step into the getExtent method to really see what's going on (using your browser Dev Tool). Maybe that could help. – Alexandre Dubé Commented Sep 15, 2015 at 12:10
  • Sure you don't use the useSpatialIndex or call the method before the vector source has loaded any features? – Alvin Lindstam Commented Sep 15, 2015 at 14:16
  • Maybe the data is not yet loaded when I want to calculate the extent (I noticed that the extent is set when I open the web console after the page has been loaded). How can I check if the data is ready loaded? – Mark Commented Sep 15, 2015 at 17:02
Add a ment  | 

3 Answers 3

Reset to default 11

I figured it out. I need to wait until the source is loaded:

vectorSource.once('change',function(e){
    if(vectorSource.getState() === 'ready') {
        var extent = vectorSource.getExtent();
        console.log(extent);
        map.getView().fit(extent, map.getSize());
    }
});

EDIT: It might be safer to zoom only if the layer isn't empty:

vectorSource.once('change',function(e){
    if(vectorSource.getState() === 'ready') { 
        if(layers[0].getSource().getFeatures().length>0) {
            map.getView().fit(vectorSource.getExtent(), map.getSize());
        }
    }
});

If you're looking to fit to the extent try this:

var extent = *YOURLAYER*.getSource().getExtent();
map.getView().fit(extent, map.getSize());

You could loop for each feature and create calculate bounds like this:

var bounds = ol.extent.createEmpty();
for(var i=0;i< features.length;i++){
ol.extent.extend(bounds,features[i].getGeometry().getExtent())
}

map.getView().fitExtend(bounds , map.getSize());

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743574584a4473378.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信