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
vectortile_to_geojson.js has several bugs that prevent it from returning the correct GeoJSON geometry for MultiPoint, Polygon, and MultiPolygon features:
It inherits this bug from code copied from vector-tile-js. (Not sure why this code was copied rather than using VectorTileFeature#toGeoJSON. @ansis?)
vectortile_to_geojson.js has several bugs that prevent it from returning the correct GeoJSON geometry for MultiPoint, Polygon, and MultiPolygon features:
VectorTileFeature#toGeoJSON. @ansis?)classifyRings, so it can't tell the difference between Polygons with inner rings and MultiPolygons. Note that Normalize geometry structure; classify polygon rings vector-tile-js#33 proposes to bringclassifyRingsinto vector-tile-js, which would allow us to useVectorTileFeature#toGeoJSONfor this as well.