Is it possible for the onclick message instead of mouseover to be displayed on the virtual earth infobox display?
I am currently using something like this:
...
var pin = new VEShape( VEShapeType.Pushpin, [location] ); pin.SetCustomIcon(icon_url); pin.SetTitle(title); pin.SetDescription(info_window_template); map.AddShape(pin); document.getElementById(pin.GetPrimitive().iid).onmouseover = EventHandlerOnMouseOver; } var EventHandlerOnMouseOver = function(e) {
...
However, if I try to change onmouseover to onclick, VE takes onclick and completely disables the infobox.
javascript virtual-earth
ben lemasurier
source share