|
Arul
|
|
Hi
How do I use the following line "map.vemapcontrol.EnableGeoCommunity(false); " . If I use this line in the event "OnClientMapLoaded" Web.Maps.VE, javascript throws null exception.
Regards
|
|
|
|
Chris Pietschmann
|
|
The Web.Maps.VE Map control doesn't have a "vemapcontrol" property. You can still do this by first getting a reference to the VEMap object within the Web.Maps.VE control by using the following line of code. Then you can access it's "vemapcontrol" property as expected.
var map = $find('<%=Map1.ClientID %>').get_Map();
|
|
|