Last active
June 19, 2018 00:58
-
-
Save jamigibbs/3fe01d559a6e6e1059cf33a431f55efa to your computer and use it in GitHub Desktop.
a) getNearestDivvyStation
This file contains hidden or 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
export const getNearestDivvyStation = (lat, lng) => { | |
const url = `${GOOGLE_PLACES_URL}?location=${lat},${lng}&radius=1000&type=point_of_interest&keyword=divvy&key=${API_KEY}` | |
return async (dispatch) => { | |
const { data } = await axios.get(url) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment