How to get the extent of a GeoJSON vector source?

2019-06-22 01:32发布

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?

3条回答
地球回转人心会变
2楼-- · 2019-06-22 02:11

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());
查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-06-22 02:18

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());
        }
    }
});
查看更多
SAY GOODBYE
4楼-- · 2019-06-22 02:23

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

var extent = *YOURLAYER*.getSource().getExtent();
map.getView().fit(extent, map.getSize());
查看更多
登录 后发表回答