Ive realised the error of my ways - the solution incase anyone else
gets it is as follows
you cant directly access a control in a content placeholder on a
masterpage, so
instead of:
document.getElementById("txtLat").innerText = point.x;
use: (for placeholder 2 for example)
document.getElementById("ctl00_ContentPlaceHolder2_txtLat").innerText
= point.x;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" 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
-~----------~----~----~----~------~----~------~--~---