Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/learnetto/walkwaves
A React Native app for exploring your city
https://github.com/learnetto/walkwaves
geocoding location-based react-native
Last synced: about 2 months ago
JSON representation
A React Native app for exploring your city
- Host: GitHub
- URL: https://github.com/learnetto/walkwaves
- Owner: learnetto
- License: mit
- Created: 2018-10-19T12:54:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T10:01:07.000Z (over 6 years ago)
- Last Synced: 2024-01-14T06:59:45.030Z (about 1 year ago)
- Topics: geocoding, location-based, react-native
- Language: JavaScript
- Homepage: https://learnetto.com/projects/2
- Size: 60.5 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Walkwaves
A mobile app for exploring your city, built using the [OpenCage Geocoding API](https://opencagedata.com/) and React Native.
Learn how to build this app with this series of free tutorials:
[How to build a location based app in React Native - Part 1](https://learnetto.com/tutorials/how-to-build-a-location-based-app-in-react-native-part-1)
## How to run
Clone the repo:
`git clone https://github.com/learnetto/walkwaves.git`
Add your [Opencage API KEY](https://opencagedata.com/api) in `App.js`:
```
reverseGeocode = () => {
const key = 'YOUR_API_KEY';
```Then cd into the directory, install packages and start the dev server:
```
cd walkwaves
yarn
expo start
```