var map = null;var options=null;var airport = new VELatLong(51.8503611,-8.4890092);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(51.850201,-8.488826);pinPixel = map.LatLongToPixel(pinPoint);var shape = new VEShape(VEShapeType.Pushpin, pinPoint);shape.SetTitle("Cork");shape.SetDescription("ORK Airport");shape.SetCustomIcon("<img src='https://secure.parking.aero/images/general/icons/Airport.gif' height='30' />");map.AddShape(shape);pinPoint = new VELatLong(51.8503611,-8.4890092);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("JD Meet and Greet Cork");shape.SetDescription("JD Meet and Greet Cork operates a premium service at Cork International Airport. Its dedicated staff are on hand to meet you outside the terminal between 5am to 1am, meaning you will be able to travel on your journey hassle free. When you arrive at the drop off area outside Cork Airport terminal, pull in and you will be met by a JD Meet and Greet Cork driver. Your car will be driven to the nearby secure car park. On your return, a driver will be waiting for you in your car outside the arrivals door, allowing you to continue home easily and quickly.");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}