为什么离子响应作为地理位置错误允许?

时间:2018-09-19 10:00:37

标签: android ionic-framework mobile geolocation ionic-native

我正在与Ionic Geolocation合作,并在移动应用“ Ionic DevApp”上进行调试。

问题是当我接受使用我的GPS的权限时,后来的响应为错误PositionError.PERMISSION_DENIED。我曾尝试解决在网络(MozillaW3)中进行搜索的问题,但没有纠正我的错误。

我的代码:

    // onSuccess Callback
    // This method accepts a Position object, which contains the
    // current GPS coordinates
    var onSuccess = function (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');
    };

    // onError Callback receives a PositionError object
    function onError(error) {
      alert('code: ' + error.code + '\n' +
        'message: ' + error.message + '\n');
    }

 navigator.geolocation.getCurrentPosition(onSuccess, onError, { enableHighAccuracy: true });

¿为什么不接受我的许可?

0 个答案:

没有答案