GPS map now only shows when a 3D fix is established

10.3.x-maintenance
NightHawk32 2015-12-02 16:14:20 -05:00
parent 6ae1cfd915
commit 6e222ca73e
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ TABS.gps.initialize = function (callback) {
if (navigator.onLine) {
$('#connect').hide();
if(lat != 0 && lon != 0){
if(GPS_DATA.fix){
frame.contentWindow.postMessage(message, '*');
$('#loadmap').show();
$('#waiting').hide();