﻿	var map = null;
	var shape;
	// Map co-ordinates
	var lat = -37.53680;
	var lng = 143.82938;
		
	function GetMap() {
		map = new VEMap('myMap');
		map.LoadMap(new VELatLong(lat,lng), 16 ,'r' ,false);
		GateB();
	}
	function GateB() {
		shape = new VEShape(VEShapeType.Pushpin, new VELatLong(-37.53918, 143.83132));
		shape.SetTitle('Ballarat Grammar');
		shape.SetDescription('BG (Gate B)');
		map.AddShape(shape);
	}
	