Is it possible to make a Polygon clickable using the Bing Maps API?
问题 I can put a pushpin in the center of each Polygon to achieve a "clickable" region but that is an extra step I'd rather not take. 回答1: Yes, but it's kind of a pain. The steps are: 1.) attach to the mousclick event within VEMap 2.) determine if the mouseclick was within the area of your polygon or on a shape 3.) stop event propogation to the map object itself The mousehandler portion here: http://www.codeproject.com/KB/scripting/Use_of_VEMap.aspx#heading0012 is a decent primer, though if you