jQuery('body').on('geo_timeout_error', onGeo_timeout_error);
function onGeo_timeout_error() {
console.warn('The geolocationGetCurrent timed out');
var html = '
GPS Failed
';
html += '
Your GPS did not respond. Be sure you have your GPS enabled and try again.
';
html += '';
html += ''; // a little hack to hide the checkin button without really tampering with it.
jQuery('#map-canvas').html(html);
}
Leave a Reply