﻿
var map = null;

function GetMap() {

    if (document.getElementById("DirectionsTab").className == "active") {
        map = new VEMap('myMap');
        map.LoadMap(new VELatLong(35.2639, -81.1860), 11, VEMapStyle.Road, false, VEMapMode.Mode2D, false);
        var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(35.2639, -81.1860));
        shape.SetTitle('Image Gallery');
        shape.SetDescription('320 West Main Ave <br />Gastonia, NC 28052');
        map.AddShape(shape);
    }
}   