﻿var map = null;                  
var mapCenterVELatLong = new VELatLong(45.761774855141226, 7.722015380859375);


function GetMap()      
{         
    map = new VEMap('brussonMap');         
//    map.SetDashboardSize(VEDashboardSize.Tiny);
    map.LoadMap(mapCenterVELatLong, 15, 'h', false, VEMapMode.Mode2D, true);      
//    AddPin();  
}  

function DisposeMap()
 {
    if(map != null)
    {
      map.Dispose();
    }
 }
