gpt4 book ai didi

android - 使用 React-Native 在 Android 模拟器上的位置请求超时

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:46 24 4
gpt4 key购买 nike

我正在使用 react-native 构建我的第一个 Android 应用程序。我想要做的是显示我当前的位置。但它似乎不适用于我的模拟器。相反,我在控制台中收到“位置请求超时”错误。这是我的 idex.android.js 文件中的代码示例:

initGeoloc() {
navigator.geolocation.getCurrentPosition(
(position) => {
console.log(JSON.stringify(position));
}
);
}

render() {
this.initGeoloc();
... some more code and the view

代码非常简单,所以我不认为错误来自这里。我在我的 AndroidManifest.xml 文件中添加了这些权限(ACCESS_FINE_LOCATION、ACCESS_COARSE_LOCATION):

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<application
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
<uses-library android:name="com.google.android.maps" />
<meta-data android:name="com.google.android.geo.API_KEY" android:value="mykey"/>
</application>

我也没有发现任何问题,所以我认为问题出在 Android 模拟器上。我使用 Android Virtual Device Manager 创建一个 Nexus 5,Google APIs (Google Inc.) - API Level 23 虚拟设备。地理定位已在设备上激活,但我在开发人员工具或配置中没有看到任何地理定位工具。所以错误可能来自这里。 虚拟设备不返回任何位置。

我该如何解决这个问题?

最佳答案

设置为enableHighAccuracy false,问题就解决了

navigator.geolocation.getCurrentPosition((position) => {
console.log(position);
}, error => console.error(error), { enableHighAccuracy: false, timeout: 20000, maximumAge: 1000 });

关于android - 使用 React-Native 在 Android 模拟器上的位置请求超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35297535/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com