Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用电话间隙创建一个快速非常简单的移动应用程序。
我正在使用的 API 之一是 gps。由于某种原因,当设备没有 wifi 或手机连接时,gps 无法工作。我正在测试一个应该有 GPS 接收器的 nexus10。
是否有强制设备使用 gps 接收器或连接到 GPS API 的要求?
尝试使用:
navigator.geolocation.watchPosition(onSuccess, onError, { enableHighAccuracy: true });
“enableHighAccuracy”告诉 Android 设备使用 GPS 接收器,而不是依赖 Wifi 或小区三角测量。使用 GPS 接收器不需要互联网连接。