This project uses the Google Maps API and USDA National Farmers Market Directory API to create a mashup where visitors can search for Farmers Markets in the US by entering a zip code, then Farmers Markets near that zip code will be shown on the map. You can click on a marker or an item in the result list to view more info about the market such as address, schedule, and products.
Use the app online at https://farmers-market-finder.netlify.com/
Assumes local installation of Node.js
To run the project locally:
- Clone or fork this repository.
- Update
YOUR_KEY_GOES_HERE
on the following line (right above the closing body tag) insrc\index.html
with your Google Maps JavaScript API key:
<script async defer src="http://maps.googleapis.com/maps/api/js?v=3?key=YOUR_KEY_GOES_HERE&callback=init" onerror="mapLoadError()"></script>
- Run
npm install
- Run
npm run build
(Also run this after changes are made to code in thesrc
directory - the production code will then be output to adist
directory.) - Open
index.html
in thedist
directory in a web browser.
- USDA National Farmers Market Directory API - No API Key needed
- Google Maps API - a Google Maps JavaScript API key is required. Note: You can go to the "Application Restrictions" settings and restrict the websites that your key will work on.
The code in this project is licensed under the MIT License. See LICENSE for details.
Note that you will be responsible for following terms of service of the third party APIs used in the code.