Flutter教程

Location Accuracy

Contents

This Cordova/Phonegap plugin for Android and iOS to request enabling/changing of Location Services by triggering a native dialog from within the app, avoiding the need for the user to leave your app to change location settings manually.

https://github.com/dpa99c/cordova-plugin-request-location-accuracy

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 更改位置 Location Accuracy插件的安装(Installation)

ionic cordova plugin add cordova-plugin-request-location-accuracy npm install @ionic-native/location-accuracy
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/location-accuracy

Ionic 更改位置 Location Accuracy插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic 更改位置 Location Accuracy插件的用法(Usage)

import { LocationAccuracy } from '@ionic-native/location-accuracy/ngx';

constructor(private locationAccuracy: LocationAccuracy) { }

...

this.locationAccuracy.canRequest().then((canRequest: boolean) => {

  if(canRequest) {
    // the accuracy option will be ignored by iOS
    this.locationAccuracy.request(this.locationAccuracy.REQUEST_PRIORITY_HIGH_ACCURACY).then(
      () => console.log('Request successful'),
      error => console.log('Error requesting location permissions', error)
    );
  }

});