You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Feature.java has a private GeoJsonObject geometry;. This type should instead be private Geometry geometry; per section 3.2 of the geojson spec:
A Feature object has a member with the name "geometry". The value of the geometry member SHALL be either a Geometry object as defined above or, in the case that the Feature is unlocated, a JSON null value.
The text was updated successfully, but these errors were encountered:
Currently Feature.java has a
private GeoJsonObject geometry;
. This type should instead beprivate Geometry geometry;
per section 3.2 of the geojson spec:The text was updated successfully, but these errors were encountered: