var map = null;var options=null;var airport = new VELatLong(53.425926,-6.239333);var pinPoint = null;var pinPixel = null;function GetMap(){map = new VEMap('OperatorMap');options = new VEMapOptions();options.EnableBirdseye = true;options.EnableDashboardLabels=true;map.SetDashboardSize(VEDashboardSize.Normal);map.LoadMap(airport, 12, VEMapStyle.Road, false, VEMapMode.Mode2D, false, 1,options);AddPins();}function AddPins(){pinPoint = new VELatLong(53.428355,-6.230363);pinPixel = map.LatLongToPixel(pinPoint);var shape = new VEShape(VEShapeType.Pushpin, pinPoint);shape.SetTitle("Dublin");shape.SetDescription("DUB Airport");shape.SetCustomIcon("<img src='https://secure.parking.aero/images/general/icons/Airport.gif' height='30' />");map.AddShape(shape);pinPoint = new VELatLong(53.425926,-6.239333);pinPixel = map.LatLongToPixel(pinPoint);var shape = new VEShape(VEShapeType.Pushpin, pinPoint);shape.SetCustomIcon("<img src='https://secure.parking.aero/images/general/icons/Parking.gif' height='30' />");shape.SetTitle("SwiftPark Meet and Greet");shape.SetDescription("Drive to the Dublin airport terminal, meet the chauffeur who parks your car in Swiftpark's secure carpark located just 1.5 miles from the airport, and you go on your journey in peace. On your return you will be meet by one of swiftpark's representatives with your car.");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}