Flutter:使用ios模拟器中的Location软件包无法获取位置

问题描述

我正在使用位置信息包Location Package获取用户的实际位置,但是问题是,将来永远不要返回该位置,它始终保持加载状态,并且永远不返回该位置。

问题只存在于ios中,因为在android中一切正常。

我已经添加到Info.plist ios / Runner / Info.plist

<key>NSLocationAlwaysUsageDescription</key>
<string>This app needs access to location when in the background.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>This app needs access to location when open.</string>

我已经在xcode中以后台模式检查了位置更新

Background modes in xcode

并且我已经具有功能->位置->自定义位置

Custom location activated and the result

这是我的密码飞镖

FutureBuilder<LocationData>(
                  future: this.obtenerUbicacion(),builder: ( BuildContext contextoBuilder,AsyncSnapshot<LocationData> asyncSnapshot){

                    if( !asyncSnapshot.hasData ){
                          return Center(
                              child: this.base.retornarCircularCargando(Colores.COLOR_AMARILLO),);
                    }else if( asyncSnapshot.data == null ){
                           return Center(
                              child: this.base.retornarCircularCargando(Colores.COLOR_AMARILLO),);
                    }else {
                        this.currentLocation = asyncSnapshot.data;
                        this.latituded = currentLocation.latitude;
                        this.longituded = currentLocation.longitude;
                         return  Stack(
                             children: <Widget>[
                                  
                                  GoogleMap(
                                        initialCameraPosition: CameraPosition(target: LatLng(this.latituded,this.longituded),zoom: 18),onMapCreated: (GoogleMapController googleMapController){
                                            this.mapController = googleMapController;
                                        },onCameraMove:  ( CameraPosition position ){
                                                this.latituded = position.target.latitude;
                                                this.longituded = position.target.longitude;

                                                print('Latitud ${this.latituded} y Logintud ${this.longituded}');  
                                        },myLocationButtonEnabled: true,myLocationEnabled: false,mapType: MapType.normal,),Center(
                                      child: Icon(Icons.pin_drop,color: Colores.COLOR_ROJISO_TEXTO_LOYALTY),Align(
                                                   alignment: Alignment.bottomCenter,child: Container(
                                                   width: double.infinity,height: MediaQuery.of(context).size.height * 0.3,color: Colors.white,child: Column(
                                                       mainAxisAlignment: MainAxisAlignment.center,children: <Widget>[
                                                           Text("¿Es esta tu ubicación?",textAlign: TextAlign.center,style: TextStyle( color: Colores.COLOR_ROJISO_TEXTO_LOYALTY,fontSize: 20.0 ),SizedBox( height: MediaQuery.of(context).size.height * 0.015,Text("Necesitamos tu ubicación exacta para realizar el envió",style: TextStyle( fontSize: 15.0 ),RaisedButton(
                                                             onpressed: (){

                                                                _ingresarDireccionLiteral(context);
                                                               
                                                             },child: Container(
                                                                   child: Text("Agregar dirección"),padding: EdgeInsets.symmetric( horizontal: 50.0,vertical: 15.0) 
                                                              ),shape: RoundedRectangleBorder(
                                                                   borderRadius: BorderRadius.circular(5.0)
                                                                  ),elevation: 30.0,color: Colores.COLOR_BLANCO_LOYALTY,textColor: Colores.COLOR_ROJISO_TEXTO_LOYALTY,SizedBox( height: 5.0,RaisedButton(
                                                             onpressed: (){

                                                                  Navigator.of(context).pushNamed(ModoPago.nameOfPage,arguments: {
                                                                       "latitud"  : this.latituded,"longitud" : this.longituded,"direccion_literal" : this.direccionLitera
                                                                    }
                                                                  );
                                                               
                                                             },child: Container(
                                                                   child: Text("Confirmar ubicación"),color: Colores.COLOR_ROJISO_TEXTO_LOYALTY,textColor:Colores.COLOR_BLANCO_LOYALTY,],);
                    }

                  }
                 ),Future<LocationData> obtenerUbicacion() async{

  bool _serviceEnabled;
  PermissionStatus _permissionGranted;
  LocationData _locationData;

  _serviceEnabled = await location.serviceEnabled();
  if (!_serviceEnabled) {
    _serviceEnabled = await location.requestService();
    if (!_serviceEnabled) {
      return Future.value(null);
    }
  }

  _permissionGranted = await location.hasPermission();
  if (_permissionGranted == PermissionStatus.denied) {
    _permissionGranted = await location.requestPermission();
    if (_permissionGranted != PermissionStatus.granted) {
      return Future.value(null);
     }
  }

  return  _locationData = await location.getLocation();

 }  

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)