|
Arul
|
|
Hi, Is the Mini map extender having any client side method similar to the "OnClientMapLoaded" method in the VE.Map. So that I can add "document.getElementById('MSVE_minimap_resize').style.display = "none";" to hide the mini-map size toggle.
|
|
|
|
Chris Pietschmann
|
|
The MiniMapExtender controls doesn't have an "OnLoaded" event. The MiniMapExtender actually hooks itself to the Map control during it's "OnClientMapLoaded" event. Try placing your "document.getElementById('MSVE_minimap_resize').style.display = "none";" code in your own "OnClientMapLoaded" event hanlder. If the timing doesn't work right, then you may need to use a JavaScript Timer to execute the code after a short delay.
|
|
|