I am building an application that uses the GMaps API v3 and, taking advantage of the geocoding function, i dont know if it is better to store in the DB:
- The coordinates (latitude & longitude)
- When i need to place a marker, just put it
- When i need the address, query the API
- The address (as a string)
- When i need to place a marker, query the API
- When i need to post the address, just print it
- Store Both
What would you recommend?
Thanks in advance!