Posts by Floripa Digital • 1 point
2 posts
-
0
votes1
answer423
viewsA: Recover neighborhood and city only in the Google Maps API by pure PHP coordinates
I managed to solve here. Below is the script: $url ='https://maps.googleapis.com/maps/api/geocode/json?latlng=' . $latitude . ',' . $longitude . '&key=SuaKeyApiGoogleMaps'; $geocode =…
-
-1
votes1
answer423
viewsQ: Recover neighborhood and city only in the Google Maps API by pure PHP coordinates
I have an application where I need to store only neighborhood and city data in the mysql database, from the results coming in json of the Google Maps api. I’m using the following code: $url…