> http://www.patrickcain.ca/maps/100914_council_newtest.html
> some ideas from his post. In that version the polys are in the KML,
> and the custom markers are in the HTML map file itself. The custom
> markers aren't appearing, which I think probably has something to do
> with my not knowing much about Java; apologies.

That doesn't matter, this is javascript - they are different.

It's a timing issue ; your map is created in a (delayed) function
initialize() but your markers are created in inline script - before
the map exists, so they cannot be placed on it.
You might bundle up your marker creation script in another function
and call that one at the end of initialize()

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