maxmagee / chick-fil-a

(Old Version. See README) Recreating the Chick-fil-A App in React Native.
2 stars 0 forks source link

Develop a Way To Retrieve Location Data for Each Store #15

Closed maxmagee closed 6 years ago

maxmagee commented 6 years ago

In order to populate the map with store locations, we need location data for those stores. The address data can be found on the website. For the mapping software, we need latitude an longitude coordinates though.

maxmagee commented 6 years ago

The end goal of this is to have something in this relative shape for the locations: { id, name, location: { city, state, street, zip } }

maxmagee commented 6 years ago

There appear to be some edge cases in the data. Also, I might need to re-shape the data for the geolocation service.

maxmagee commented 6 years ago

I then likely want to store this information in a database to be read in later. That's for a different issue though. This is now finished.