streetmapme/script.js

22 lines
321 B
JavaScript
Raw Normal View History

2017-08-07 07:11:59 -06:00
'use strict';
/* global navigator $ */
// Track GPS location
if (!navigator.geolocation){ $('#no-gps').show(); }
else { navigator.geolocation.watchPosition(
// Got location
function(pos) {
},
// Got error
function() {
//TODO: Show error
},
// Options
{ enableHighAccuracy:true }
);
}