rbotella
unread,Feb 15, 2011, 11:29:07 AM2/15/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Maps JavaScript API v3
Hello,
I have to change to GoogleMaps API v3 but I have the addresses of
the form:
"38.820468, -0.601931"
"41.294833,1.255403"
"Calle de Luis Buñuel, 35"
"Bracale of Murteretes Street 03110 Mutxamel"
...
As I have no coordinates of these addresses to use:
new google.maps.LatLng (latitude, longitude); >V3
Before i make that with:
geocoder2.getLatLng (
address,
function (point) {
if (! point) {
alert ("no point ");
Else {}
....
}
}
As I can do the same but with the v3 version.