Typescript version of: react-native-geojson
Fast way to add geojson to react-native-maps. with some typescript and utils, but still very tiny! less than 8kb!
npm install react-native-typescript-geojson
yarn add react-native-typescript-geojson
import React from 'react';
import MapView from 'react-native-maps';
import Geojson from 'react-native-geojson';
const alcatraz = {
type: 'FeatureCollection',
features: [
{
type: 'Feature',
properties: {},
geometry: {
type: 'Point',
coordinates: [-122.42305755615234, 37.82687023785448]
}
}
]
};
const Map = props => (
<MapView>
<Geojson geojson={alcatraz} />
</MapView>
);
- [ ] Set up eslint
- [x] Set up minify
- [ ] Testing
- [ ] Refactor
- [x] Add more typings
- [ ] Accept more props
- [ ] Better examples