var map = null;var options=null;var airport = new VELatLong(53.410862068,-6.21753215789);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.410862068,-6.21753215789);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("Bewleys Hotel Park and Ride");shape.SetDescription("From <strike>€8.00</strike> <b> &euro;4.95 per day after 14 days!</b> Free 24 hour shuttle bus, every 20 minutes. This will take approx 5 - 10 mins. On your return you must pay your balance at the hotel reception before you leave the car park. Once you have paid, you will receive a validated ticket to allow to open the barrier.");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}