Posts by user7843 • 21 points
1 post
-
2
votes2
answers816
viewsA: Address conversion on Google Maps
Is in JAVASCRIPT? str = "12.12345 -15.12345"; x = str.split(" "); // para partir em 2 a string lat = x[0]; lon = x[1]; latLon = new google.maps.LatLng(lat, lon); latLon will be in the format…