Recently two Pebble watchfaces I’ve developed based on Paul Joel designes: Clean&Smart and Cobblestyle began to experience weather update issues – as in “weather was not updated at all”. Looking into the issue I found a weird thing: If you set your location manually – weather worked. But automatic weather based on phone location did not.
The way automatic location works is pretty straighforward. First this function is called to determine location:
function getLocation() { navigator.geolocation.getCurrentPosition( locationSuccess, locationError, {timeout: 15000, maximumAge: 60000} ); }
It uses phone location services (GPS, if its available, otherwise network-based location). In case of success it calls locationSuccess
function. And in my tests it always called it, so location was determined successfully. Continue reading →