var map = null;var options=null;var airport = new VELatLong(50.731124561,-3.39907765388);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(50.7312671707741,-3.41666221618652);pinPixel = map.LatLongToPixel(pinPoint);var shape = new VEShape(VEShapeType.Pushpin, pinPoint);shape.SetTitle("Exeter");shape.SetDescription("EXT Airport");shape.SetCustomIcon("<img src='https://secure.parking.aero/images/general/icons/Airport.gif' height='30' />");map.AddShape(shape);pinPoint = new VELatLong(50.731124561,-3.39907765388);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("Parking Exeter Airport");shape.SetDescription("Parking Exeter Airport is located 1 mile from Exeter Airport Terminal inside 'The Antique Complex', which the carpark own and operate. On arrival you will be greeted by friendly staff and swiftly taken to the airport which is less than 5 minutes away. On your return just call the number provided on your booking voucher email, which you receive once a booking is placed, and you will be collected promptly and taken back to your car.");shape.SetMoreInfoURL("https://secure.parking.aero/carparkinfo.aspx?carparkid=00000000-0000-0000-0000-000000000000");map.AddShape(shape);}