react-native-geojson
react-native-geojson copied to clipboard
Do this code support multipolygon type?
I am trying to load a multipolygon but I only get a rendering of the last polygon on the multi polygon array, any idea on this?
Works for me if that helps.
@adrianjorge yes. Use the suggested GeoJson format:
{ type: 'FeatureCollection', features: [ { type: 'Feature', properties: {}, geometry: { type: 'Point', coordinates: [-122.42305755615234, 37.82687023785448], } } ] }