为我们县开发一个移动应用程序,我们有很多人骑自行车和徒步旅行的小径。想知道我的 html5 中需要哪些代码或功能,所以当人们单击他们有兴趣前往的跟踪选项卡时,它会抓住当前位置,然后为他们提供前往跟踪起点的方向。我有登山口的 GPS 坐标。
任何帮助将非常感激。
谢谢埃德
为我们县开发一个移动应用程序,我们有很多人骑自行车和徒步旅行的小径。想知道我的 html5 中需要哪些代码或功能,所以当人们单击他们有兴趣前往的跟踪选项卡时,它会抓住当前位置,然后为他们提供前往跟踪起点的方向。我有登山口的 GPS 坐标。
任何帮助将非常感激。
谢谢埃德
To get current location, PhoneGap provides a geolocation service.
Example:
navigator.geolocation.getCurrentPosition(geolocationSuccess, [geolocationError], [geolocationOptions]);
I suggest you look at detailed example on this page: http://docs.phonegap.com/en/2.5.0/cordova_geolocation_geolocation.md.html#Geolocation
To plot the coordinates of the trail, you can use the Google Maps API as you already have the coordinates of the trail.
Hope this helps.