react-native-geojson icon indicating copy to clipboard operation
react-native-geojson copied to clipboard

Do this code support multipolygon type?

Open adrianjorge opened this issue 7 years ago • 2 comments

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?

adrianjorge avatar Aug 24 '17 15:08 adrianjorge

Works for me if that helps.

ihor avatar Jan 10 '18 22:01 ihor

@adrianjorge yes. Use the suggested GeoJson format: { type: 'FeatureCollection', features: [ { type: 'Feature', properties: {}, geometry: { type: 'Point', coordinates: [-122.42305755615234, 37.82687023785448], } } ] }

ProteanDev avatar Oct 04 '18 19:10 ProteanDev