Displaying 1 result from an estimated 1 matches for "hovericonurl".
2009 Nov 06
0
r54 committed - ...
...if(this.hover) {
- event_action = "mouseover";
+ if (this.hover) {
+ event_action = "mouseover";
}
google.maps.event.addListener(marker, event_action, function() {
infowindow.open(this.map,marker); });
}
if (this.hoverIconUrl){
- var hIcon = this.hoverIconUrl;
- var Icon = this.iconUrl;
+ var hIcon = new google.maps.MarkerImage(
+ this.hoverIconUrl,
+ new google.maps.Size(this.iconSize[0],
+ this.iconSize[1]),
+ new goog...