// JavaScript Document

var map = null;
var pinid = 0;
var CA = new VELatLong(53.343762293854404, -6.269094944000244);
var opt = new VEMapOptions();
opt.BirdseyeOrientation = VEOrientation.South;
var point = new VELatLong(53.343653404463794, -6.269105672836304);
	
function GetMap()
	{
	 map = new VEMap('myMap');
	 map.LoadMap(CA, 14, VEMapStyle.BirdseyeHybrid, false, VEMapMode.Mode2D, true, 1, opt);
	 var pin = new VEShape(VEShapeType.Pushpin, point);
	 map.AddShape(pin);
	 pin.SetTitle("Caf&eacute; Azteca");
	 pin.SetDescription("The taste of Mexico in Dublin...\n19-22, Lord Edward St.\nDublin 2\nTel/fax 01 6709476");
	 pin.SetMoreInfoURL("http://www.azteca.ie");
	 pin.SetPhotoURL("http://www.azteca.ie/cafeazteca/images/az01_s.jpg");
	}
      
