var map = null;var options=null;var airport = new VELatLong(53.359746800986,-2.24441885948181);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.367147,-2.276401);pinPixel = map.LatLongToPixel(pinPoint);var shape = new VEShape(VEShapeType.Pushpin, pinPoint);shape.SetTitle("Manchester");shape.SetDescription("MAN Airport");shape.SetCustomIcon("<img src='https://secure.parking.aero/images/general/icons/Airport.gif' height='30' />");map.AddShape(shape);pinPoint = new VELatLong(53.359746800986,-2.24441885948181);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("Flight Shuttle Services Manchester");shape.SetDescription("Flight Shuttle Services is a fully secured carpark with high fencing, flood lights, CCTV, and 24-hour surveillance with guard dogs, so you can rest assured that your car is in the best possible care. They have security clearance by Manchester International Airport Authority and operate under their guidelines, using the designated pick-up and drop-off areas next to the terminal entrances. ");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}