I'm trying to handle the onchangeview event for bing maps
In the js intialize method I have the following code:
map = new Microsoft.Maps.Map(document.getElementById("mapviewer"), {
credentials: bingMapsKey,
center : new Microsoft.Maps.Location(42.3508, -71.0717),
zoom: 12
});
//Microsoft.Maps.Events.addHandler(map, "onchangeview", handleChangeView);
Microsoft.Maps.Events.addHandler(map, "onclick", handleChangeView);
mapviewer.attachEvent("onchangeview", handleChangeView);
I also have this function
function handleChangeView(e) {
}
this function is never called, and I am not sure why as the handler is set up properly.
I also don't understand the difference between the following 2 lines and when I should attach an event one way or the other
Microsoft.Maps.Events.addHandler(map, "onclick", handleChangeView);
mapviewer.attachEvent("onchangeview", handleChangeView);
Any ideas?