Anirudha
unread,Apr 20, 2011, 12:37:22 AM4/20/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
Hi
I am using Google map in my application.
I am adding marker on Google map by using LAT/LONG of the point as
shown below
var marker = new google.maps.Marker({ position: new
google.maps.LatLng(LatValue,LongValue), map: map, title: MyTitle,
icon:MyIcon });
But it is found that in my case instead of LAT/LONG values , XY co
ordinates are available.
So can we plot marker using XY co ordinates something like this
var marker = new google.maps.Marker({ position: new
google.maps.LatLng(X Co ordinate,Y Co ordinate), map: map, title:
MyTitle, icon:MyIcon });
Is there any formula/method of converting XY co ordinate to LAT/
LONG?
Thanks & Regards,
Anirudha Deshpande