﻿var _map = null;

function mapFunction() {
    var extension = $.browser.msie && $.browser.version < 7
            ? "gif"
            : "png";

    if ($("#map").length == 0)
        return false;

    var area = new VELatLong(52.918308973259826, -1.085744798183425);

    _map = new VEMap("map");
    _map.LoadMap(area, 1, VEMapStyle.BirdseyeHybrid, false, VEMapMode.Mode2D, true, 1);
    //_map.AttachEvent("onendpan", function () { console.log(_map.GetCenter()) });

    var shape = new VEShape(VEShapeType.Pushpin, area);
    shape.SetCustomIcon("/content/images/map-point."+extension);
    shape.SetTitle("Monarch Furniture");
    shape.SetDescription("Unit 2, Nottingham Airport, Tollerton Lane, Nottingham NG12 4GA");
    _map.AddShape(shape);
};

$(mapFunction);


