File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11CACHE MANIFEST
2- # version 37
2+ # version 38
33
44# gogole maps files
55http://maps.google.com/maps/api/js?v=3.10&sensor=false&key=AIzaSyCOqkcNey4CCyG4X0X5qxHAhCgD8g5DwXg
Original file line number Diff line number Diff line change @@ -391,12 +391,12 @@ function updateVehicleInfo(index, position) {
391391 + '<div class="right">'
392392 + '<dl>'
393393 + ( position . gps_alt != 0 ? '<dt>' + ascent_text + '</dt><dd>rate</dd>' : '' )
394- + '<dt>' + ( ( imp ) ? parseInt ( 3.2808399 * position . gps_alt ) + ' ft' : position . gps_alt + ' m' ) + '</dt><dd>altitude</dd>'
395- + '<dt>' + ( ( imp ) ? parseInt ( 3.2808399 * vehicles [ index ] . max_alt ) + ' ft' : vehicles [ index ] . max_alt + ' m' ) + '</dt><dd>max alt</dd>'
394+ + '<dt>' + ( ( imp ) ? parseInt ( 3.2808399 * position . gps_alt ) + ' ft' : parseInt ( position . gps_alt ) + ' m' ) + '</dt><dd>altitude</dd>'
395+ + '<dt>' + ( ( imp ) ? parseInt ( 3.2808399 * vehicles [ index ] . max_alt ) + ' ft' : parseInt ( vehicles [ index ] . max_alt ) + ' m' ) + '</dt><dd>max alt</dd>'
396396 + '' ;
397397 // mid for landscape
398398 var l = ( position . gps_alt != 0 ? '<dt>' + ascent_text + '</dt><dd>rate</dd>' : '' )
399- + '<dt>' + ( ( imp ) ? parseInt ( 3.2808399 * position . gps_alt ) + 'ft' : position . gps_alt + 'm' ) + ' (' + ( ( imp ) ? parseInt ( 3.2808399 * vehicles [ index ] . max_alt ) + 'ft' : vehicles [ index ] . max_alt + 'm' ) + ')</dt><dd>altitude (max)</dd>'
399+ + '<dt>' + ( ( imp ) ? parseInt ( 3.2808399 * position . gps_alt ) + 'ft' : parseInt ( position . gps_alt ) + 'm' ) + ' (' + ( ( imp ) ? parseInt ( 3.2808399 * vehicles [ index ] . max_alt ) + 'ft' : parseInt ( vehicles [ index ] . max_alt ) + 'm' ) + ')</dt><dd>altitude (max)</dd>'
400400 + '<dt>' + position . gps_time + '</dt><dd>datetime</dd>'
401401 + '<dt>' + coords_text + '</dt><dd>coordinates</dd>'
402402 + habitat_data ( position . data )
You can’t perform that action at this time.
0 commit comments