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.
我正在黑莓中开发一个基于 phonegap 的应用程序。在此我正在访问当前位置的纬度和经度。如果位置服务已关闭,那么我该如何知道?我可以为获取当前位置或任何其他方式设置超时吗?
是的,您可以,您实际上可以为通话设置最大年龄和超时
navigator.geolocation.getCurrentPosition(positionSuccess, positionError, { enableHighAccuracy: true, maximumAge: 9000, timeout: 10000 });
在这种情况下,最大年龄设置为 9 秒,超时设置为 10 秒