创建像 InstaMapper 这样的 Android 应用程序会遇到哪些挑战
http://www.instamapper.com/android
我打算深入研究 android 开发,并且我有一个非常好的java和网络开发背景。 我计划开发 InstaMapper 类型的应用程序,我需要了解 GPS 跟踪和在网页上显示信息所涉及的基本挑战。
http://www.instamapper.com/android
I am planning to dive into android dev and i have a pretty good java and web-dev background.
i was planning to develop an InstaMapper type of application and i need to know the challenges in so basically the things involved in gps tracking and displaying the information on web page..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简而言之,
您的应用程序将从 GPS 接收器收集(纬度、经度)对并将其发送到您的网络应用程序。
您的网络应用程序将获取此值并将其存储在数据库中。
要显示(纬度,经度)对的路径,您需要在网页中实现 Google 地图 API。 (Google 地图 API:http://code.google.com/apis/maps/)
In simple words,
Your app will collect the (Latitude,Longitude) pair from your GPS receiver and sends it to your web app.
Your web app will get this values and store them in a database.
To display the path from (Lat,Long) pair, you need to implement Google Maps API inside your web pages. (Google Maps API: http://code.google.com/apis/maps/)