pardon the noob question but... i am adding a kml layer to my gmap. the kml is on my webserver and is being fetched ny google map. i get the default blue icon. so far so good, however i want a custon marker and ultimately the ability to change the style based o a event later. everything point to this method
var marker = new google.maps.Marker({
position: new google.maps.LatLng(56.8848, 14.7730),
map: map,
title: 'My workplace',
clickable: false,
icon: 'http://google-maps-icons.googlecode.com/files/factory.png'
});
it seems to me that this only controls the marker defined by the LatLng. in other words only a single point.
how do i define a custom marker for all of my sites within the kml layer. heres the link to my map
http://myfloridagps.com/SpiderWeb/KML/map.html
the one green icon i change within the kml directly and seems to limit any future functionality.