﻿var map=null
function GetMap(){
map=new VEMap('myMap')
map.SetDashboardSize(VEDashboardSize.Tiny)
map.LoadMap()
map.SetCenterAndZoom(new VELatLong(37.256566,-78.079833),7)
var shape=new VEShape(VEShapeType.Pushpin,new VELatLong(38.149387,-79.07232))
shape.SetCustomIcon("<img src='images/ve_icon.png'/>")
shape.SetTitle('Adasphere Incorporated')
shape.SetDescription('PO Box 81, 11 E. Beverley St., Ste 1, Staunton, VA, 24402-0081')
map.AddShape(shape)}
