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 a vector source:
var vectorSource = new ol.source.Vector({ url: 'polygon.geojson', format: new ol.format.GeoJSON(), projection : 'EPSG:4326', });
Now I want to get a degree:
var extent = vectorSource.getExtent();
However, the extent value is:
Array [ Infinity, Infinity, -Infinity, -Infinity ]
I am using OL 3.9.0, and the vector layer with this source is displayed correctly. What am I doing wrong?
Mark source share