On 20 March 2012 15:26, LorenzoM <[email protected]> wrote: > I was able to get the Lat/Long but following the instructions from > here: > > https://developers.google.com/maps/articles/phpsqlgeocode > > How do I get this to also include the following info in the table? > > 1. administrative_area_level_1 > ... > 15. room >
Those attributes will come from reverse geocoding. Address -> LatLng = "geocoding" LatLng -> address etc = "reverse geocoding" To get them, geocode your address to get its coordinates and then reverse geocode those coordinates. Note that not all of those fields are returned for every query. https://developers.google.com/maps/documentation/geocoding/#ReverseGeocoding -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
