所以我在https://github.com/remy/html5demos/blob/master/demos/geo.html使用了演示代码,我想在用户点击浏览器中的“分享位置”时更改div类。
是否有可用的触发器或功能?
答案 0 :(得分:0)
我假设您不想使用getCurrentPosition()方法的成功回调,因为只有在确定了位置后才会调用它。 为什么不尝试使用watchPosition方法?
if(!!navigator.geolocation) {
var id = navigator.geolocation.watchPosition(success, error, options);
if(id)
//change the div class
else
//too bad, no permission
} else
//geo not supported