Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chakrihacker/react-native-safe-mapview

A react native mapview which catches all errors for you
https://github.com/chakrihacker/react-native-safe-mapview

Last synced: 2 months ago
JSON representation

A react native mapview which catches all errors for you

Awesome Lists containing this project

README

        

# 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

```jsx
{
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}
/>
```