A simple app for scanning a selected location for nearby tasty durum goodness. iOS implementation is not tested, web implementation is not finished
- Searches in a 7 km radius from the given search location
- Provides quick access to open found places in google maps (can be tweaked to support different map integrations)
- Finds the best and closest durum place in search location
- Clone the repo
- Make sure you have a React Native development environment setup for the platform you are targeting
- run
npm i - Get a Google maps API key and set in the .env file or create a .env.test file. For simplicity the development / test key can be unrestricted, but please be very cautious with the Google API keys as each developer accoount gets a limited number of free credits every month, after which google will charge your account based on your usage. You might also need to add the key to app.json file
googleMapsApiKeyfield. - run
npm run android|ios|web - When running in development the location and google maps services are mocked to reduce API calls / costs (see checks for
__DEV__and modify if needed)
- Add web support
- Fix and test iOS implementation
