将辅助GPS与离子框架结合在一起

时间:2019-11-28 14:55:37

标签: android cordova ionic-framework plugins

我开发了一个可以对用户进行地理位置定位的离子应用程序,可以很好地返回纬度和对数。问题是设备使用a-gps时,应用程序未返回任何东西。 我怎么解决这个问题? android有用于a-gps的api吗?

 getCurrentPosition(): Promise<Geoposition> {
    return new Promise((resolve, reject) => {
      var options = {
        enableHighAccuracy: false,
        maximumAge: 10
      };
      console.log('options : ', options);
      this.geolocation.getCurrentPosition(options).then((location) => {
        // resp.coords.latitude
        // resp.coords.longitude
        resolve(location)
      }).catch((err) => {
        reject(err);
      });
    });
  }// getCurrentPosition

0 个答案:

没有答案