react-native-android-mapview

React Native MapView Component for Android.

Usage no npm install needed!

<script type="module">
  import reactNativeAndroidMapview from 'https://cdn.skypack.dev/react-native-android-mapview';
</script>

README

React Native MapView Component for Android

WiP MapView component based on Google Maps SDK for Android.

Example MapView

Note: The style prop with 'height' and 'width' are required to render the component.

let MapView = require('react-native-android-mapview')

...

<MapView
  style = { { height: 300, width: 300 } }
  region = { { latitude: 48.15278342806624, longitude: 11.583065316081047, zoom: 10.0 } }
  onRegionChange = { (e) => console.log(e) }
  annotations = { [ { latitude: 48.15278342806624, longitude: 11.583065316081047, id: 'the1st', title: '1st Marker' } ] }
/>

Props

onRegionChange

https://facebook.github.io/react-native/docs/mapview.html#onregionchange

region

https://facebook.github.io/react-native/docs/mapview.html#region

showsUserLocation

https://facebook.github.io/react-native/docs/mapview.html#showsUserLocation

mapType

https://facebook.github.io/react-native/docs/mapview.html#mapType

annotations

https://facebook.github.io/react-native/docs/mapview.html#annotations