hi larry, 

success, i have got it to load and work on my server, yay! 
http://visualisationmagazine.com/test2.htm

i followed your example here: 
http://www.geocodezip.com/geoxml3_test/votemap_address2.html

but cant quite see where/how to display the address details from the marker. 
this is the way i'm trying to parse... it!

i appeded in to the var name as... i try not to change it too much (relpaced 
'name' with 'point', pointy becasue the kml ref page said to use point if 
thats whats in your xml. 

function makeSidebarEntry(i) {
  var name = geoXmlDoc.placemarks[i].name;
   if (!name  || (name.length == 0)) name = "marker #"+i;
   // alert(name);
   sidebarHtml += '<tr id="row'+i+'"><td><a 
href="javascript:kmlClick('+i+');">'+name+'</a></td></tr>';
 
 var point = geoXmlDoc.placemarks[i].point;
   if (!point  || (point.length == 0)) point = "*
geoXmlDoc.placemarks[i].address*"+i;
   // alert(point);
   sidebarHtml += '<tr id="row'+i+'"><td 
onmouseover="kmlHighlightPoly('+i+');" 
onmouseout="kmlUnHighlightPoly('+i+');">'+point+' - <a 
href="javascript:kmlShowPlacemark('+i+');">hide other pins</a></td></tr>';
}

it seems if i had "marker #" it showed marker on my page. now with the bold 
part that i put there it shows a number. how is it going wrong? i get lost 
looking at the polling page. 


secondly, 

i moved the div to underneath, but how can i make it spill into 4 columns 
rather than create a scroll bar? i looked up the div attribute, but i've 
never come accross a column attribute in div. 

any help is much appreciated

oh, larry can you paste the url path to my kml file for the la map. i 
downloaded it from your server, i cant see the file on my server. i didnt 
upload one and there isnt one displayed? may sound daft but dont know where 
you got that file off my server. the url path to it will help when i try to 
replicate this map to others. 

you've been very helpful. thx

-- 
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.

Reply via email to