Heim >Web-Frontend >uni-app >Wie stellt uniapp fest, ob die Standortbestimmung für Mobiltelefone aktiviert ist?

Wie stellt uniapp fest, ob die Standortbestimmung für Mobiltelefone aktiviert ist?

coldplay.xixi
coldplay.xixiOriginal
2020-12-08 15:17:398538Durchsuche

Die Methode für Uniapp, um festzustellen, ob die Positionierung von Mobiltelefonen aktiviert ist: Zuerst Systeminformationen abrufen und dann die Plattform bestimmen. Der Code lautet [let system = uni.getSystemInfoSync();if (system.platform === 'android') ].

Wie stellt uniapp fest, ob die Standortbestimmung für Mobiltelefone aktiviert ist?

Die Betriebsumgebung dieses Tutorials: Windows7-System, Uni-App2.5.1-Version, Dell G3-Computer.

Empfehlung (kostenlos): Uni-App-Entwicklungs-Tutorial

So ermittelt Uniapp, ob die Positionierung des Mobiltelefons aktiviert ist:

/**检查是否打开GPS功能(android)**/
export const checkOpenGPSServiceByAndroid = () => {
  let system = uni.getSystemInfoSync();// 获取系统信息
  if (system.platform === 'android') { // 判断平台
    var context = plus.android.importClass("android.content.Context");
    var locationManager = plus.android.importClass("android.location.LocationManager");
    var main = plus.android.runtimeMainActivity();
    var mainSvr = main.getSystemService(context.LOCATION_SERVICE);
    if (!mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)) {
      uni.showModal({
        title: '提示',
        content: '请打开定位服务功能',
        showCancel: false, // 不显示取消按钮
        success() {
          if (!mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)) {
            var Intent = plus.android.importClass('android.content.Intent');
            var Settings = plus.android.importClass('android.provider.Settings');
            var intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
            main.startActivity(intent); // 打开系统设置GPS服务页面
          } else {
            console.log('GPS功能已开启');
          }
        }
      });
    }
  } 
}

Zugehörige kostenlose Lernempfehlungen: Programmiervideo

Das obige ist der detaillierte Inhalt vonWie stellt uniapp fest, ob die Standortbestimmung für Mobiltelefone aktiviert ist?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn