There are a couple of things wrong in your page.
First you're using
window.onload=load; and
<body onload='init()' ...
Thats no good idea because there should only be one load event.
Second you're laoding at least three maps. Two in your function load()
var map1 = new GMap2(document.getElementById("map"));
var map2 = new GMap2(document.getElementById("map1"));
And one further in your function init()
var map1 = new GMap2(document.getElementById("map1"));
But the div element for the first variable map1 and the second
variable map2, namely map1 doesn't exist.
I've only done a quick overview of your code. Certainly could be that
I missed a few further things, maybe that you're using jquery and
maybe that your html is invalid. So at least it's noticeable that a
map is actually displayed.
On Apr 11, 3:13 am, "[email protected]"
<[email protected]> wrote:
> Hello,
>
> I am trying to integrate KML data from my maps to my project, for
> which I am using TSP for google, but when I click on the icons they
> disappear. I was hoping to have some sort of select box to reference
> the points, but I thought I would begin here.
>
> http://www.chasewittdesign.com/volmaps/
>
> Thanks
>
> Chase
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---