Skip to content

chakrihacker/react-native-safe-mapview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-safe-mapview

React Native Map Component which catches errors and works smoothly

Installation

npm i -S react-native-safe-mapview or yarn add react-native-safe-mapview

Why

  • Many devs use setState for region and it causes performance issue which is solved by this component
  • It also catches errors so you can happily work about other stuff

Usage

<SafeMapView
  // ref for getting instance of mapview for advance actions
  ref={ref => {
    this.mapRef = ref;
  }}
  // set any initial region, it's required
  initialRegion={{
    latitude: 12.9748534,
    longitude: 77.627675,
    latitudeDelta: 0.0922,
    longitudeDelta: 0.0421
  }}
  // Set region whenever you want
  region={this.state.region}
/>

About

A react native mapview which catches all errors for you

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published