本文主要是介绍cordova 5.1.1- geolocation使用问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用的魅族mx4手机,android4.4.2版本,调用cordova5.1.1版本geolocation插件的时候一直没有反应,成功/失败回调都没有进入。
代码如下:
$scope.getGeolocation = function() {function onSuccess(position) {alert('Latitude: ' + position.coords.latitude + '\n' +'Longitude: ' + position.coords.longitude + '\n' +'Altitude: ' + position.coords.altitude + '\n' +'Accuracy: ' + position.coords.accuracy + '\n' +'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '\n' +'Heading: ' + position.coords.heading + '\n' +'Speed: ' + position.coords.speed + '\n' +'Timestamp: ' + position.timestamp + '\n');};function onError(error) {alert('code: ' + error.code + '\n' + 'message: ' + error.message + '\n');}navigator.geolocation.getCurrentPosition(onSuccess, onError);}
这篇关于cordova 5.1.1- geolocation使用问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!