var map = null;var options=null;var airport = new VELatLong(51.8512018,-8.4864449501);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.8512018,-8.4864449501);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("Cork International Hotel Park and Fly");shape.SetDescription("Cork International Airport Hotel is serviced by a free 24 hour shuttle bus. The hotel is a 30 second drive to the terminal entrance on the courtesy bus, and it is also possible to walk to the airport in 5 minutes using the hotel's other entrance that fronts onto Cork Airport's long term car park. The hotel's car park is monitored with security cameras and daily/nightly patrols in operation. The car park location ensures convenient, hassle-free parking for the duration of your journey.");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}