Hi Larry,
I am write into createMarker function. But still does not works.
downloadUrl("vakalar.xml", function(data) {
var xmlDoc = xmlParse(data);
var records = xmlDoc.getElementsByTagName("marker");
for (var i = 0; i < records.length; i++) {
var rec = records[i];
var title = rec.getAttribute("title"); <!-- this is my title code but
not works.-->
var vaka = rec.getAttribute("vaka");
var lat = parseFloat(rec.getAttribute("lat"));
var lng = parseFloat(rec.getAttribute("lon"));
var marker = new google.maps.LatLng(lat,lng);
var html_text = vaka;
createMarker(marker,title,html_text,map);
}
Thanks
Erkin
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.