-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,68 @@ | ||
# react-native-location-view | ||
|
||
Simple location picker with maps and Google Places API support. | ||
|
||
### Preview | ||
|
||
![](https://github.com/superapp/react-native-location-view/blob/master/screenrecording/screengrab.gif?raw=true) | ||
|
||
### Installation | ||
|
||
Download an install the library | ||
|
||
```npm install react-native-location-view --save``` | ||
|
||
Or if you are using yarn | ||
|
||
```yarn add react-native-location-view``` | ||
|
||
This library depends upon 2 other native libraries | ||
|
||
1. [react-native-maps](https://github.com/react-community/react-native-maps) | ||
2. [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons) | ||
|
||
Make sure to install these before you install react-native-location-view | ||
|
||
For Google Places API go to [this](https://developers.google.com/places/documentation/) page and enable "Google Places API Web Service" (NOT Android or iOS) in the console. | ||
|
||
### Example | ||
|
||
```jsx | ||
import React from 'react'; | ||
import LocationView from "react-native-location-view"; | ||
import {View} from "react-native"; | ||
|
||
|
||
export default class SelectLocationScreen extends React.Component { | ||
state = { | ||
|
||
}; | ||
|
||
render() { | ||
return( | ||
<View style={{flex: 1}}> | ||
<LocationView | ||
apiKey={"MY_GOOGLE_API_KEY"} | ||
initialLocation={{ | ||
latitude: 37.78825, | ||
longitude: -122.4324, | ||
}} | ||
/> | ||
</View> | ||
); | ||
} | ||
} | ||
``` | ||
|
||
### Supported Props | ||
|
||
| Prop | Type | Required | | ||
| ---- | ---- | -------- | | ||
| apiKey | string | Yes | | ||
| initialLocation | object | Yes | | ||
| markerColor | string | No | | ||
| actionButtonStyle | object (style) | No | | ||
| actionTextStyle | object (style) | No | ||
| actionText | string | No | | ||
| onLocationSelect | function | No | | ||
| debounceDuration | number | No | |