         var map = null; 
 
        function AddPushpin()
      {
          var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter());
          shape.SetTitle('Location Details');
          shape.SetDescription('SIRE Technology');
          map.AddShape(shape);
 map.ShowInfoBox(shape);
      }
 

         function GetMap()
         {
            map = new VEMap('myMap');
            map.LoadMap(new VELatLong(51.365162, -0.817829), 10 ,'h' ,false);
     map.SetZoomLevel(17);
    AddPushpin();
 
         }