﻿/// <reference path="Microsoft/VeJavaScriptIntellisenseHelper.js" />

var _map = null;

$(document).ready(function () {
	var area = new VELatLong(53.72157398634557, -1.867504119873038);
	var office = new VELatLong(53.7219, -1.86842);

	_map = new VEMap("map");
	_map.LoadMap(area, 1, VEMapStyle.BirdseyeHybrid, false);
	//_map.AttachEvent("onendpan", function () { console.log(_map.GetCenter()) });

	var shape = new VEShape(VEShapeType.Pushpin, office);
	shape.SetCustomIcon("/content/images/map-point.png");
	shape.SetTitle("Ink Digital Agency");
	shape.SetDescription("The Elsie Whiteley Innovation Centre, Hopwood Lane, Halifax, HX1 5ER");
	_map.AddShape(shape);
});