var dynamicContent_ajaxObjects = new Array(); var xmlHttp; var latestsbd_timestamp; var trackingunit; var map; var toId; var sLatestAddress; var points; var markers; var pointmarkers; var geocoder; var pline; var pmarker; var planemarker; var startmarker; var endmarker; var mgr; var point; var t; // Create a base icon for all of our markers that specifies the // shadow, icon dimensions, etc. var baseIcon = new GIcon(); baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png"; baseIcon.iconSize = new GSize(20, 34); baseIcon.shadowSize = new GSize(37, 34); baseIcon.iconAnchor = new GPoint(9, 34); baseIcon.infoWindowAnchor = new GPoint(9, 2); baseIcon.infoShadowAnchor = new GPoint(18, 25); // Base icon for small markers var baseIconSmall = new GIcon(); baseIconSmall.image = "http://www.followsteve.co.za/images/markers.png"; baseIconSmall.iconSize = new GSize(10, 17); baseIconSmall.iconAnchor = new GPoint(5, 17); baseIconSmall.shadow = "http://www.followsteve.co.za/images/shadow50s.png"; baseIconSmall.shadowSize = new GSize(19, 17); baseIconSmall.infoWindowAnchor = new GPoint(5, 2); baseIconSmall.infoShadowAnchor = new GPoint(9, 15); // Plane symbol icon var baseIconPlane = new GIcon(); baseIconPlane.image = "http://www.followsteve.co.za/images/pin_plane.png"; baseIconPlane.iconSize = new GSize(35, 35); baseIconPlane.iconAnchor = new GPoint(17, 35); baseIconPlane.infoWindowAnchor = new GPoint(5, 2); baseIconPlane.shadow = "http://www.followsteve.co.za/images/pin_shadow.png"; baseIconPlane.shadowSize = new GSize(52, 35); /*baseIconPlane.iconSize = new GSize(48, 50); baseIconPlane.iconAnchor = new GPoint(24, 25); baseIconPlane.infoWindowAnchor = new GPoint(5, 2);*/ // Start flag icon var baseIconStart = new GIcon(); /* baseIconStart.image = "http://www.followsteve.co.za/images/flag_green.png"; baseIconStart.iconSize = new GSize(16, 16); baseIconStart.iconAnchor = new GPoint(8, 16); baseIconStart.infoWindowAnchor = new GPoint(5, 2); */ baseIconStart.image = "http://www.followsteve.co.za/images/pin_green.png"; baseIconStart.iconSize = new GSize(35, 35); baseIconStart.iconAnchor = new GPoint(17, 35); baseIconStart.infoWindowAnchor = new GPoint(5, 2); baseIconStart.shadow = "http://www.followsteve.co.za/images/pin_shadow.png"; baseIconStart.shadowSize = new GSize(52, 35); // Stop flag icon var baseIconStop = new GIcon(); /* baseIconStop.image = "http://www.followsteve.co.za/images/flag_orange.png"; baseIconStop.iconSize = new GSize(16, 16); baseIconStop.iconAnchor = new GPoint(8, 16); baseIconStop.infoWindowAnchor = new GPoint(5, 2); */ baseIconStop.image = "http://www.followsteve.co.za/images/pin_orange.png"; baseIconStop.iconSize = new GSize(35, 35); baseIconStop.iconAnchor = new GPoint(17, 35); baseIconStop.infoWindowAnchor = new GPoint(5, 2); baseIconStop.shadow = "http://www.followsteve.co.za/images/pin_shadow.png"; baseIconStop.shadowSize = new GSize(52, 35); // End flag icon var baseIconEnd = new GIcon(); /* baseIconEnd.image = "http://www.followsteve.co.za/images/flag_red.png"; baseIconEnd.iconSize = new GSize(16, 16); baseIconEnd.iconAnchor = new GPoint(8, 16); baseIconEnd.infoWindowAnchor = new GPoint(5, 2); */ baseIconEnd.image = "http://www.followsteve.co.za/images/pin_red.png"; baseIconEnd.iconSize = new GSize(35, 35); baseIconEnd.iconAnchor = new GPoint(17, 35); baseIconEnd.infoWindowAnchor = new GPoint(5, 2); baseIconEnd.shadow = "http://www.followsteve.co.za/images/pin_shadow.png"; baseIconEnd.shadowSize = new GSize(52, 35); // Direction icon var baseIconDirn = new GIcon(); /* baseIconDirn.iconSize = new GSize(48, 50); baseIconDirn.iconAnchor = new GPoint(24, 25); */ baseIconDirn.iconSize = new GSize(20, 20); baseIconDirn.iconAnchor = new GPoint(10, 10); function GetBearing(lat1, lon1, lat2, lon2) { var dLon = lon2-lon1; var y = Math.sin(dLon) * Math.cos(lat2); var x = Math.cos(lat1)*Math.sin(lat2) - Math.sin(lat1)*Math.cos(lat2)*Math.cos(dLon); var brng = Math.atan2(y, x).toBrng(); return brng; } function findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i'+sInfo+''); var tab2 = new GInfoWindowTab("Closeup", '
'); var infoTabs = [tab1,tab2]; marker.openInfoWindowTabsHtml(infoTabs); var dMapDiv = document.getElementById("detailmap"); var detailmap = new GMap2(dMapDiv); detailmap.enableDoubleClickZoom(); detailmap.enableContinuousZoom(); detailmap.enableScrollWheelZoom(); detailmap.addControl(new GSmallZoomControl()); detailmap.setCenter(point , 13, map.getCurrentMapType()); var dmarker = new GMarker(point); detailmap.addOverlay(dmarker); var iZoomLevel = detailmap.getCurrentMapType().getMaximumResolution(point); if (iZoomLevel < 13) detailmap.setZoom(iZoomLevel-1); var CopyrightDiv = dMapDiv.firstChild.nextSibling; var CopyrightImg = dMapDiv.firstChild.nextSibling.nextSibling; CopyrightDiv.style.display = "none"; CopyrightImg.style.display = "none"; }); } function createMarker(point, index, sInfo) { // Create a lettered icon for this point using our icon class var letter = String.fromCharCode("A".charCodeAt(0) + index); var icon = new GIcon(baseIcon); icon.image = "http://www.google.com/mapfiles/marker" + letter + ".png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); // GEvent.addListener(marker, "click", function() { // marker.openInfoWindowHtml(''+sInfo+''); // }); return marker; } function createNumMarker(point, index, sInfo) { // Create a lettered icon for this point using our icon class var icon = new GIcon(baseIconSmall); var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); // GEvent.addListener(marker, "click", function() { // marker.openInfoWindowHtml(''+sInfo+''); // }); return marker; } function createPlaneMarker(point, index, sDirn, sInfo) { // Create a lettered icon for this point using our icon class // var icon = new GIcon(baseIconPlane); // icon.image = "http://www.followsteve.co.za/images/plane"+sDirn+".png"; var icon = new GIcon(baseIcon); icon.image = "http://www.followsteve.co.za/images/blue_MarkerL.png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); // GEvent.addListener(marker, "click", function() { // marker.openInfoWindowHtml(''+sInfo+''); // }); return marker; } function createDirnMarker(point, sDirn, iDegrees) { var icon = new GIcon(baseIconDirn); icon.image = "http://www.followsteve.co.za/createdirn.php?degrees="+iDegrees; var marker = new GMarker(point, icon); return marker; } function createGhostMarker(point, sInfo) { var icon = new GIcon(baseIcon); icon.image = "http://www.followsteve.co.za/images/white_MarkerH.png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); return marker; } function createChalkieMarker(point, sInfo) { var icon = new GIcon(baseIcon); icon.image = "http://www.followsteve.co.za/images/white_MarkerC.png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); return marker; } function createStartMarker(point, index, sInfo) { // var icon = new GIcon(baseIconStart); var icon = new GIcon(baseIcon); icon.image = "http://www.followsteve.co.za/images/green_MarkerS.png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); return marker; } function createStopMarker(point, index, sInfo) { // var icon = new GIcon(baseIconStop); var icon = new GIcon(baseIcon); icon.image = "http://www.followsteve.co.za/images/orange_MarkerF.png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); return marker; } function createEndMarker(point, index, sInfo) { // var icon = new GIcon(baseIconEnd); var icon = new GIcon(baseIcon); icon.image = "http://www.followsteve.co.za/images/red_MarkerD.png"; var marker = new GMarker(point, icon); AddTheInfoWindow(point, marker, sInfo); return marker; } function getAddress(response) { if (response && response.Status.code == 200) { place = response.Placemark[0]; sLatestAddress = place.AddressDetails.Country.CountryName; if (x = findObj("spanCountry")) { x.innerHTML = sLatestAddress; } } } function load() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById("map")); map.enableDoubleClickZoom(); map.enableContinuousZoom(); map.enableScrollWheelZoom(); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); map.addControl(new DragZoomControl()); geocoder = new GClientGeocoder(); var Point0 = new GLatLng(-26, 27.9); map.setCenter(Point0, 10, G_HYBRID_MAP); mgr = new MarkerManager(map); window.setTimeout(DisplayMarkers, 0); trackingunit=''; latestsbd_timestamp=''; /* GEvent.addListener(map,'zoomend', function(oldLevel, newLevel) { AfterZoom(oldLevel, newLevel); }); */ } } function AfterZoom(oldLevel, newLevel) { if (x = findObj("spanStatus")) { x.innerHTML = "Current Zoom Level: "+newLevel; } } function DisplayMarkers() { markers = Array(); points = Array(); oldpoints = Array(); pointmarkers = Array(); point = new GLatLng(51.56861, 0.6955556); oldpoints.push(point); point = new GLatLng(51.56861, 0.6955556); oldpoints.push(point); point = new GLatLng(51.57389, 0.7002778); oldpoints.push(point); point = new GLatLng(51.03139, 0.6702778); oldpoints.push(point); point = new GLatLng(50.4675, 0.6483333); oldpoints.push(point); point = new GLatLng(49.90361, 0.8394445); oldpoints.push(point); point = new GLatLng(49.33028, 1.091389); oldpoints.push(point); point = new GLatLng(48.84333, 1.201111); oldpoints.push(point); point = new GLatLng(48.72472, 1.189722); oldpoints.push(point); point = new GLatLng(48.12, 1.309167); oldpoints.push(point); point = new GLatLng(48.01833, 1.342222); oldpoints.push(point); point = new GLatLng(47.52472, 1.498611); oldpoints.push(point); point = new GLatLng(47.225, 1.591389); oldpoints.push(point); point = new GLatLng(46.92305, 1.684444); oldpoints.push(point); point = new GLatLng(46.62583, 1.771944); oldpoints.push(point); point = new GLatLng(46.33722, 1.862222); oldpoints.push(point); point = new GLatLng(46.03444, 1.9525); oldpoints.push(point); point = new GLatLng(45.73056, 2.041389); oldpoints.push(point); point = new GLatLng(45.42139, 2.132222); oldpoints.push(point); point = new GLatLng(45.11444, 2.219445); oldpoints.push(point); point = new GLatLng(44.80861, 2.305833); oldpoints.push(point); point = new GLatLng(44.49778, 2.392222); oldpoints.push(point); point = new GLatLng(44.19444, 2.478333); oldpoints.push(point); point = new GLatLng(43.88278, 2.563611); oldpoints.push(point); point = new GLatLng(43.57084, 2.649167); oldpoints.push(point); point = new GLatLng(43.27889, 2.738333); oldpoints.push(point); point = new GLatLng(42.99583, 2.860278); oldpoints.push(point); point = new GLatLng(42.70361, 2.985833); oldpoints.push(point); point = new GLatLng(42.40389, 3.075); oldpoints.push(point); point = new GLatLng(42.1025, 3.164444); oldpoints.push(point); point = new GLatLng(41.80194, 3.2025); oldpoints.push(point); point = new GLatLng(41.49528, 3.185); oldpoints.push(point); point = new GLatLng(41.19444, 3.173611); oldpoints.push(point); point = new GLatLng(40.89333, 3.159444); oldpoints.push(point); point = new GLatLng(40.58667, 3.145278); oldpoints.push(point); point = new GLatLng(40.28111, 3.131111); oldpoints.push(point); point = new GLatLng(39.98083, 3.118056); oldpoints.push(point); point = new GLatLng(39.67916, 3.128056); oldpoints.push(point); point = new GLatLng(39.37639, 3.1425); oldpoints.push(point); point = new GLatLng(39.08333, 3.156667); oldpoints.push(point); point = new GLatLng(38.79222, 3.170833); oldpoints.push(point); point = new GLatLng(38.50139, 3.184167); oldpoints.push(point); point = new GLatLng(38.21, 3.198611); oldpoints.push(point); point = new GLatLng(37.91528, 3.263333); oldpoints.push(point); point = new GLatLng(37.62056, 3.376111); oldpoints.push(point); point = new GLatLng(37.32389, 3.521667); oldpoints.push(point); point = new GLatLng(37.02417, 3.672778); oldpoints.push(point); point = new GLatLng(36.7275, 3.818889); oldpoints.push(point); point = new GLatLng(36.42972, 3.962222); oldpoints.push(point); point = new GLatLng(36.13639, 4.103889); oldpoints.push(point); point = new GLatLng(35.84139, 4.2475); oldpoints.push(point); point = new GLatLng(35.55611, 4.383333); oldpoints.push(point); point = new GLatLng(35.26944, 4.465556); oldpoints.push(point); point = new GLatLng(34.98111, 4.490833); oldpoints.push(point); point = new GLatLng(34.68972, 4.517222); oldpoints.push(point); point = new GLatLng(34.40694, 4.520833); oldpoints.push(point); point = new GLatLng(34.14972, 4.423611); oldpoints.push(point); point = new GLatLng(33.89778, 4.329444); oldpoints.push(point); point = new GLatLng(33.63889, 4.233611); oldpoints.push(point); point = new GLatLng(33.38389, 4.138889); oldpoints.push(point); point = new GLatLng(33.13055, 4.045556); oldpoints.push(point); point = new GLatLng(32.86555, 3.951111); oldpoints.push(point); point = new GLatLng(32.60222, 3.853889); oldpoints.push(point); point = new GLatLng(32.32389, 3.819722); oldpoints.push(point); point = new GLatLng(32.04055, 3.870556); oldpoints.push(point); point = new GLatLng(31.74278, 3.921667); oldpoints.push(point); point = new GLatLng(31.45555, 3.970833); oldpoints.push(point); point = new GLatLng(31.17472, 4.018055); oldpoints.push(point); point = new GLatLng(30.89611, 4.064167); oldpoints.push(point); point = new GLatLng(30.61472, 4.111667); oldpoints.push(point); point = new GLatLng(30.33167, 4.158889); oldpoints.push(point); point = new GLatLng(30.05556, 4.204444); oldpoints.push(point); point = new GLatLng(29.77111, 4.251111); oldpoints.push(point); point = new GLatLng(29.4925, 4.299722); oldpoints.push(point); point = new GLatLng(29.21806, 4.348333); oldpoints.push(point); point = new GLatLng(28.93389, 4.398056); oldpoints.push(point); point = new GLatLng(28.6575, 4.446667); oldpoints.push(point); point = new GLatLng(28.38611, 4.494722); oldpoints.push(point); point = new GLatLng(28.10056, 4.545833); oldpoints.push(point); point = new GLatLng(27.82833, 4.595); oldpoints.push(point); point = new GLatLng(27.55917, 4.641944); oldpoints.push(point); point = new GLatLng(27.29139, 4.688889); oldpoints.push(point); point = new GLatLng(27.01194, 4.737778); oldpoints.push(point); point = new GLatLng(26.74444, 4.784722); oldpoints.push(point); point = new GLatLng(26.46944, 4.815278); oldpoints.push(point); point = new GLatLng(26.19083, 4.835834); oldpoints.push(point); point = new GLatLng(25.925, 4.854445); oldpoints.push(point); point = new GLatLng(25.685, 4.965278); oldpoints.push(point); point = new GLatLng(25.42028, 5.014167); oldpoints.push(point); point = new GLatLng(25.13944, 5.06); oldpoints.push(point); point = new GLatLng(24.85944, 5.106945); oldpoints.push(point); point = new GLatLng(24.58194, 5.155); oldpoints.push(point); point = new GLatLng(24.30861, 5.200278); oldpoints.push(point); point = new GLatLng(24.02306, 5.247222); oldpoints.push(point); point = new GLatLng(23.73444, 5.296389); oldpoints.push(point); point = new GLatLng(23.49444, 5.343611); oldpoints.push(point); point = new GLatLng(23.21528, 5.403333); oldpoints.push(point); point = new GLatLng(22.90139, 5.47); oldpoints.push(point); point = new GLatLng(22.81639, 5.453055); oldpoints.push(point); point = new GLatLng(22.81417, 5.448889); oldpoints.push(point); point = new GLatLng(22.81417, 5.448889); oldpoints.push(point); point = new GLatLng(22.81417, 5.448889); oldpoints.push(point); point = new GLatLng(22.81417, 5.448889); oldpoints.push(point); point = new GLatLng(22.82639, 5.457222); oldpoints.push(point); point = new GLatLng(22.82139, 5.455); oldpoints.push(point); point = new GLatLng(22.82611, 5.4575); oldpoints.push(point); point = new GLatLng(22.64083, 5.506945); oldpoints.push(point); point = new GLatLng(22.40167, 5.6125); oldpoints.push(point); point = new GLatLng(22.16861, 5.711111); oldpoints.push(point); point = new GLatLng(21.92444, 5.821389); oldpoints.push(point); point = new GLatLng(21.67694, 5.917222); oldpoints.push(point); point = new GLatLng(21.4425, 5.993889); oldpoints.push(point); point = new GLatLng(21.18861, 6.106667); oldpoints.push(point); point = new GLatLng(20.94555, 6.220278); oldpoints.push(point); point = new GLatLng(20.7, 6.333611); oldpoints.push(point); point = new GLatLng(20.45611, 6.445833); oldpoints.push(point); point = new GLatLng(20.20306, 6.528333); oldpoints.push(point); point = new GLatLng(19.93028, 6.606945); oldpoints.push(point); point = new GLatLng(19.66195, 6.685278); oldpoints.push(point); point = new GLatLng(19.39139, 6.7625); oldpoints.push(point); point = new GLatLng(19.12667, 6.837778); oldpoints.push(point); point = new GLatLng(18.86, 6.914444); oldpoints.push(point); point = new GLatLng(18.59945, 6.978055); oldpoints.push(point); point = new GLatLng(18.35083, 7.037222); oldpoints.push(point); point = new GLatLng(18.10167, 7.095833); oldpoints.push(point); point = new GLatLng(17.86444, 7.152222); oldpoints.push(point); point = new GLatLng(17.61889, 7.210834); oldpoints.push(point); point = new GLatLng(17.36222, 7.270278); oldpoints.push(point); point = new GLatLng(17.10472, 7.332222); oldpoints.push(point); point = new GLatLng(16.85194, 7.391389); oldpoints.push(point); point = new GLatLng(16.32667, 7.515); oldpoints.push(point); point = new GLatLng(16.06028, 7.576389); oldpoints.push(point); point = new GLatLng(15.8225, 7.631945); oldpoints.push(point); point = new GLatLng(15.79056, 7.639444); oldpoints.push(point); point = new GLatLng(15.51083, 7.703889); oldpoints.push(point); point = new GLatLng(15.22611, 7.768889); oldpoints.push(point); point = new GLatLng(14.93472, 7.836945); oldpoints.push(point); point = new GLatLng(14.66917, 7.898056); oldpoints.push(point); point = new GLatLng(14.42917, 7.953333); oldpoints.push(point); point = new GLatLng(14.185, 8.009722); oldpoints.push(point); point = new GLatLng(13.91833, 8.070556); oldpoints.push(point); point = new GLatLng(13.66778, 8.1275); oldpoints.push(point); point = new GLatLng(13.41111, 8.186111); oldpoints.push(point); point = new GLatLng(13.16028, 8.2425); oldpoints.push(point); point = new GLatLng(12.90111, 8.301389); oldpoints.push(point); point = new GLatLng(12.63806, 8.360833); oldpoints.push(point); point = new GLatLng(12.37611, 8.42); oldpoints.push(point); point = new GLatLng(12.11556, 8.479167); oldpoints.push(point); point = new GLatLng(11.85444, 8.561666); oldpoints.push(point); point = new GLatLng(11.60306, 8.652223); oldpoints.push(point); point = new GLatLng(11.35389, 8.744445); oldpoints.push(point); point = new GLatLng(11.10167, 8.835); oldpoints.push(point); point = new GLatLng(10.84722, 8.927222); oldpoints.push(point); point = new GLatLng(10.58472, 9.020555); oldpoints.push(point); point = new GLatLng(10.33, 9.113334); oldpoints.push(point); point = new GLatLng(10.07528, 9.204722); oldpoints.push(point); point = new GLatLng(9.821389, 9.295555); oldpoints.push(point); point = new GLatLng(9.565556, 9.387222); oldpoints.push(point); point = new GLatLng(9.319722, 9.473889); oldpoints.push(point); point = new GLatLng(9.056945, 9.567223); oldpoints.push(point); point = new GLatLng(8.544167, 9.751111); oldpoints.push(point); point = new GLatLng(8.278889, 9.846389); oldpoints.push(point); point = new GLatLng(8.013611, 9.940278); oldpoints.push(point); point = new GLatLng(7.745, 10.03556); oldpoints.push(point); point = new GLatLng(7.475555, 10.13083); oldpoints.push(point); point = new GLatLng(7.212778, 10.22389); oldpoints.push(point); point = new GLatLng(6.955555, 10.31417); oldpoints.push(point); point = new GLatLng(6.684444, 10.40611); oldpoints.push(point); point = new GLatLng(6.414166, 10.49639); oldpoints.push(point); point = new GLatLng(6.156389, 10.58306); oldpoints.push(point); point = new GLatLng(5.900278, 10.66778); oldpoints.push(point); point = new GLatLng(5.641944, 10.75417); oldpoints.push(point); point = new GLatLng(5.388055, 10.86083); oldpoints.push(point); point = new GLatLng(5.1375, 10.96583); oldpoints.push(point); point = new GLatLng(4.891111, 11.06972); oldpoints.push(point); point = new GLatLng(4.643889, 11.17306); oldpoints.push(point); point = new GLatLng(4.3925, 11.27833); oldpoints.push(point); point = new GLatLng(4.135, 11.38556); oldpoints.push(point); point = new GLatLng(3.880278, 11.4925); oldpoints.push(point); point = new GLatLng(3.6175, 11.595); oldpoints.push(point); point = new GLatLng(3.339722, 11.69278); oldpoints.push(point); point = new GLatLng(3.078611, 11.78306); oldpoints.push(point); point = new GLatLng(2.823056, 11.87444); oldpoints.push(point); point = new GLatLng(2.569722, 11.96306); oldpoints.push(point); point = new GLatLng(2.318889, 12.05111); oldpoints.push(point); point = new GLatLng(2.072778, 12.13833); oldpoints.push(point); point = new GLatLng(1.823056, 12.22528); oldpoints.push(point); point = new GLatLng(1.571667, 12.31361); oldpoints.push(point); point = new GLatLng(1.319167, 12.40222); oldpoints.push(point); point = new GLatLng(1.069444, 12.49028); oldpoints.push(point); point = new GLatLng(0.8133333, 12.57833); oldpoints.push(point); point = new GLatLng(0.5522223, 12.67111); oldpoints.push(point); point = new GLatLng(0.2869444, 12.76361); oldpoints.push(point); point = new GLatLng(0.02222222, 12.85722); oldpoints.push(point); point = new GLatLng(-0.2394444, 12.94917); oldpoints.push(point); point = new GLatLng(-0.4927778, 13.0375); oldpoints.push(point); point = new GLatLng(-0.745, 13.12611); oldpoints.push(point); point = new GLatLng(-0.9994444, 13.21611); oldpoints.push(point); point = new GLatLng(-1.254722, 13.30528); oldpoints.push(point); point = new GLatLng(-1.511389, 13.39444); oldpoints.push(point); point = new GLatLng(-1.750556, 13.5125); oldpoints.push(point); point = new GLatLng(-1.966944, 13.66139); oldpoints.push(point); point = new GLatLng(-2.177222, 13.80917); oldpoints.push(point); point = new GLatLng(-2.383611, 13.95611); oldpoints.push(point); point = new GLatLng(-2.586944, 14.09889); oldpoints.push(point); point = new GLatLng(-2.787222, 14.23944); oldpoints.push(point); point = new GLatLng(-2.988333, 14.37861); oldpoints.push(point); point = new GLatLng(-3.189722, 14.52194); oldpoints.push(point); point = new GLatLng(-3.420278, 14.63194); oldpoints.push(point); point = new GLatLng(-3.664444, 14.75389); oldpoints.push(point); point = new GLatLng(-3.936944, 14.88778); oldpoints.push(point); point = new GLatLng(-4.214445, 15.03361); oldpoints.push(point); point = new GLatLng(-4.260833, 15.24167); oldpoints.push(point); point = new GLatLng(-4.254445, 15.24917); oldpoints.push(point); point = new GLatLng(-4.258333, 15.24972); oldpoints.push(point); point = new GLatLng(-4.258333, 15.24972); oldpoints.push(point); point = new GLatLng(-4.258333, 15.24972); oldpoints.push(point); point = new GLatLng(-4.257778, 15.25028); oldpoints.push(point); point = new GLatLng(-4.257778, 15.25028); oldpoints.push(point); point = new GLatLng(-4.257778, 15.25); oldpoints.push(point); point = new GLatLng(-4.259167, 15.24361); oldpoints.push(point); point = new GLatLng(-4.191667, 15.33); oldpoints.push(point); point = new GLatLng(-4.261944, 15.48139); oldpoints.push(point); point = new GLatLng(-4.499722, 15.43389); oldpoints.push(point); point = new GLatLng(-4.776945, 15.46194); oldpoints.push(point); point = new GLatLng(-5.055555, 15.49111); oldpoints.push(point); point = new GLatLng(-5.325, 15.51889); oldpoints.push(point); point = new GLatLng(-5.599722, 15.54722); oldpoints.push(point); point = new GLatLng(-6.160278, 15.60611); oldpoints.push(point); point = new GLatLng(-6.437778, 15.63639); oldpoints.push(point); point = new GLatLng(-6.713611, 15.66639); oldpoints.push(point); point = new GLatLng(-6.835834, 15.67972); oldpoints.push(point); point = new GLatLng(-7.282222, 15.72722); oldpoints.push(point); point = new GLatLng(-7.556389, 15.75722); oldpoints.push(point); point = new GLatLng(-7.570278, 15.76); oldpoints.push(point); point = new GLatLng(-7.833611, 15.78639); oldpoints.push(point); point = new GLatLng(-8.115278, 15.81778); oldpoints.push(point); point = new GLatLng(-8.391666, 15.84778); oldpoints.push(point); point = new GLatLng(-8.673611, 15.87861); oldpoints.push(point); point = new GLatLng(-8.953055, 15.90917); oldpoints.push(point); point = new GLatLng(-9.2275, 15.94194); oldpoints.push(point); point = new GLatLng(-9.474444, 15.96611); oldpoints.push(point); point = new GLatLng(-9.739445, 15.995); oldpoints.push(point); point = new GLatLng(-10.01028, 16.02472); oldpoints.push(point); point = new GLatLng(-10.27361, 16.05389); oldpoints.push(point); point = new GLatLng(-10.54333, 16.08333); oldpoints.push(point); point = new GLatLng(-11.08167, 16.14278); oldpoints.push(point); point = new GLatLng(-11.35611, 16.17306); oldpoints.push(point); point = new GLatLng(-11.63833, 16.20361); oldpoints.push(point); point = new GLatLng(-11.90972, 16.23444); oldpoints.push(point); point = new GLatLng(-12.17944, 16.26472); oldpoints.push(point); point = new GLatLng(-12.43528, 16.29306); oldpoints.push(point); point = new GLatLng(-12.72694, 16.32556); oldpoints.push(point); point = new GLatLng(-12.99611, 16.35556); oldpoints.push(point); point = new GLatLng(-13.26694, 16.38611); oldpoints.push(point); point = new GLatLng(-13.53444, 16.41611); oldpoints.push(point); point = new GLatLng(-13.81056, 16.44639); oldpoints.push(point); point = new GLatLng(-14.08528, 16.47611); oldpoints.push(point); point = new GLatLng(-14.36056, 16.50722); oldpoints.push(point); point = new GLatLng(-14.63056, 16.53695); oldpoints.push(point); point = new GLatLng(-15.17139, 16.59639); oldpoints.push(point); point = new GLatLng(-15.44083, 16.62667); oldpoints.push(point); point = new GLatLng(-15.71056, 16.65639); oldpoints.push(point); point = new GLatLng(-15.98139, 16.68694); oldpoints.push(point); point = new GLatLng(-16.24944, 16.71667); oldpoints.push(point); point = new GLatLng(-16.51972, 16.7475); oldpoints.push(point); point = new GLatLng(-16.78889, 16.77778); oldpoints.push(point); point = new GLatLng(-17.05333, 16.80778); oldpoints.push(point); point = new GLatLng(-17.31167, 16.83833); oldpoints.push(point); point = new GLatLng(-17.58028, 16.86889); oldpoints.push(point); point = new GLatLng(-17.81889, 16.8975); oldpoints.push(point); point = new GLatLng(-18.08583, 16.92945); oldpoints.push(point); point = new GLatLng(-18.36417, 16.96278); oldpoints.push(point); point = new GLatLng(-18.63944, 16.99528); oldpoints.push(point); point = new GLatLng(-18.92278, 17.02944); oldpoints.push(point); point = new GLatLng(-19.20528, 17.06389); oldpoints.push(point); point = new GLatLng(-19.48444, 17.09805); oldpoints.push(point); point = new GLatLng(-19.765, 17.13389); oldpoints.push(point); point = new GLatLng(-20.04833, 17.16778); oldpoints.push(point); point = new GLatLng(-20.32722, 17.20306); oldpoints.push(point); point = new GLatLng(-20.60944, 17.23611); oldpoints.push(point); point = new GLatLng(-20.88556, 17.27056); oldpoints.push(point); point = new GLatLng(-21.13083, 17.29972); oldpoints.push(point); point = new GLatLng(-21.40028, 17.33528); oldpoints.push(point); point = new GLatLng(-21.67222, 17.36972); oldpoints.push(point); point = new GLatLng(-21.95139, 17.405); oldpoints.push(point); point = new GLatLng(-22.24083, 17.44194); oldpoints.push(point); point = new GLatLng(-22.53361, 17.48028); oldpoints.push(point); point = new GLatLng(-23.08222, 17.57472); oldpoints.push(point); point = new GLatLng(-23.36778, 17.61972); oldpoints.push(point); point = new GLatLng(-23.655, 17.66583); oldpoints.push(point); point = new GLatLng(-23.945, 17.71139); oldpoints.push(point); point = new GLatLng(-24.24055, 17.75972); oldpoints.push(point); point = new GLatLng(-24.53361, 17.80694); oldpoints.push(point); point = new GLatLng(-24.82667, 17.85417); oldpoints.push(point); point = new GLatLng(-25.12444, 17.90167); oldpoints.push(point); point = new GLatLng(-25.42694, 17.94722); oldpoints.push(point); point = new GLatLng(-25.73056, 17.99222); oldpoints.push(point); point = new GLatLng(-26.02695, 18.03722); oldpoints.push(point); point = new GLatLng(-26.32917, 18.0825); oldpoints.push(point); point = new GLatLng(-26.62528, 18.13111); oldpoints.push(point); point = new GLatLng(-26.92389, 18.18806); oldpoints.push(point); point = new GLatLng(-27.23139, 18.24778); oldpoints.push(point); point = new GLatLng(-27.54528, 18.30305); oldpoints.push(point); point = new GLatLng(-27.86833, 18.32944); oldpoints.push(point); point = new GLatLng(-28.50778, 18.38056); oldpoints.push(point); point = new GLatLng(-28.83167, 18.38944); oldpoints.push(point); point = new GLatLng(-29.14611, 18.38778); oldpoints.push(point); point = new GLatLng(-29.45694, 18.38694); oldpoints.push(point); point = new GLatLng(-29.76361, 18.39333); oldpoints.push(point); point = new GLatLng(-30.07055, 18.41583); oldpoints.push(point); point = new GLatLng(-30.36528, 18.41333); oldpoints.push(point); point = new GLatLng(-30.66055, 18.40972); oldpoints.push(point); point = new GLatLng(-30.95667, 18.40556); oldpoints.push(point); point = new GLatLng(-31.54445, 18.39778); oldpoints.push(point); point = new GLatLng(-31.83945, 18.39305); oldpoints.push(point); point = new GLatLng(-32.155, 18.38889); oldpoints.push(point); point = new GLatLng(-32.76694, 18.38); oldpoints.push(point); point = new GLatLng(-33.08167, 18.42222); oldpoints.push(point); point = new GLatLng(-33.37222, 18.48139); oldpoints.push(point); point = new GLatLng(-33.68167, 18.60444); oldpoints.push(point); point = new GLatLng(-33.99028, 18.615); oldpoints.push(point); point = new GLatLng(-33.97833, 18.60583); oldpoints.push(point); point = new GLatLng(-33.97889, 18.59805); oldpoints.push(point); point = new GLatLng(-33.97889, 18.59805); oldpoints.push(point); point = new GLatLng(-33.97889, 18.59805); points.push(point); pmarker = createNumMarker(point, 326,'2010-09-02 03:08:06 GMT
33° 58′ 44″ S   18° 35′ 52″ E
Altitude: 100.0 feet, 30.5 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-33.97778, 18.6); points.push(point); pmarker = createNumMarker(point, 327,'2010-09-02 03:14:06 GMT
33° 58′ 40″ S   18° 36′ 0″ E
Altitude: 125.0 feet, 38.1 m
Speed: 5 knots, 9 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-33.97833, 18.60611); points.push(point); pmarker = createNumMarker(point, 328,'2010-09-02 03:19:53 GMT
33° 58′ 41″ S   18° 36′ 21″ E
Altitude: 150.0 feet, 45.7 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-33.96472, 18.60111); points.push(point); pmarker = createNumMarker(point, 329,'2010-09-02 03:20:07 GMT
33° 57′ 52″ S   18° 36′ 3″ E
Altitude: 200.0 feet, 61.0 m
Speed: 108 knots, 200 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-33.96167, 18.60111); points.push(point); pmarker = createNumMarker(point, 330,'2010-09-02 03:20:55 GMT
33° 57′ 42″ S   18° 36′ 3″ E
Altitude: 200.0 feet, 61.0 m
Speed: 112 knots, 208 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-33.80083, 18.56528); points.push(point); pmarker = createNumMarker(point, 331,'2010-09-02 03:25:49 GMT
33° 48′ 2″ S   18° 33′ 55″ E
Altitude: 4,774.8 feet, 1,455.3 m
Speed: 135 knots, 249 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-33.57972, 18.57306); points.push(point); pmarker = createNumMarker(point, 332,'2010-09-02 03:31:51 GMT
33° 34′ 46″ S   18° 34′ 23″ E
Altitude: 8,299.6 feet, 2,529.7 m
Speed: 167 knots, 309 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-32.98333, 18.57); points.push(point); pmarker = createNumMarker(point, 333,'2010-09-02 03:43:53 GMT
32° 58′ 59″ S   18° 34′ 12″ E
Altitude: 9,274.5 feet, 2,826.9 m
Speed: 185 knots, 342 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-32.68, 18.57806); points.push(point); pmarker = createNumMarker(point, 334,'2010-09-02 03:49:49 GMT
32° 40′ 47″ S   18° 34′ 41″ E
Altitude: 9,224.6 feet, 2,811.6 m
Speed: 185 knots, 342 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-32.36639, 18.57694); points.push(point); pmarker = createNumMarker(point, 335,'2010-09-02 03:55:51 GMT
32° 21′ 59″ S   18° 34′ 36″ E
Altitude: 9,224.6 feet, 2,811.6 m
Speed: 183 knots, 339 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-32.05972, 18.57583); points.push(point); pmarker = createNumMarker(point, 336,'2010-09-02 04:01:53 GMT
32° 3′ 34″ S   18° 34′ 32″ E
Altitude: 9,249.5 feet, 2,819.3 m
Speed: 181 knots, 335 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-31.76056, 18.57611); points.push(point); pmarker = createNumMarker(point, 337,'2010-09-02 04:07:52 GMT
31° 45′ 38″ S   18° 34′ 33″ E
Altitude: 9,249.5 feet, 2,819.3 m
Speed: 177 knots, 328 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-31.47083, 18.57278); points.push(point); pmarker = createNumMarker(point, 338,'2010-09-02 04:13:50 GMT
31° 28′ 14″ S   18° 34′ 22″ E
Altitude: 9,274.5 feet, 2,826.9 m
Speed: 170 knots, 314 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-31.19083, 18.57055); points.push(point); pmarker = createNumMarker(point, 339,'2010-09-02 04:19:50 GMT
31° 11′ 26″ S   18° 34′ 13″ E
Altitude: 9,299.5 feet, 2,834.5 m
Speed: 167 knots, 309 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-30.91722, 18.55167); points.push(point); pmarker = createNumMarker(point, 340,'2010-09-02 04:25:49 GMT
30° 55′ 1″ S   18° 33′ 6″ E
Altitude: 9,299.5 feet, 2,834.5 m
Speed: 165 knots, 305 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-30.64278, 18.53083); points.push(point); pmarker = createNumMarker(point, 341,'2010-09-02 04:31:50 GMT
30° 38′ 34″ S   18° 31′ 50″ E
Altitude: 9,324.5 feet, 2,842.1 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-30.37, 18.51); points.push(point); pmarker = createNumMarker(point, 342,'2010-09-02 04:37:52 GMT
30° 22′ 12″ S   18° 30′ 36″ E
Altitude: 9,324.5 feet, 2,842.1 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-30.10222, 18.49); points.push(point); pmarker = createNumMarker(point, 343,'2010-09-02 04:43:48 GMT
30° 6′ 7″ S   18° 29′ 23″ E
Altitude: 9,349.5 feet, 2,849.7 m
Speed: 166 knots, 307 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-29.82278, 18.46972); points.push(point); pmarker = createNumMarker(point, 344,'2010-09-02 04:49:50 GMT
29° 49′ 22″ S   18° 28′ 10″ E
Altitude: 9,374.5 feet, 2,857.4 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-29.55167, 18.44944); points.push(point); pmarker = createNumMarker(point, 345,'2010-09-02 04:55:52 GMT
29° 33′ 6″ S   18° 26′ 57″ E
Altitude: 9,374.5 feet, 2,857.4 m
Speed: 166 knots, 307 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-29.27917, 18.43167); points.push(point); pmarker = createNumMarker(point, 346,'2010-09-02 05:01:48 GMT
29° 16′ 45″ S   18° 25′ 54″ E
Altitude: 9,424.5 feet, 2,872.6 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-28.99528, 18.4075); points.push(point); pmarker = createNumMarker(point, 347,'2010-09-02 05:07:50 GMT
28° 59′ 43″ S   18° 24′ 26″ E
Altitude: 9,424.5 feet, 2,872.6 m
Speed: 166 knots, 307 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-28.7225, 18.38806); points.push(point); pmarker = createNumMarker(point, 348,'2010-09-02 05:13:52 GMT
28° 43′ 21″ S   18° 23′ 17″ E
Altitude: 9,449.5 feet, 2,880.2 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-28.45444, 18.36833); points.push(point); pmarker = createNumMarker(point, 349,'2010-09-02 05:19:50 GMT
28° 27′ 15″ S   18° 22′ 5″ E
Altitude: 9,449.5 feet, 2,880.2 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-28.195, 18.34945); points.push(point); pmarker = createNumMarker(point, 350,'2010-09-02 05:25:50 GMT
28° 11′ 42″ S   18° 20′ 58″ E
Altitude: 9,449.5 feet, 2,880.2 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-27.945, 18.32889); points.push(point); pmarker = createNumMarker(point, 351,'2010-09-02 05:31:48 GMT
27° 56′ 42″ S   18° 19′ 44″ E
Altitude: 9,474.5 feet, 2,887.8 m
Speed: 155 knots, 286 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-27.67861, 18.31083); points.push(point); pmarker = createNumMarker(point, 352,'2010-09-02 05:37:50 GMT
27° 40′ 42″ S   18° 18′ 38″ E
Altitude: 9,474.5 feet, 2,887.8 m
Speed: 157 knots, 291 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-27.41833, 18.28417); points.push(point); pmarker = createNumMarker(point, 353,'2010-09-02 05:43:52 GMT
27° 25′ 5″ S   18° 17′ 3″ E
Altitude: 9,474.5 feet, 2,887.8 m
Speed: 154 knots, 284 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-27.16722, 18.23806); points.push(point); pmarker = createNumMarker(point, 354,'2010-09-02 05:49:49 GMT
27° 10′ 1″ S   18° 14′ 17″ E
Altitude: 9,524.5 feet, 2,903.1 m
Speed: 151 knots, 279 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-26.92083, 18.18694); points.push(point); pmarker = createNumMarker(point, 355,'2010-09-02 05:55:48 GMT
26° 55′ 14″ S   18° 11′ 12″ E
Altitude: 9,474.5 feet, 2,887.8 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-26.65778, 18.13667); points.push(point); pmarker = createNumMarker(point, 356,'2010-09-02 06:01:50 GMT
26° 39′ 28″ S   18° 8′ 12″ E
Altitude: 9,474.5 feet, 2,887.8 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-26.39278, 18.09194); points.push(point); pmarker = createNumMarker(point, 357,'2010-09-02 06:07:52 GMT
26° 23′ 34″ S   18° 5′ 30″ E
Altitude: 9,499.5 feet, 2,895.5 m
Speed: 157 knots, 290 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-26.14278, 18.05417); points.push(point); pmarker = createNumMarker(point, 358,'2010-09-02 06:13:48 GMT
26° 8′ 34″ S   18° 3′ 15″ E
Altitude: 9,499.5 feet, 2,895.5 m
Speed: 154 knots, 284 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-25.88417, 18.01583); points.push(point); pmarker = createNumMarker(point, 359,'2010-09-02 06:19:49 GMT
25° 53′ 3″ S   18° 0′ 56″ E
Altitude: 9,499.5 feet, 2,895.5 m
Speed: 154 knots, 285 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-25.63056, 17.97528); points.push(point); pmarker = createNumMarker(point, 360,'2010-09-02 06:25:50 GMT
25° 37′ 50″ S   17° 58′ 31″ E
Altitude: 9,524.5 feet, 2,903.1 m
Speed: 155 knots, 286 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-25.37806, 17.94111); points.push(point); pmarker = createNumMarker(point, 361,'2010-09-02 06:31:48 GMT
25° 22′ 41″ S   17° 56′ 27″ E
Altitude: 9,549.5 feet, 2,910.7 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-25.11389, 17.90055); points.push(point); pmarker = createNumMarker(point, 362,'2010-09-02 06:37:50 GMT
25° 6′ 50″ S   17° 54′ 1″ E
Altitude: 9,524.5 feet, 2,903.1 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-24.85167, 17.85639); points.push(point); pmarker = createNumMarker(point, 363,'2010-09-02 06:43:52 GMT
24° 51′ 6″ S   17° 51′ 23″ E
Altitude: 9,549.5 feet, 2,910.7 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-24.59083, 17.8125); points.push(point); pmarker = createNumMarker(point, 364,'2010-09-02 06:49:48 GMT
24° 35′ 26″ S   17° 48′ 45″ E
Altitude: 9,549.5 feet, 2,910.7 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-24.31611, 17.76694); points.push(point); pmarker = createNumMarker(point, 365,'2010-09-02 06:55:50 GMT
24° 18′ 57″ S   17° 46′ 0″ E
Altitude: 9,549.5 feet, 2,910.7 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-24.04056, 17.72139); points.push(point); pmarker = createNumMarker(point, 366,'2010-09-02 07:01:50 GMT
24° 2′ 26″ S   17° 43′ 17″ E
Altitude: 9,549.5 feet, 2,910.7 m
Speed: 169 knots, 313 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-23.76361, 17.67611); points.push(point); pmarker = createNumMarker(point, 367,'2010-09-02 07:07:48 GMT
23° 45′ 48″ S   17° 40′ 33″ E
Altitude: 9,574.5 feet, 2,918.3 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-23.47972, 17.62917); points.push(point); pmarker = createNumMarker(point, 368,'2010-09-02 07:13:48 GMT
23° 28′ 46″ S   17° 37′ 45″ E
Altitude: 9,574.5 feet, 2,918.3 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-23.19528, 17.58472); points.push(point); pmarker = createNumMarker(point, 369,'2010-09-02 07:19:50 GMT
23° 11′ 43″ S   17° 35′ 4″ E
Altitude: 10,274.5 feet, 3,131.7 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-22.93583, 17.5425); points.push(point); pmarker = createNumMarker(point, 370,'2010-09-02 07:25:52 GMT
22° 56′ 8″ S   17° 32′ 33″ E
Altitude: 11,699.4 feet, 3,566.0 m
Speed: 167 knots, 309 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-22.66417, 17.49972); points.push(point); pmarker = createNumMarker(point, 371,'2010-09-02 07:31:48 GMT
22° 39′ 51″ S   17° 29′ 58″ E
Altitude: 11,724.4 feet, 3,573.6 m
Speed: 169 knots, 313 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-22.37139, 17.4575); points.push(point); pmarker = createNumMarker(point, 372,'2010-09-02 07:37:50 GMT
22° 22′ 17″ S   17° 27′ 26″ E
Altitude: 11,724.4 feet, 3,573.6 m
Speed: 176 knots, 326 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-22.085, 17.42056); points.push(point); pmarker = createNumMarker(point, 373,'2010-09-02 07:43:51 GMT
22° 5′ 6″ S   17° 25′ 14″ E
Altitude: 11,974.4 feet, 3,649.8 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-21.81472, 17.38583); points.push(point); pmarker = createNumMarker(point, 374,'2010-09-02 07:49:52 GMT
21° 48′ 52″ S   17° 23′ 8″ E
Altitude: 12,599.4 feet, 3,840.3 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-21.53528, 17.35083); points.push(point); pmarker = createNumMarker(point, 375,'2010-09-02 07:55:48 GMT
21° 32′ 7″ S   17° 21′ 2″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-21.24167, 17.31444); points.push(point); pmarker = createNumMarker(point, 376,'2010-09-02 08:01:52 GMT
21° 14′ 30″ S   17° 18′ 51″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 176 knots, 326 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-20.95472, 17.27917); points.push(point); pmarker = createNumMarker(point, 377,'2010-09-02 08:07:48 GMT
20° 57′ 16″ S   17° 16′ 45″ E
Altitude: 12,699.4 feet, 3,870.8 m
Speed: 175 knots, 324 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-20.6575, 17.24222); points.push(point); pmarker = createNumMarker(point, 378,'2010-09-02 08:13:50 GMT
20° 39′ 26″ S   17° 14′ 31″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 177 knots, 327 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-20.36278, 17.20528); points.push(point); pmarker = createNumMarker(point, 379,'2010-09-02 08:19:50 GMT
20° 21′ 46″ S   17° 12′ 19″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 179 knots, 331 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-20.06583, 17.16917); points.push(point); pmarker = createNumMarker(point, 380,'2010-09-02 08:25:52 GMT
20° 3′ 56″ S   17° 10′ 9″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 179 knots, 332 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-19.76861, 17.13222); points.push(point); pmarker = createNumMarker(point, 381,'2010-09-02 08:31:52 GMT
19° 46′ 6″ S   17° 7′ 55″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 181 knots, 334 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-19.46917, 17.09667); points.push(point); pmarker = createNumMarker(point, 382,'2010-09-02 08:37:50 GMT
19° 28′ 9″ S   17° 5′ 48″ E
Altitude: 12,699.4 feet, 3,870.8 m
Speed: 181 knots, 335 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-19.16639, 17.05889); points.push(point); pmarker = createNumMarker(point, 383,'2010-09-02 08:43:51 GMT
19° 9′ 59″ S   17° 3′ 32″ E
Altitude: 12,699.4 feet, 3,870.8 m
Speed: 184 knots, 340 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-18.85695, 17.02139); points.push(point); pmarker = createNumMarker(point, 384,'2010-09-02 08:49:52 GMT
18° 51′ 25″ S   17° 1′ 17″ E
Altitude: 12,699.4 feet, 3,870.8 m
Speed: 188 knots, 348 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-18.54806, 16.98444); points.push(point); pmarker = createNumMarker(point, 385,'2010-09-02 08:55:48 GMT
18° 32′ 53″ S   16° 59′ 3″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 190 knots, 352 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-18.32167, 16.95722); points.push(point); pmarker = createNumMarker(point, 386,'2010-09-02 09:00:40 GMT
18° 19′ 18″ S   16° 57′ 25″ E
Altitude: 12,599.4 feet, 3,840.3 m
Speed: 188 knots, 348 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-18.22806, 16.94555); points.push(point); pmarker = createNumMarker(point, 387,'2010-09-02 09:01:50 GMT
18° 13′ 41″ S   16° 56′ 43″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 188 knots, 347 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-17.91583, 16.90833); points.push(point); pmarker = createNumMarker(point, 388,'2010-09-02 09:07:52 GMT
17° 54′ 56″ S   16° 54′ 29″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 189 knots, 349 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-17.605, 16.87056); points.push(point); pmarker = createNumMarker(point, 389,'2010-09-02 09:13:48 GMT
17° 36′ 18″ S   16° 52′ 14″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 193 knots, 357 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-17.27555, 16.83222); points.push(point); pmarker = createNumMarker(point, 390,'2010-09-02 09:19:50 GMT
17° 16′ 31″ S   16° 49′ 55″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 197 knots, 365 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-17.15528, 16.81833); points.push(point); pmarker = createNumMarker(point, 391,'2010-09-02 09:22:35 GMT
17° 9′ 19″ S   16° 49′ 5″ E
Altitude: 12,599.4 feet, 3,840.3 m
Speed: 197 knots, 364 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-16.95222, 16.79639); points.push(point); pmarker = createNumMarker(point, 392,'2010-09-02 09:25:48 GMT
16° 57′ 7″ S   16° 47′ 47″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 198 knots, 367 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-16.61611, 16.75833); points.push(point); pmarker = createNumMarker(point, 393,'2010-09-02 09:31:49 GMT
16° 36′ 57″ S   16° 45′ 29″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 198 knots, 367 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-16.29222, 16.72139); points.push(point); pmarker = createNumMarker(point, 394,'2010-09-02 09:37:52 GMT
16° 17′ 31″ S   16° 43′ 17″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 187 knots, 346 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-16.00417, 16.68861); points.push(point); pmarker = createNumMarker(point, 395,'2010-09-02 09:43:48 GMT
16° 0′ 15″ S   16° 41′ 18″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 169 knots, 312 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-15.71917, 16.65667); points.push(point); pmarker = createNumMarker(point, 396,'2010-09-02 09:49:50 GMT
15° 43′ 9″ S   16° 39′ 24″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-15.43861, 16.62194); points.push(point); pmarker = createNumMarker(point, 397,'2010-09-02 09:55:52 GMT
15° 26′ 18″ S   16° 37′ 18″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-15.1675, 16.59361); points.push(point); pmarker = createNumMarker(point, 398,'2010-09-02 10:01:48 GMT
15° 10′ 3″ S   16° 35′ 36″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-14.89056, 16.5625); points.push(point); pmarker = createNumMarker(point, 399,'2010-09-02 10:07:50 GMT
14° 53′ 26″ S   16° 33′ 45″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-14.61361, 16.53361); points.push(point); pmarker = createNumMarker(point, 400,'2010-09-02 10:13:52 GMT
14° 36′ 48″ S   16° 32′ 0″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 169 knots, 312 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-14.33139, 16.50139); points.push(point); pmarker = createNumMarker(point, 401,'2010-09-02 10:19:52 GMT
14° 19′ 53″ S   16° 30′ 5″ E
Altitude: 12,649.4 feet, 3,855.5 m
Speed: 175 knots, 324 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-14.05917, 16.47167); points.push(point); pmarker = createNumMarker(point, 402,'2010-09-02 10:25:48 GMT
14° 3′ 33″ S   16° 28′ 18″ E
Altitude: 12,674.4 feet, 3,863.2 m
Speed: 178 knots, 329 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-13.77472, 16.43917); points.push(point); pmarker = createNumMarker(point, 403,'2010-09-02 10:31:50 GMT
13° 46′ 28″ S   16° 26′ 21″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-13.49639, 16.40861); points.push(point); pmarker = createNumMarker(point, 404,'2010-09-02 10:37:52 GMT
13° 29′ 47″ S   16° 24′ 30″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 169 knots, 312 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-13.21861, 16.37917); points.push(point); pmarker = createNumMarker(point, 405,'2010-09-02 10:43:48 GMT
13° 13′ 6″ S   16° 22′ 45″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 164 knots, 303 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-12.9375, 16.34722); points.push(point); pmarker = createNumMarker(point, 406,'2010-09-02 10:49:50 GMT
12° 56′ 15″ S   16° 20′ 49″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-12.66528, 16.31528); points.push(point); pmarker = createNumMarker(point, 407,'2010-09-02 10:55:51 GMT
12° 39′ 55″ S   16° 18′ 55″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-12.39, 16.28528); points.push(point); pmarker = createNumMarker(point, 408,'2010-09-02 11:01:52 GMT
12° 23′ 24″ S   16° 17′ 7″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-12.11111, 16.255); points.push(point); pmarker = createNumMarker(point, 409,'2010-09-02 11:07:50 GMT
12° 6′ 39″ S   16° 15′ 17″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-11.82139, 16.22222); points.push(point); pmarker = createNumMarker(point, 410,'2010-09-02 11:13:50 GMT
11° 49′ 17″ S   16° 13′ 19″ E
Altitude: 12,574.4 feet, 3,832.7 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-11.53778, 16.19139); points.push(point); pmarker = createNumMarker(point, 411,'2010-09-02 11:19:52 GMT
11° 32′ 16″ S   16° 11′ 29″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-11.26306, 16.16111); points.push(point); pmarker = createNumMarker(point, 412,'2010-09-02 11:25:48 GMT
11° 15′ 47″ S   16° 9′ 39″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-10.97611, 16.12972); points.push(point); pmarker = createNumMarker(point, 413,'2010-09-02 11:31:50 GMT
10° 58′ 33″ S   16° 7′ 46″ E
Altitude: 12,524.4 feet, 3,817.4 m
Speed: 172 knots, 319 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-10.69083, 16.09861); points.push(point); pmarker = createNumMarker(point, 414,'2010-09-02 11:37:52 GMT
10° 41′ 26″ S   16° 5′ 54″ E
Altitude: 12,524.4 feet, 3,817.4 m
Speed: 174 knots, 321 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-10.40528, 16.06667); points.push(point); pmarker = createNumMarker(point, 415,'2010-09-02 11:43:52 GMT
10° 24′ 19″ S   16° 4′ 0″ E
Altitude: 12,524.4 feet, 3,817.4 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-10.11528, 16.03444); points.push(point); pmarker = createNumMarker(point, 416,'2010-09-02 11:49:52 GMT
10° 6′ 55″ S   16° 2′ 3″ E
Altitude: 12,524.4 feet, 3,817.4 m
Speed: 176 knots, 326 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-9.827778, 16.00389); points.push(point); pmarker = createNumMarker(point, 417,'2010-09-02 11:55:49 GMT
9° 49′ 40″ S   16° 0′ 14″ E
Altitude: 12,524.4 feet, 3,817.4 m
Speed: 172 knots, 319 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-9.539166, 15.97222); points.push(point); pmarker = createNumMarker(point, 418,'2010-09-02 12:01:51 GMT
9° 32′ 20″ S   15° 58′ 19″ E
Altitude: 12,499.4 feet, 3,809.8 m
Speed: 172 knots, 319 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-9.255, 15.94139); points.push(point); pmarker = createNumMarker(point, 419,'2010-09-02 12:07:48 GMT
9° 15′ 18″ S   15° 56′ 29″ E
Altitude: 12,499.4 feet, 3,809.8 m
Speed: 176 knots, 325 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-8.959723, 15.90861); points.push(point); pmarker = createNumMarker(point, 420,'2010-09-02 12:13:50 GMT
8° 57′ 35″ S   15° 54′ 30″ E
Altitude: 12,499.4 feet, 3,809.8 m
Speed: 175 knots, 323 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-8.669723, 15.8775); points.push(point); pmarker = createNumMarker(point, 421,'2010-09-02 12:19:52 GMT
8° 40′ 11″ S   15° 52′ 38″ E
Altitude: 12,499.4 feet, 3,809.8 m
Speed: 175 knots, 323 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-8.380278, 15.84528); points.push(point); pmarker = createNumMarker(point, 422,'2010-09-02 12:25:52 GMT
8° 22′ 49″ S   15° 50′ 43″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 174 knots, 322 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-8.095, 15.81472); points.push(point); pmarker = createNumMarker(point, 423,'2010-09-02 12:31:48 GMT
8° 5′ 42″ S   15° 48′ 52″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 175 knots, 323 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-7.512222, 15.75278); points.push(point); pmarker = createNumMarker(point, 424,'2010-09-02 12:43:50 GMT
7° 30′ 43″ S   15° 45′ 10″ E
Altitude: 12,599.4 feet, 3,840.3 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-7.227778, 15.72111); points.push(point); pmarker = createNumMarker(point, 425,'2010-09-02 12:49:48 GMT
7° 13′ 40″ S   15° 43′ 15″ E
Altitude: 12,574.4 feet, 3,832.7 m
Speed: 174 knots, 322 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-6.930555, 15.68917); points.push(point); pmarker = createNumMarker(point, 426,'2010-09-02 12:55:50 GMT
6° 55′ 49″ S   15° 41′ 21″ E
Altitude: 12,574.4 feet, 3,832.7 m
Speed: 178 knots, 330 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-6.638889, 15.6575); points.push(point); pmarker = createNumMarker(point, 427,'2010-09-02 13:01:52 GMT
6° 38′ 20″ S   15° 39′ 27″ E
Altitude: 12,574.4 feet, 3,832.7 m
Speed: 175 knots, 324 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-6.352222, 15.62667); points.push(point); pmarker = createNumMarker(point, 428,'2010-09-02 13:07:48 GMT
6° 21′ 7″ S   15° 37′ 36″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 175 knots, 324 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-6.0525, 15.59417); points.push(point); pmarker = createNumMarker(point, 429,'2010-09-02 13:13:51 GMT
6° 3′ 9″ S   15° 35′ 39″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 177 knots, 328 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-5.757778, 15.56306); points.push(point); pmarker = createNumMarker(point, 430,'2010-09-02 13:19:52 GMT
5° 45′ 28″ S   15° 33′ 47″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 181 knots, 334 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-5.463333, 15.53139); points.push(point); pmarker = createNumMarker(point, 431,'2010-09-02 13:25:48 GMT
5° 27′ 47″ S   15° 31′ 53″ E
Altitude: 12,549.4 feet, 3,825.1 m
Speed: 180 knots, 333 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-5.165, 15.49778); points.push(point); pmarker = createNumMarker(point, 432,'2010-09-02 13:31:50 GMT
5° 9′ 54″ S   15° 29′ 52″ E
Altitude: 11,299.4 feet, 3,444.1 m
Speed: 210 knots, 389 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.833333, 15.45833); points.push(point); pmarker = createNumMarker(point, 433,'2010-09-02 13:37:52 GMT
4° 49′ 59″ S   15° 27′ 29″ E
Altitude: 9,224.6 feet, 2,811.6 m
Speed: 182 knots, 337 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.551389, 15.37472); points.push(point); pmarker = createNumMarker(point, 434,'2010-09-02 13:43:52 GMT
4° 33′ 5″ S   15° 22′ 28″ E
Altitude: 6,349.7 feet, 1,935.4 m
Speed: 191 knots, 354 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.345556, 15.17778); points.push(point); pmarker = createNumMarker(point, 435,'2010-09-02 13:49:48 GMT
4° 20′ 44″ S   15° 10′ 40″ E
Altitude: 3,174.8 feet, 967.7 m
Speed: 150 knots, 278 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.253056, 15.25139); points.push(point); pmarker = createNumMarker(point, 436,'2010-09-02 13:53:45 GMT
4° 15′ 11″ S   15° 15′ 5″ E
Altitude: 1,000.0 feet, 304.8 m
Speed: 35 knots, 64 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.256389, 15.24917); points.push(point); pmarker = createNumMarker(point, 437,'2010-09-02 13:55:50 GMT
4° 15′ 23″ S   15° 14′ 57″ E
Altitude: 1,025.0 feet, 312.4 m
Speed: 11 knots, 21 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.258333, 15.24972); points.push(point); pmarker = createNumMarker(point, 438,'2010-09-02 13:58:15 GMT
4° 15′ 29″ S   15° 14′ 58″ E
Altitude: 1,000.0 feet, 304.8 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.258333, 15.24972); points.push(point); pmarker = createNumMarker(point, 439,'2010-09-02 13:58:18 GMT
4° 15′ 29″ S   15° 14′ 58″ E
Altitude: 1,025.0 feet, 312.4 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.258333, 15.24972); points.push(point); pmarker = createNumMarker(point, 440,'2010-09-02 16:12:10 GMT
4° 15′ 29″ S   15° 14′ 58″ E
Altitude: 1,025.0 feet, 312.4 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.259444, 15.24333); points.push(point); pmarker = createNumMarker(point, 441,'2010-09-02 16:17:55 GMT
4° 15′ 33″ S   15° 14′ 35″ E
Altitude: 1,049.9 feet, 320.0 m
Speed: 22 knots, 40 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.257778, 15.24611); points.push(point); pmarker = createNumMarker(point, 442,'2010-09-02 16:20:02 GMT
4° 15′ 28″ S   15° 14′ 45″ E
Altitude: 1,000.0 feet, 304.8 m
Speed: 74 knots, 136 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.256111, 15.24806); points.push(point); pmarker = createNumMarker(point, 443,'2010-09-02 16:20:35 GMT
4° 15′ 21″ S   15° 14′ 53″ E
Altitude: 1,000.0 feet, 304.8 m
Speed: 89 knots, 164 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-4.176111, 15.27167); points.push(point); pmarker = createNumMarker(point, 444,'2010-09-02 16:23:56 GMT
4° 10′ 33″ S   15° 16′ 18″ E
Altitude: 3,599.8 feet, 1,097.2 m
Speed: 137 knots, 254 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-3.9825, 15.12806); points.push(point); pmarker = createNumMarker(point, 445,'2010-09-02 16:29:57 GMT
3° 58′ 56″ S   15° 7′ 41″ E
Altitude: 5,974.7 feet, 1,821.1 m
Speed: 146 knots, 270 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-3.786389, 14.98472); points.push(point); pmarker = createNumMarker(point, 446,'2010-09-02 16:35:57 GMT
3° 47′ 11″ S   14° 59′ 4″ E
Altitude: 8,099.6 feet, 2,468.8 m
Speed: 147 knots, 272 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-3.57, 14.82639); points.push(point); pmarker = createNumMarker(point, 447,'2010-09-02 16:41:53 GMT
3° 34′ 11″ S   14° 49′ 35″ E
Altitude: 8,349.6 feet, 2,545.0 m
Speed: 165 knots, 305 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-3.344445, 14.66389); points.push(point); pmarker = createNumMarker(point, 448,'2010-09-02 16:47:55 GMT
3° 20′ 40″ S   14° 39′ 50″ E
Altitude: 8,649.6 feet, 2,636.4 m
Speed: 171 knots, 317 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-3.111944, 14.49417); points.push(point); pmarker = createNumMarker(point, 449,'2010-09-02 16:53:57 GMT
3° 6′ 42″ S   14° 29′ 39″ E
Altitude: 8,774.6 feet, 2,674.5 m
Speed: 175 knots, 323 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-2.883889, 14.32444); points.push(point); pmarker = createNumMarker(point, 450,'2010-09-02 16:59:55 GMT
2° 53′ 2″ S   14° 19′ 27″ E
Altitude: 8,774.6 feet, 2,674.5 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-2.646667, 14.15083); points.push(point); pmarker = createNumMarker(point, 451,'2010-09-02 17:05:57 GMT
2° 38′ 48″ S   14° 9′ 2″ E
Altitude: 8,774.6 feet, 2,674.5 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-2.418889, 13.98472); points.push(point); pmarker = createNumMarker(point, 452,'2010-09-02 17:11:53 GMT
2° 25′ 8″ S   13° 59′ 4″ E
Altitude: 8,774.6 feet, 2,674.5 m
Speed: 172 knots, 319 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-2.187778, 13.81694); points.push(point); pmarker = createNumMarker(point, 453,'2010-09-02 17:17:55 GMT
2° 11′ 16″ S   13° 49′ 0″ E
Altitude: 8,774.6 feet, 2,674.5 m
Speed: 171 knots, 317 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-1.946944, 13.65167); points.push(point); pmarker = createNumMarker(point, 454,'2010-09-02 17:23:57 GMT
1° 56′ 48″ S   13° 39′ 6″ E
Altitude: 8,749.6 feet, 2,666.9 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-1.744167, 13.49611); points.push(point); pmarker = createNumMarker(point, 455,'2010-09-02 17:29:53 GMT
1° 44′ 39″ S   13° 29′ 45″ E
Altitude: 9,999.5 feet, 3,047.9 m
Speed: 147 knots, 272 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-1.500278, 13.39139); points.push(point); pmarker = createNumMarker(point, 456,'2010-09-02 17:35:55 GMT
1° 30′ 1″ S   13° 23′ 29″ E
Altitude: 10,699.5 feet, 3,261.2 m
Speed: 165 knots, 305 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-1.227222, 13.29583); points.push(point); pmarker = createNumMarker(point, 457,'2010-09-02 17:41:57 GMT
1° 13′ 37″ S   13° 17′ 44″ E
Altitude: 10,674.5 feet, 3,253.6 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-0.9561111, 13.19861); points.push(point); pmarker = createNumMarker(point, 458,'2010-09-02 17:47:57 GMT
0° 57′ 21″ S   13° 11′ 54″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-0.4258333, 13.01444); points.push(point); pmarker = createNumMarker(point, 459,'2010-09-02 17:59:56 GMT
0° 25′ 32″ S   13° 0′ 51″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(-0.1616667, 12.92028); points.push(point); pmarker = createNumMarker(point, 460,'2010-09-02 18:05:57 GMT
0° 9′ 42″ S   12° 55′ 13″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 169 knots, 312 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(0.3477778, 12.78444); points.push(point); pmarker = createNumMarker(point, 461,'2010-09-02 18:17:57 GMT
0° 20′ 52″ N   12° 47′ 3″ E
Altitude: 10,549.5 feet, 3,215.5 m
Speed: 167 knots, 309 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(0.5472222, 12.67111); points.push(point); pmarker = createNumMarker(point, 462,'2010-09-02 18:23:45 GMT
0° 32′ 49″ N   12° 40′ 15″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(0.5783333, 12.66083); points.push(point); pmarker = createNumMarker(point, 463,'2010-09-02 18:23:57 GMT
0° 34′ 41″ N   12° 39′ 38″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(0.8436111, 12.56778); points.push(point); pmarker = createNumMarker(point, 464,'2010-09-02 18:29:53 GMT
0° 50′ 36″ N   12° 34′ 4″ E
Altitude: 10,549.5 feet, 3,215.5 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(1.105, 12.51583); points.push(point); pmarker = createNumMarker(point, 465,'2010-09-02 18:35:53 GMT
1° 6′ 17″ N   12° 30′ 56″ E
Altitude: 10,674.5 feet, 3,253.6 m
Speed: 165 knots, 306 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(1.373611, 12.45389); points.push(point); pmarker = createNumMarker(point, 466,'2010-09-02 18:41:55 GMT
1° 22′ 24″ N   12° 27′ 14″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 163 knots, 301 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(1.641667, 12.37667); points.push(point); pmarker = createNumMarker(point, 467,'2010-09-02 18:47:57 GMT
1° 38′ 30″ N   12° 22′ 36″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(1.893889, 12.28778); points.push(point); pmarker = createNumMarker(point, 468,'2010-09-02 18:53:53 GMT
1° 53′ 38″ N   12° 17′ 16″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(2.151389, 12.19722); points.push(point); pmarker = createNumMarker(point, 469,'2010-09-02 18:59:55 GMT
2° 9′ 5″ N   12° 11′ 49″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 163 knots, 301 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(2.408333, 12.10722); points.push(point); pmarker = createNumMarker(point, 470,'2010-09-02 19:05:55 GMT
2° 24′ 29″ N   12° 6′ 25″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(2.67, 12.01528); points.push(point); pmarker = createNumMarker(point, 471,'2010-09-02 19:11:57 GMT
2° 40′ 11″ N   12° 0′ 55″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(3.178333, 11.83667); points.push(point); pmarker = createNumMarker(point, 472,'2010-09-02 19:23:55 GMT
3° 10′ 41″ N   11° 50′ 12″ E
Altitude: 10,624.5 feet, 3,238.3 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(3.431944, 11.74861); points.push(point); pmarker = createNumMarker(point, 473,'2010-09-02 19:29:56 GMT
3° 25′ 54″ N   11° 44′ 54″ E
Altitude: 11,049.5 feet, 3,367.9 m
Speed: 149 knots, 275 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(3.662778, 11.66528); points.push(point); pmarker = createNumMarker(point, 474,'2010-09-02 19:35:57 GMT
3° 39′ 46″ N   11° 39′ 55″ E
Altitude: 12,324.4 feet, 3,756.5 m
Speed: 143 knots, 264 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(3.869722, 11.53889); points.push(point); pmarker = createNumMarker(point, 475,'2010-09-02 19:41:53 GMT
3° 52′ 10″ N   11° 32′ 20″ E
Altitude: 12,999.4 feet, 3,962.2 m
Speed: 158 knots, 292 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(4.089445, 11.39417); points.push(point); pmarker = createNumMarker(point, 476,'2010-09-02 19:47:55 GMT
4° 5′ 22″ N   11° 23′ 39″ E
Altitude: 13,049.4 feet, 3,977.4 m
Speed: 154 knots, 285 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(4.3275, 11.29722); points.push(point); pmarker = createNumMarker(point, 477,'2010-09-02 19:53:55 GMT
4° 19′ 38″ N   11° 17′ 49″ E
Altitude: 13,324.4 feet, 4,061.3 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(4.547222, 11.15306); points.push(point); pmarker = createNumMarker(point, 478,'2010-09-02 19:59:57 GMT
4° 32′ 49″ N   11° 9′ 11″ E
Altitude: 13,249.4 feet, 4,038.4 m
Speed: 165 knots, 305 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(4.784722, 11.15); points.push(point); pmarker = createNumMarker(point, 479,'2010-09-02 20:05:53 GMT
4° 47′ 4″ N   11° 9′ 0″ E
Altitude: 13,324.4 feet, 4,061.3 m
Speed: 146 knots, 270 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(5.047222, 11.14917); points.push(point); pmarker = createNumMarker(point, 480,'2010-09-02 20:11:55 GMT
5° 2′ 49″ N   11° 8′ 57″ E
Altitude: 13,174.4 feet, 4,015.5 m
Speed: 150 knots, 278 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(5.524445, 11.11472); points.push(point); pmarker = createNumMarker(point, 481,'2010-09-02 20:23:55 GMT
5° 31′ 28″ N   11° 6′ 52″ E
Altitude: 13,174.4 feet, 4,015.5 m
Speed: 152 knots, 281 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(5.778611, 11.02556); points.push(point); pmarker = createNumMarker(point, 482,'2010-09-02 20:29:56 GMT
5° 46′ 42″ N   11° 1′ 32″ E
Altitude: 13,174.4 feet, 4,015.5 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(6.018333, 10.94444); points.push(point); pmarker = createNumMarker(point, 483,'2010-09-02 20:35:53 GMT
6° 1′ 5″ N   10° 56′ 39″ E
Altitude: 13,324.4 feet, 4,061.3 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(6.263333, 10.86306); points.push(point); pmarker = createNumMarker(point, 484,'2010-09-02 20:41:55 GMT
6° 15′ 47″ N   10° 51′ 47″ E
Altitude: 13,474.3 feet, 4,107.0 m
Speed: 154 knots, 285 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(6.519166, 10.77778); points.push(point); pmarker = createNumMarker(point, 485,'2010-09-02 20:47:57 GMT
6° 31′ 8″ N   10° 46′ 40″ E
Altitude: 13,449.3 feet, 4,099.4 m
Speed: 163 knots, 301 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(6.77, 10.69389); points.push(point); pmarker = createNumMarker(point, 486,'2010-09-02 20:53:53 GMT
6° 46′ 11″ N   10° 41′ 38″ E
Altitude: 13,474.3 feet, 4,107.0 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(7.02, 10.61028); points.push(point); pmarker = createNumMarker(point, 487,'2010-09-02 20:59:55 GMT
7° 1′ 11″ N   10° 36′ 37″ E
Altitude: 13,474.3 feet, 4,107.0 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(7.286111, 10.51722); points.push(point); pmarker = createNumMarker(point, 488,'2010-09-02 21:05:57 GMT
7° 17′ 9″ N   10° 31′ 1″ E
Altitude: 13,174.4 feet, 4,015.5 m
Speed: 168 knots, 310 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(7.537778, 10.42861); points.push(point); pmarker = createNumMarker(point, 489,'2010-09-02 21:11:51 GMT
7° 32′ 16″ N   10° 25′ 42″ E
Altitude: 13,174.4 feet, 4,015.5 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(7.795833, 10.33694); points.push(point); pmarker = createNumMarker(point, 490,'2010-09-02 21:17:53 GMT
7° 47′ 44″ N   10° 20′ 12″ E
Altitude: 12,699.4 feet, 3,870.8 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(8.298611, 10.15889); points.push(point); pmarker = createNumMarker(point, 491,'2010-09-02 21:29:55 GMT
8° 17′ 54″ N   10° 9′ 32″ E
Altitude: 12,699.4 feet, 3,870.8 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(8.536389, 10.07528); points.push(point); pmarker = createNumMarker(point, 492,'2010-09-02 21:35:55 GMT
8° 32′ 11″ N   10° 4′ 31″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 149 knots, 275 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(8.738334, 10.07389); points.push(point); pmarker = createNumMarker(point, 493,'2010-09-02 21:41:51 GMT
8° 44′ 18″ N   10° 4′ 26″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 124 knots, 230 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(8.960834, 10.08556); points.push(point); pmarker = createNumMarker(point, 494,'2010-09-02 21:47:53 GMT
8° 57′ 39″ N   10° 5′ 8″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 158 knots, 293 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(9.216666, 9.994166); points.push(point); pmarker = createNumMarker(point, 495,'2010-09-02 21:53:53 GMT
9° 12′ 59″ N   9° 59′ 38″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(9.473611, 9.903055); points.push(point); pmarker = createNumMarker(point, 496,'2010-09-02 21:59:51 GMT
9° 28′ 24″ N   9° 54′ 10″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 169 knots, 313 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(9.731667, 9.8525); points.push(point); pmarker = createNumMarker(point, 497,'2010-09-02 22:05:53 GMT
9° 43′ 54″ N   9° 51′ 8″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(10.01194, 9.759722); points.push(point); pmarker = createNumMarker(point, 498,'2010-09-02 22:11:55 GMT
10° 0′ 42″ N   9° 45′ 34″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 179 knots, 331 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(10.2975, 9.655); points.push(point); pmarker = createNumMarker(point, 499,'2010-09-02 22:17:55 GMT
10° 17′ 50″ N   9° 39′ 17″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 183 knots, 338 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(10.58028, 9.548056); points.push(point); pmarker = createNumMarker(point, 500,'2010-09-02 22:23:52 GMT
10° 34′ 49″ N   9° 32′ 53″ E
Altitude: 12,724.4 feet, 3,878.4 m
Speed: 182 knots, 337 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(10.8675, 9.439167); points.push(point); pmarker = createNumMarker(point, 501,'2010-09-02 22:29:53 GMT
10° 52′ 2″ N   9° 26′ 21″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 183 knots, 339 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(11.15528, 9.328889); points.push(point); pmarker = createNumMarker(point, 502,'2010-09-02 22:35:53 GMT
11° 9′ 19″ N   9° 19′ 44″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 184 knots, 341 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(11.44861, 9.219444); points.push(point); pmarker = createNumMarker(point, 503,'2010-09-02 22:41:55 GMT
11° 26′ 54″ N   9° 13′ 9″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 182 knots, 336 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(11.72611, 9.110833); points.push(point); pmarker = createNumMarker(point, 504,'2010-09-02 22:47:51 GMT
11° 43′ 33″ N   9° 6′ 38″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 181 knots, 335 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(12.01361, 9.000556); points.push(point); pmarker = createNumMarker(point, 505,'2010-09-02 22:53:53 GMT
12° 0′ 48″ N   9° 0′ 2″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 182 knots, 337 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(12.30167, 8.890278); points.push(point); pmarker = createNumMarker(point, 506,'2010-09-02 22:59:55 GMT
12° 18′ 6″ N   8° 53′ 25″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 180 knots, 333 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(12.57917, 8.783055); points.push(point); pmarker = createNumMarker(point, 507,'2010-09-02 23:05:51 GMT
12° 34′ 45″ N   8° 46′ 58″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 183 knots, 339 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(12.86389, 8.673333); points.push(point); pmarker = createNumMarker(point, 508,'2010-09-02 23:11:53 GMT
12° 51′ 50″ N   8° 40′ 23″ E
Altitude: 12,749.4 feet, 3,886.0 m
Speed: 179 knots, 332 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(13.14361, 8.565278); points.push(point); pmarker = createNumMarker(point, 509,'2010-09-02 23:17:53 GMT
13° 8′ 36″ N   8° 33′ 55″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 178 knots, 329 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(13.42139, 8.457778); points.push(point); pmarker = createNumMarker(point, 510,'2010-09-02 23:23:51 GMT
13° 25′ 17″ N   8° 27′ 28″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 176 knots, 325 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(13.69917, 8.349722); points.push(point); pmarker = createNumMarker(point, 511,'2010-09-02 23:29:53 GMT
13° 41′ 57″ N   8° 20′ 58″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 179 knots, 331 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(13.98306, 8.307777); points.push(point); pmarker = createNumMarker(point, 512,'2010-09-02 23:35:53 GMT
13° 58′ 59″ N   8° 18′ 27″ E
Altitude: 12,774.4 feet, 3,893.6 m
Speed: 171 knots, 317 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(14.27, 8.280278); points.push(point); pmarker = createNumMarker(point, 513,'2010-09-02 23:41:55 GMT
14° 16′ 11″ N   8° 16′ 49″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 165 knots, 306 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(14.54472, 8.253889); points.push(point); pmarker = createNumMarker(point, 514,'2010-09-02 23:47:55 GMT
14° 32′ 40″ N   8° 15′ 14″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(14.81417, 8.201111); points.push(point); pmarker = createNumMarker(point, 515,'2010-09-02 23:53:51 GMT
14° 48′ 51″ N   8° 12′ 3″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 174 knots, 321 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(15.09361, 8.120556); points.push(point); pmarker = createNumMarker(point, 516,'2010-09-02 23:59:55 GMT
15° 5′ 36″ N   8° 7′ 14″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(15.36111, 8.040277); points.push(point); pmarker = createNumMarker(point, 517,'2010-09-03 00:05:51 GMT
15° 21′ 39″ N   8° 2′ 24″ E
Altitude: 12,799.4 feet, 3,901.3 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(15.6275, 7.961667); points.push(point); pmarker = createNumMarker(point, 518,'2010-09-03 00:11:53 GMT
15° 37′ 38″ N   7° 57′ 42″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 169 knots, 312 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(15.89861, 7.881111); points.push(point); pmarker = createNumMarker(point, 519,'2010-09-03 00:17:55 GMT
15° 53′ 54″ N   7° 52′ 51″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(16.15556, 7.804722); points.push(point); pmarker = createNumMarker(point, 520,'2010-09-03 00:23:51 GMT
16° 9′ 20″ N   7° 48′ 16″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(16.41972, 7.726389); points.push(point); pmarker = createNumMarker(point, 521,'2010-09-03 00:29:53 GMT
16° 25′ 10″ N   7° 43′ 35″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(16.68306, 7.679722); points.push(point); pmarker = createNumMarker(point, 522,'2010-09-03 00:35:54 GMT
16° 40′ 59″ N   7° 40′ 46″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(16.93806, 7.576111); points.push(point); pmarker = createNumMarker(point, 523,'2010-09-03 00:41:55 GMT
16° 56′ 17″ N   7° 34′ 33″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 167 knots, 309 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(17.18583, 7.500834); points.push(point); pmarker = createNumMarker(point, 524,'2010-09-03 00:47:53 GMT
17° 11′ 8″ N   7° 30′ 3″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(17.4625, 7.419722); points.push(point); pmarker = createNumMarker(point, 525,'2010-09-03 00:53:55 GMT
17° 27′ 44″ N   7° 25′ 10″ E
Altitude: 12,849.4 feet, 3,916.5 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(17.72694, 7.333055); points.push(point); pmarker = createNumMarker(point, 526,'2010-09-03 00:59:55 GMT
17° 43′ 36″ N   7° 19′ 58″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 170 knots, 314 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(17.99528, 7.251667); points.push(point); pmarker = createNumMarker(point, 527,'2010-09-03 01:05:51 GMT
17° 59′ 43″ N   7° 15′ 6″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 170 knots, 314 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(18.27111, 7.168334); points.push(point); pmarker = createNumMarker(point, 528,'2010-09-03 01:11:53 GMT
18° 16′ 15″ N   7° 10′ 6″ E
Altitude: 12,899.4 feet, 3,931.7 m
Speed: 171 knots, 317 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(18.55194, 7.084167); points.push(point); pmarker = createNumMarker(point, 529,'2010-09-03 01:17:55 GMT
18° 33′ 6″ N   7° 5′ 3″ E
Altitude: 12,899.4 feet, 3,931.7 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(18.8175, 7.037778); points.push(point); pmarker = createNumMarker(point, 530,'2010-09-03 01:23:51 GMT
18° 49′ 2″ N   7° 2′ 16″ E
Altitude: 12,899.4 feet, 3,931.7 m
Speed: 158 knots, 292 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(19.08306, 6.973611); points.push(point); pmarker = createNumMarker(point, 531,'2010-09-03 01:29:54 GMT
19° 4′ 59″ N   6° 58′ 24″ E
Altitude: 12,899.4 feet, 3,931.7 m
Speed: 166 knots, 307 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(19.34889, 6.878056); points.push(point); pmarker = createNumMarker(point, 532,'2010-09-03 01:35:54 GMT
19° 20′ 56″ N   6° 52′ 41″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 169 knots, 313 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(19.62194, 6.780833); points.push(point); pmarker = createNumMarker(point, 533,'2010-09-03 01:41:56 GMT
19° 37′ 18″ N   6° 46′ 50″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(19.89528, 6.680555); points.push(point); pmarker = createNumMarker(point, 534,'2010-09-03 01:47:53 GMT
19° 53′ 43″ N   6° 40′ 49″ E
Altitude: 12,824.4 feet, 3,908.9 m
Speed: 181 knots, 335 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(20.15583, 6.714722); points.push(point); pmarker = createNumMarker(point, 535,'2010-09-03 01:53:53 GMT
20° 9′ 20″ N   6° 42′ 52″ E
Altitude: 12,849.4 feet, 3,916.5 m
Speed: 174 knots, 321 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(20.43639, 6.606111); points.push(point); pmarker = createNumMarker(point, 536,'2010-09-03 01:59:56 GMT
20° 26′ 11″ N   6° 36′ 21″ E
Altitude: 12,849.4 feet, 3,916.5 m
Speed: 177 knots, 327 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(20.70833, 6.481667); points.push(point); pmarker = createNumMarker(point, 537,'2010-09-03 02:05:52 GMT
20° 42′ 29″ N   6° 28′ 54″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 178 knots, 330 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(20.98333, 6.361667); points.push(point); pmarker = createNumMarker(point, 538,'2010-09-03 02:11:53 GMT
20° 58′ 59″ N   6° 21′ 42″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 176 knots, 326 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(21.25306, 6.233333); points.push(point); pmarker = createNumMarker(point, 539,'2010-09-03 02:17:55 GMT
21° 15′ 11″ N   6° 13′ 59″ E
Altitude: 12,874.4 feet, 3,924.1 m
Speed: 175 knots, 324 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(21.51306, 6.109167); points.push(point); pmarker = createNumMarker(point, 540,'2010-09-03 02:23:56 GMT
21° 30′ 47″ N   6° 6′ 33″ E
Altitude: 12,574.4 feet, 3,832.7 m
Speed: 157 knots, 291 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(21.76167, 5.990278); points.push(point); pmarker = createNumMarker(point, 541,'2010-09-03 02:29:57 GMT
21° 45′ 42″ N   5° 59′ 25″ E
Altitude: 11,874.4 feet, 3,619.3 m
Speed: 170 knots, 315 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.00472, 5.870555); points.push(point); pmarker = createNumMarker(point, 542,'2010-09-03 02:35:54 GMT
22° 0′ 16″ N   5° 52′ 13″ E
Altitude: 11,774.4 feet, 3,588.8 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.24389, 5.754445); points.push(point); pmarker = createNumMarker(point, 543,'2010-09-03 02:41:54 GMT
22° 14′ 38″ N   5° 45′ 16″ E
Altitude: 11,799.4 feet, 3,596.5 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.49694, 5.634722); points.push(point); pmarker = createNumMarker(point, 544,'2010-09-03 02:47:56 GMT
22° 29′ 48″ N   5° 38′ 4″ E
Altitude: 11,799.4 feet, 3,596.5 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.65861, 5.444445); points.push(point); pmarker = createNumMarker(point, 545,'2010-09-03 02:53:52 GMT
22° 39′ 30″ N   5° 26′ 40″ E
Altitude: 10,824.5 feet, 3,299.3 m
Speed: 152 knots, 282 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.80305, 5.446944); points.push(point); pmarker = createNumMarker(point, 546,'2010-09-03 02:58:30 GMT
22° 48′ 10″ N   5° 26′ 48″ E
Altitude: 4,399.8 feet, 1,341.1 m
Speed: 41 knots, 76 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.80833, 5.449444); points.push(point); pmarker = createNumMarker(point, 547,'2010-09-03 02:59:53 GMT
22° 48′ 29″ N   5° 26′ 57″ E
Altitude: 4,474.8 feet, 1,363.9 m
Speed: 11 knots, 21 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.81417, 5.448889); points.push(point); pmarker = createNumMarker(point, 548,'2010-09-03 03:04:03 GMT
22° 48′ 51″ N   5° 26′ 56″ E
Altitude: 4,474.8 feet, 1,363.9 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.81417, 5.448889); points.push(point); pmarker = createNumMarker(point, 549,'2010-09-03 03:04:27 GMT
22° 48′ 51″ N   5° 26′ 56″ E
Altitude: 4,399.8 feet, 1,341.1 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.81417, 5.448889); points.push(point); pmarker = createNumMarker(point, 550,'2010-09-03 04:42:09 GMT
22° 48′ 51″ N   5° 26′ 56″ E
Altitude: 4,474.8 feet, 1,363.9 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.81417, 5.448889); points.push(point); pmarker = createNumMarker(point, 551,'2010-09-03 04:47:55 GMT
22° 48′ 51″ N   5° 26′ 56″ E
Altitude: 4,499.8 feet, 1,371.5 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.81444, 5.450833); points.push(point); pmarker = createNumMarker(point, 552,'2010-09-03 04:53:55 GMT
22° 48′ 51″ N   5° 27′ 2″ E
Altitude: 4,499.8 feet, 1,371.5 m
Speed: 6 knots, 11 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.82611, 5.4575); points.push(point); pmarker = createNumMarker(point, 553,'2010-09-03 04:59:55 GMT
22° 49′ 33″ N   5° 27′ 26″ E
Altitude: 4,524.8 feet, 1,379.2 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.82195, 5.455278); points.push(point); pmarker = createNumMarker(point, 554,'2010-09-03 05:00:10 GMT
22° 49′ 19″ N   5° 27′ 19″ E
Altitude: 4,399.8 feet, 1,341.1 m
Speed: 67 knots, 124 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.82, 5.454722); points.push(point); pmarker = createNumMarker(point, 555,'2010-09-03 05:00:15 GMT
22° 49′ 12″ N   5° 27′ 16″ E
Altitude: 4,399.8 feet, 1,341.1 m
Speed: 80 knots, 148 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(22.9275, 5.383611); points.push(point); pmarker = createNumMarker(point, 556,'2010-09-03 05:05:55 GMT
22° 55′ 38″ N   5° 23′ 0″ E
Altitude: 6,349.7 feet, 1,935.4 m
Speed: 172 knots, 319 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(23.18778, 5.333333); points.push(point); pmarker = createNumMarker(point, 557,'2010-09-03 05:11:52 GMT
23° 11′ 16″ N   5° 19′ 59″ E
Altitude: 7,324.6 feet, 2,232.6 m
Speed: 158 knots, 293 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(23.44555, 5.299445); points.push(point); pmarker = createNumMarker(point, 558,'2010-09-03 05:17:53 GMT
23° 26′ 43″ N   5° 17′ 58″ E
Altitude: 8,599.6 feet, 2,621.2 m
Speed: 148 knots, 273 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(23.69083, 5.261944); points.push(point); pmarker = createNumMarker(point, 559,'2010-09-03 05:23:55 GMT
23° 41′ 26″ N   5° 15′ 42″ E
Altitude: 10,099.5 feet, 3,078.3 m
Speed: 146 knots, 271 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(23.94278, 5.221667); points.push(point); pmarker = createNumMarker(point, 560,'2010-09-03 05:29:51 GMT
23° 56′ 34″ N   5° 13′ 18″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(24.20889, 5.178333); points.push(point); pmarker = createNumMarker(point, 561,'2010-09-03 05:35:55 GMT
24° 12′ 32″ N   5° 10′ 41″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 157 knots, 291 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(24.47305, 5.138055); points.push(point); pmarker = createNumMarker(point, 562,'2010-09-03 05:41:51 GMT
24° 28′ 22″ N   5° 8′ 16″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 164 knots, 304 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(24.73583, 5.096111); points.push(point); pmarker = createNumMarker(point, 563,'2010-09-03 05:47:53 GMT
24° 44′ 8″ N   5° 5′ 45″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(25.02028, 5.050833); points.push(point); pmarker = createNumMarker(point, 564,'2010-09-03 05:53:55 GMT
25° 1′ 13″ N   5° 3′ 2″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 164 knots, 303 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(25.28528, 5.007778); points.push(point); pmarker = createNumMarker(point, 565,'2010-09-03 05:59:51 GMT
25° 17′ 7″ N   5° 0′ 28″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(25.55667, 4.964167); points.push(point); pmarker = createNumMarker(point, 566,'2010-09-03 06:05:55 GMT
25° 33′ 24″ N   4° 57′ 51″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(25.82222, 4.920833); points.push(point); pmarker = createNumMarker(point, 567,'2010-09-03 06:11:51 GMT
25° 49′ 19″ N   4° 55′ 14″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(26.0925, 4.877222); points.push(point); pmarker = createNumMarker(point, 568,'2010-09-03 06:17:51 GMT
26° 5′ 33″ N   4° 52′ 37″ E
Altitude: 10,524.5 feet, 3,207.9 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(26.3625, 4.832222); points.push(point); pmarker = createNumMarker(point, 569,'2010-09-03 06:23:53 GMT
26° 21′ 45″ N   4° 49′ 55″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(26.63639, 4.787222); points.push(point); pmarker = createNumMarker(point, 570,'2010-09-03 06:29:54 GMT
26° 38′ 11″ N   4° 47′ 13″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(26.89333, 4.743889); points.push(point); pmarker = createNumMarker(point, 571,'2010-09-03 06:35:53 GMT
26° 53′ 35″ N   4° 44′ 38″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(27.38889, 4.661667); points.push(point); pmarker = createNumMarker(point, 572,'2010-09-03 06:47:51 GMT
27° 23′ 20″ N   4° 39′ 42″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 150 knots, 278 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(27.63917, 4.62); points.push(point); pmarker = createNumMarker(point, 573,'2010-09-03 06:53:53 GMT
27° 38′ 21″ N   4° 37′ 12″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 151 knots, 279 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(27.88694, 4.578333); points.push(point); pmarker = createNumMarker(point, 574,'2010-09-03 06:59:53 GMT
27° 53′ 12″ N   4° 34′ 41″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 152 knots, 281 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(28.14361, 4.534722); points.push(point); pmarker = createNumMarker(point, 575,'2010-09-03 07:05:55 GMT
28° 8′ 36″ N   4° 32′ 4″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 154 knots, 285 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(28.39778, 4.491389); points.push(point); pmarker = createNumMarker(point, 576,'2010-09-03 07:11:55 GMT
28° 23′ 52″ N   4° 29′ 29″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 155 knots, 286 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(28.65167, 4.4475); points.push(point); pmarker = createNumMarker(point, 577,'2010-09-03 07:17:51 GMT
28° 39′ 6″ N   4° 26′ 50″ E
Altitude: 10,599.5 feet, 3,230.7 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(28.91472, 4.400833); points.push(point); pmarker = createNumMarker(point, 578,'2010-09-03 07:23:53 GMT
28° 54′ 52″ N   4° 24′ 2″ E
Altitude: 10,599.5 feet, 3,230.7 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(29.17639, 4.354722); points.push(point); pmarker = createNumMarker(point, 579,'2010-09-03 07:29:53 GMT
29° 10′ 35″ N   4° 21′ 16″ E
Altitude: 10,599.5 feet, 3,230.7 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(29.44555, 4.3075); points.push(point); pmarker = createNumMarker(point, 580,'2010-09-03 07:35:55 GMT
29° 26′ 43″ N   4° 18′ 27″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(29.65611, 4.2275); points.push(point); pmarker = createNumMarker(point, 581,'2010-09-03 07:41:51 GMT
29° 39′ 21″ N   4° 13′ 39″ E
Altitude: 11,449.4 feet, 3,489.8 m
Speed: 185 knots, 342 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(29.94833, 4.1925); points.push(point); pmarker = createNumMarker(point, 582,'2010-09-03 07:47:53 GMT
29° 56′ 53″ N   4° 11′ 32″ E
Altitude: 10,674.5 feet, 3,253.6 m
Speed: 168 knots, 310 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(30.23, 4.145833); points.push(point); pmarker = createNumMarker(point, 583,'2010-09-03 07:53:55 GMT
30° 13′ 48″ N   4° 8′ 44″ E
Altitude: 10,674.5 feet, 3,253.6 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(30.50222, 4.100555); points.push(point); pmarker = createNumMarker(point, 584,'2010-09-03 07:59:51 GMT
30° 30′ 7″ N   4° 6′ 1″ E
Altitude: 10,674.5 feet, 3,253.6 m
Speed: 169 knots, 312 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(30.77667, 4.054444); points.push(point); pmarker = createNumMarker(point, 585,'2010-09-03 08:05:51 GMT
30° 46′ 36″ N   4° 3′ 15″ E
Altitude: 10,674.5 feet, 3,253.6 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(31.04917, 4.068056); points.push(point); pmarker = createNumMarker(point, 586,'2010-09-03 08:11:53 GMT
31° 2′ 57″ N   4° 4′ 5″ E
Altitude: 10,649.5 feet, 3,246.0 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(31.29556, 4.0475); points.push(point); pmarker = createNumMarker(point, 587,'2010-09-03 08:17:55 GMT
31° 17′ 44″ N   4° 2′ 51″ E
Altitude: 10,624.5 feet, 3,238.3 m
Speed: 143 knots, 264 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(31.54417, 3.962778); points.push(point); pmarker = createNumMarker(point, 588,'2010-09-03 08:23:51 GMT
31° 32′ 39″ N   3° 57′ 46″ E
Altitude: 10,624.5 feet, 3,238.3 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(31.81972, 3.903056); points.push(point); pmarker = createNumMarker(point, 589,'2010-09-03 08:29:51 GMT
31° 49′ 10″ N   3° 54′ 11″ E
Altitude: 10,599.5 feet, 3,230.7 m
Speed: 170 knots, 315 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(32.10444, 3.840833); points.push(point); pmarker = createNumMarker(point, 590,'2010-09-03 08:35:53 GMT
32° 6′ 15″ N   3° 50′ 26″ E
Altitude: 10,599.5 feet, 3,230.7 m
Speed: 174 knots, 321 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(32.38889, 3.779167); points.push(point); pmarker = createNumMarker(point, 591,'2010-09-03 08:41:55 GMT
32° 23′ 20″ N   3° 46′ 45″ E
Altitude: 10,599.5 feet, 3,230.7 m
Speed: 168 knots, 310 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(32.67667, 3.833611); points.push(point); pmarker = createNumMarker(point, 592,'2010-09-03 08:47:53 GMT
32° 40′ 36″ N   3° 50′ 0″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 178 knots, 329 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(32.97111, 3.891111); points.push(point); pmarker = createNumMarker(point, 593,'2010-09-03 08:53:53 GMT
32° 58′ 15″ N   3° 53′ 27″ E
Altitude: 10,574.5 feet, 3,223.1 m
Speed: 183 knots, 338 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(33.27889, 3.952222); points.push(point); pmarker = createNumMarker(point, 594,'2010-09-03 08:59:55 GMT
33° 16′ 44″ N   3° 57′ 7″ E
Altitude: 10,549.5 feet, 3,215.5 m
Speed: 184 knots, 340 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(33.57917, 4.011944); points.push(point); pmarker = createNumMarker(point, 595,'2010-09-03 09:05:53 GMT
33° 34′ 45″ N   4° 0′ 42″ E
Altitude: 10,524.5 feet, 3,207.9 m
Speed: 188 knots, 347 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(33.88778, 4.071944); points.push(point); pmarker = createNumMarker(point, 596,'2010-09-03 09:11:55 GMT
33° 53′ 16″ N   4° 4′ 18″ E
Altitude: 10,524.5 feet, 3,207.9 m
Speed: 183 knots, 338 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(34.18, 4.1325); points.push(point); pmarker = createNumMarker(point, 597,'2010-09-03 09:17:51 GMT
34° 10′ 47″ N   4° 7′ 57″ E
Altitude: 10,524.5 feet, 3,207.9 m
Speed: 179 knots, 331 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(34.47028, 4.190278); points.push(point); pmarker = createNumMarker(point, 598,'2010-09-03 09:23:52 GMT
34° 28′ 13″ N   4° 11′ 25″ E
Altitude: 10,499.5 feet, 3,200.2 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(34.75611, 4.2475); points.push(point); pmarker = createNumMarker(point, 599,'2010-09-03 09:29:53 GMT
34° 45′ 21″ N   4° 14′ 50″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 174 knots, 321 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(35.03305, 4.303056); points.push(point); pmarker = createNumMarker(point, 600,'2010-09-03 09:35:53 GMT
35° 1′ 58″ N   4° 18′ 11″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 165 knots, 305 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(35.30778, 4.358333); points.push(point); pmarker = createNumMarker(point, 601,'2010-09-03 09:41:54 GMT
35° 18′ 28″ N   4° 21′ 29″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(35.56778, 4.339722); points.push(point); pmarker = createNumMarker(point, 602,'2010-09-03 09:47:55 GMT
35° 34′ 4″ N   4° 20′ 22″ E
Altitude: 10,449.5 feet, 3,185.0 m
Speed: 157 knots, 290 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(35.57555, 4.337222); points.push(point); pmarker = createNumMarker(point, 603,'2010-09-03 09:48:22 GMT
35° 34′ 31″ N   4° 20′ 13″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(36.03861, 4.049722); points.push(point); pmarker = createNumMarker(point, 604,'2010-09-03 09:59:54 GMT
36° 2′ 18″ N   4° 2′ 58″ E
Altitude: 10,449.5 feet, 3,185.0 m
Speed: 157 knots, 291 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(36.28417, 3.919167); points.push(point); pmarker = createNumMarker(point, 605,'2010-09-03 10:05:55 GMT
36° 17′ 3″ N   3° 55′ 9″ E
Altitude: 10,374.5 feet, 3,162.1 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(36.52555, 3.801944); points.push(point); pmarker = createNumMarker(point, 606,'2010-09-03 10:11:53 GMT
36° 31′ 31″ N   3° 48′ 6″ E
Altitude: 10,474.5 feet, 3,192.6 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(36.77611, 3.671111); points.push(point); pmarker = createNumMarker(point, 607,'2010-09-03 10:17:55 GMT
36° 46′ 33″ N   3° 40′ 15″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(37.02306, 3.573611); points.push(point); pmarker = createNumMarker(point, 608,'2010-09-03 10:23:51 GMT
37° 1′ 23″ N   3° 34′ 24″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 158 knots, 293 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(37.28028, 3.488611); points.push(point); pmarker = createNumMarker(point, 609,'2010-09-03 10:29:53 GMT
37° 16′ 49″ N   3° 29′ 18″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(37.54417, 3.400556); points.push(point); pmarker = createNumMarker(point, 610,'2010-09-03 10:35:55 GMT
37° 32′ 39″ N   3° 24′ 2″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(38.05528, 3.227222); points.push(point); pmarker = createNumMarker(point, 611,'2010-09-03 10:47:52 GMT
38° 3′ 19″ N   3° 13′ 37″ E
Altitude: 10,399.5 feet, 3,169.8 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(38.31639, 3.188889); points.push(point); pmarker = createNumMarker(point, 612,'2010-09-03 10:53:55 GMT
38° 18′ 59″ N   3° 11′ 20″ E
Altitude: 10,449.5 feet, 3,185.0 m
Speed: 155 knots, 286 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(38.59389, 3.188611); points.push(point); pmarker = createNumMarker(point, 613,'2010-09-03 10:59:56 GMT
38° 35′ 38″ N   3° 11′ 18″ E
Altitude: 8,924.6 feet, 2,720.2 m
Speed: 165 knots, 306 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(38.85611, 3.187778); points.push(point); pmarker = createNumMarker(point, 614,'2010-09-03 11:05:53 GMT
38° 51′ 21″ N   3° 11′ 16″ E
Altitude: 8,274.6 feet, 2,522.1 m
Speed: 158 knots, 292 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(39.11722, 3.191389); points.push(point); pmarker = createNumMarker(point, 615,'2010-09-03 11:11:55 GMT
39° 7′ 1″ N   3° 11′ 29″ E
Altitude: 8,374.6 feet, 2,552.6 m
Speed: 152 knots, 282 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(39.37222, 3.193056); points.push(point); pmarker = createNumMarker(point, 616,'2010-09-03 11:17:51 GMT
39° 22′ 19″ N   3° 11′ 35″ E
Altitude: 8,349.6 feet, 2,545.0 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(39.63028, 3.199167); points.push(point); pmarker = createNumMarker(point, 617,'2010-09-03 11:23:53 GMT
39° 37′ 49″ N   3° 11′ 57″ E
Altitude: 8,299.6 feet, 2,529.7 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(39.89222, 3.299167); points.push(point); pmarker = createNumMarker(point, 618,'2010-09-03 11:29:53 GMT
39° 53′ 31″ N   3° 17′ 57″ E
Altitude: 6,224.7 feet, 1,897.3 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(40.14972, 3.289722); points.push(point); pmarker = createNumMarker(point, 619,'2010-09-03 11:35:55 GMT
40° 8′ 58″ N   3° 17′ 22″ E
Altitude: 6,249.7 feet, 1,904.9 m
Speed: 149 knots, 275 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(40.40111, 3.279167); points.push(point); pmarker = createNumMarker(point, 620,'2010-09-03 11:41:56 GMT
40° 24′ 3″ N   3° 16′ 45″ E
Altitude: 6,274.7 feet, 1,912.5 m
Speed: 152 knots, 282 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(40.65333, 3.267778); points.push(point); pmarker = createNumMarker(point, 621,'2010-09-03 11:47:52 GMT
40° 39′ 11″ N   3° 16′ 4″ E
Altitude: 6,249.7 feet, 1,904.9 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(40.91472, 3.255556); points.push(point); pmarker = createNumMarker(point, 622,'2010-09-03 11:53:54 GMT
40° 54′ 52″ N   3° 15′ 20″ E
Altitude: 6,274.7 feet, 1,912.5 m
Speed: 155 knots, 287 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(41.17222, 3.243889); points.push(point); pmarker = createNumMarker(point, 623,'2010-09-03 11:59:51 GMT
41° 10′ 19″ N   3° 14′ 38″ E
Altitude: 6,274.7 feet, 1,912.5 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(41.43389, 3.231945); points.push(point); pmarker = createNumMarker(point, 624,'2010-09-03 12:05:53 GMT
41° 26′ 2″ N   3° 13′ 55″ E
Altitude: 6,274.7 feet, 1,912.5 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(41.69389, 3.22); points.push(point); pmarker = createNumMarker(point, 625,'2010-09-03 12:11:55 GMT
41° 41′ 38″ N   3° 13′ 12″ E
Altitude: 6,274.7 feet, 1,912.5 m
Speed: 152 knots, 282 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(41.94944, 3.212222); points.push(point); pmarker = createNumMarker(point, 626,'2010-09-03 12:17:55 GMT
41° 56′ 57″ N   3° 12′ 43″ E
Altitude: 6,199.7 feet, 1,889.7 m
Speed: 162 knots, 300 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(42.20611, 3.243611); points.push(point); pmarker = createNumMarker(point, 627,'2010-09-03 12:23:53 GMT
42° 12′ 21″ N   3° 14′ 36″ E
Altitude: 6,199.7 feet, 1,889.7 m
Speed: 157 knots, 290 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(42.44111, 3.123611); points.push(point); pmarker = createNumMarker(point, 628,'2010-09-03 12:29:55 GMT
42° 26′ 27″ N   3° 7′ 24″ E
Altitude: 6,774.7 feet, 2,064.9 m
Speed: 148 knots, 274 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(42.6625, 2.946944); points.push(point); pmarker = createNumMarker(point, 629,'2010-09-03 12:35:51 GMT
42° 39′ 45″ N   2° 56′ 48″ E
Altitude: 6,774.7 feet, 2,064.9 m
Speed: 161 knots, 297 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(42.91333, 2.875833); points.push(point); pmarker = createNumMarker(point, 630,'2010-09-03 12:41:53 GMT
42° 54′ 47″ N   2° 52′ 32″ E
Altitude: 7,724.6 feet, 2,354.5 m
Speed: 163 knots, 302 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(43.17805, 2.823333); points.push(point); pmarker = createNumMarker(point, 631,'2010-09-03 12:47:55 GMT
43° 10′ 40″ N   2° 49′ 23″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(43.42916, 2.767222); points.push(point); pmarker = createNumMarker(point, 632,'2010-09-03 12:53:49 GMT
43° 25′ 44″ N   2° 46′ 1″ E
Altitude: 7,824.6 feet, 2,384.9 m
Speed: 160 knots, 296 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(43.93417, 2.649722); points.push(point); pmarker = createNumMarker(point, 633,'2010-09-03 13:05:51 GMT
43° 56′ 3″ N   2° 38′ 58″ E
Altitude: 8,349.6 feet, 2,545.0 m
Speed: 156 knots, 289 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(44.20167, 2.581111); points.push(point); pmarker = createNumMarker(point, 634,'2010-09-03 13:11:54 GMT
44° 12′ 6″ N   2° 34′ 51″ E
Altitude: 7,724.6 feet, 2,354.5 m
Speed: 168 knots, 311 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(44.41778, 2.394444); points.push(point); pmarker = createNumMarker(point, 635,'2010-09-03 13:17:51 GMT
44° 25′ 4″ N   2° 23′ 39″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 156 knots, 288 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(44.63722, 2.185); points.push(point); pmarker = createNumMarker(point, 636,'2010-09-03 13:23:53 GMT
44° 38′ 13″ N   2° 11′ 6″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 159 knots, 294 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(44.85444, 1.976111); points.push(point); pmarker = createNumMarker(point, 637,'2010-09-03 13:29:53 GMT
44° 51′ 15″ N   1° 58′ 33″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 159 knots, 295 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(45.11444, 1.885833); points.push(point); pmarker = createNumMarker(point, 638,'2010-09-03 13:35:57 GMT
45° 6′ 51″ N   1° 53′ 8″ E
Altitude: 7,999.6 feet, 2,438.3 m
Speed: 162 knots, 299 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(45.3425, 1.691944); points.push(point); pmarker = createNumMarker(point, 639,'2010-09-03 13:41:52 GMT
45° 20′ 33″ N   1° 41′ 30″ E
Altitude: 7,849.6 feet, 2,392.6 m
Speed: 165 knots, 305 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(45.5775, 1.496389); points.push(point); pmarker = createNumMarker(point, 640,'2010-09-03 13:47:51 GMT
45° 34′ 39″ N   1° 29′ 47″ E
Altitude: 7,899.6 feet, 2,407.8 m
Speed: 166 knots, 308 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(45.84389, 1.408611); points.push(point); pmarker = createNumMarker(point, 641,'2010-09-03 13:53:52 GMT
45° 50′ 38″ N   1° 24′ 30″ E
Altitude: 7,874.6 feet, 2,400.2 m
Speed: 167 knots, 309 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(46.12861, 1.297778); points.push(point); pmarker = createNumMarker(point, 642,'2010-09-03 14:00:16 GMT
46° 7′ 42″ N   1° 17′ 52″ E
Altitude: 7,849.6 feet, 2,392.6 m
Speed: 171 knots, 317 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(46.3925, 1.1925); points.push(point); pmarker = createNumMarker(point, 643,'2010-09-03 14:05:50 GMT
46° 23′ 32″ N   1° 11′ 32″ E
Altitude: 7,874.6 feet, 2,400.2 m
Speed: 171 knots, 316 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(46.67472, 1.125278); points.push(point); pmarker = createNumMarker(point, 644,'2010-09-03 14:11:52 GMT
46° 40′ 28″ N   1° 7′ 31″ E
Altitude: 7,874.6 feet, 2,400.2 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(46.96611, 1.136389); points.push(point); pmarker = createNumMarker(point, 645,'2010-09-03 14:17:53 GMT
46° 57′ 57″ N   1° 8′ 11″ E
Altitude: 7,849.6 feet, 2,392.6 m
Speed: 177 knots, 328 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(47.26222, 1.128889); points.push(point); pmarker = createNumMarker(point, 646,'2010-09-03 14:23:54 GMT
47° 15′ 43″ N   1° 7′ 44″ E
Altitude: 7,874.6 feet, 2,400.2 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(47.53722, 1.030833); points.push(point); pmarker = createNumMarker(point, 647,'2010-09-03 14:29:51 GMT
47° 32′ 13″ N   1° 1′ 50″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(47.81833, 0.92); points.push(point); pmarker = createNumMarker(point, 648,'2010-09-03 14:35:52 GMT
47° 49′ 5″ N   0° 55′ 12″ E
Altitude: 7,749.6 feet, 2,362.1 m
Speed: 175 knots, 324 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(48.10083, 0.8083333); points.push(point); pmarker = createNumMarker(point, 649,'2010-09-03 14:41:54 GMT
48° 6′ 2″ N   0° 48′ 29″ E
Altitude: 7,774.6 feet, 2,369.7 m
Speed: 176 knots, 325 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(48.3875, 0.6952778); points.push(point); pmarker = createNumMarker(point, 650,'2010-09-03 14:47:54 GMT
48° 23′ 15″ N   0° 41′ 43″ E
Altitude: 7,774.6 feet, 2,369.7 m
Speed: 175 knots, 323 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(48.66222, 0.5816666); points.push(point); pmarker = createNumMarker(point, 651,'2010-09-03 14:53:52 GMT
48° 39′ 43″ N   0° 34′ 53″ E
Altitude: 7,774.6 feet, 2,369.7 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(48.94778, 0.5677778); points.push(point); pmarker = createNumMarker(point, 652,'2010-09-03 14:59:52 GMT
48° 56′ 52″ N   0° 34′ 4″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 174 knots, 321 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(49.52028, 0.5969445); points.push(point); pmarker = createNumMarker(point, 653,'2010-09-03 15:11:50 GMT
49° 31′ 13″ N   0° 35′ 49″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 172 knots, 318 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(49.80667, 0.6119444); points.push(point); pmarker = createNumMarker(point, 654,'2010-09-03 15:17:52 GMT
49° 48′ 24″ N   0° 36′ 42″ E
Altitude: 7,799.6 feet, 2,377.3 m
Speed: 173 knots, 320 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(50.09694, 0.6227778); points.push(point); pmarker = createNumMarker(point, 655,'2010-09-03 15:23:54 GMT
50° 5′ 48″ N   0° 37′ 22″ E
Altitude: 7,824.6 feet, 2,384.9 m
Speed: 171 knots, 317 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(50.38833, 0.6422222); points.push(point); pmarker = createNumMarker(point, 656,'2010-09-03 15:29:54 GMT
50° 23′ 17″ N   0° 38′ 31″ E
Altitude: 7,049.7 feet, 2,148.7 m
Speed: 182 knots, 336 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(50.97556, 0.7352778); points.push(point); pmarker = createNumMarker(point, 657,'2010-09-03 15:41:52 GMT
50° 58′ 32″ N   0° 44′ 7″ E
Altitude: 3,624.8 feet, 1,104.8 m
Speed: 179 knots, 332 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(51.26056, 0.79); points.push(point); pmarker = createNumMarker(point, 658,'2010-09-03 15:47:52 GMT
51° 15′ 38″ N   0° 47′ 24″ E
Altitude: 2,724.9 feet, 830.5 m
Speed: 174 knots, 322 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(51.56722, 0.7075); points.push(point); pmarker = createNumMarker(point, 659,'2010-09-03 15:53:54 GMT
51° 34′ 1″ N   0° 42′ 27″ E
Altitude: 200.0 feet, 61.0 m
Speed: 204 knots, 377 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(51.56805, 0.6886111); points.push(point); pmarker = createNumMarker(point, 660,'2010-09-03 15:57:57 GMT
51° 34′ 4″ N   0° 41′ 18″ E
Altitude: 0.0 feet, 0.0 m
Speed: 43 knots, 80 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(51.57084, 0.7005556); points.push(point); pmarker = createNumMarker(point, 661,'2010-09-03 15:59:24 GMT
51° 34′ 15″ N   0° 42′ 2″ E
Altitude: 0.0 feet, 0.0 m
Speed: 0 knots, 0 km/h
'); pointmarkers.push(pmarker); point = new GLatLng(51.57056, 0.7005556); points.push(point); dirnmarker = createDirnMarker(point, 'S', 180); markers.push(dirnmarker); planemarker = createPlaneMarker(point, 662, 'S', '2010-09-03 15:59:50 GMT
51° 34′ 14″ N   0° 42′ 2″ E
Altitude: 0.0 feet, 0.0 m
Speed: 0 knots, 0 km/h
'); map.addOverlay(planemarker); markers.push(planemarker); geocoder.getLocations(point, getAddress); if (x = findObj("spanLatest")) { x.innerHTML = "2010-09-03 15:59:50 GMT
51° 34′ 14″ N   0° 42′ 2″ E
Altitude: 0.0 feet, 0.0 m
Speed: 0 knots, 0 km/h
"; } startmarker = createStartMarker(new GLatLng(51.571388888889, 0.69555555555556), 663,'Starting point, leg 2: Southend Airport, London'); map.addOverlay(startmarker); markers.push(startmarker); endmarker = createEndMarker(new GLatLng(-33.98, 18.6064), 663,'Destination: Cape Town, South Africa'); map.addOverlay(endmarker); markers.push(endmarker); fuelmarker = createStopMarker(new GLatLng(-4.25166667, 15.25277778), 664, 'Refuelling at Brazzaville'); map.addOverlay(fuelmarker); markers.push(fuelmarker); fuelmarker = createStopMarker(new GLatLng(22.811111, 5.450833), 665, 'Refuelling at Tamanrasset'); map.addOverlay(fuelmarker); markers.push(fuelmarker); chlmarker = createChalkieMarker(new GLatLng(51.571733333333, 0.69605333333333), '
A computer simulation of Chalkie Stobbart\'s
location: this is where Chalkie
would have been now if he had left Southend
at the same time as Steve, as per
the GPS tracking data of Chalkie\'s flight.'); if (chlmarker) { markers.push(chlmarker); map.addOverlay(chlmarker); } mgr.addMarkers(pointmarkers, 5); pline = new GPolyline(points); map.addOverlay(pline); pline = new GPolyline(oldpoints, "#FF0000"); map.addOverlay(pline); map.addOverlay(dirnmarker); mgr.refresh(); // var GLLB = new GLatLngBounds(points[0], new GLatLng(points[0].lat()+0.001, points[0].lng()+0.001)); var GLLB = new GLatLngBounds(new GLatLng(51.571388888889, 0.69555555555556), new GLatLng(51.572388888889, 0.69655555555556)); // extend to destination GLLB.extend(new GLatLng(-33.98, 18.6064)); var CenterPoint = GLLB.getCenter(); var ZoomLevel = map.getBoundsZoomLevel(GLLB); map.setCenter(CenterPoint, ZoomLevel, G_HYBRID_MAP); RestartTimer(); } function RefreshPoints() { var ajaxIndex = dynamicContent_ajaxObjects.length; if (x = findObj("spanStatus")) { x.innerHTML = "Retrieving latest data ..."; } clearTimeout(t); dynamicContent_ajaxObjects[ajaxIndex] = new sack(); dynamicContent_ajaxObjects[ajaxIndex].requestFile = 'redraw_markers.php?lastid=1471'; dynamicContent_ajaxObjects[ajaxIndex].execute = true; dynamicContent_ajaxObjects[ajaxIndex].runAJAX(); } function RestartTimer() { t=setTimeout("RefreshPoints()",300000); if (x = findObj("spanStatus")) { x.innerHTML = "    "; } }