var map = null;var options=null;var airport = new VELatLong(53.3543680687157,-2.86966323852539);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.337766,-2.855415);pinPixel = map.LatLongToPixel(pinPoint);var shape = new VEShape(VEShapeType.Pushpin, pinPoint);shape.SetTitle("Liverpool");shape.SetDescription("LPL Airport");shape.SetCustomIcon("<img src='https://secure.parking.aero/images/general/icons/Airport.gif' height='30' />");map.AddShape(shape);pinPoint = new VELatLong(53.3543680687157,-2.86966323852539);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("APL Parking Liverpool");shape.SetDescription("APL park and fly provide and pride themselves on offering a quality service for a great price. Located 2 minutes from Liverpool Airport, they operate 24 hours a day 365 days a year. Courtesy shuttle buses run on demand throughout the day. ");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}