Phonegap 地理定位 - 如何判断我的用户是否靠近地标?
有人可以给我一个简单的概述,我如何能够判断我的用户是否在附近,例如某个零售商店或地标等?
我知道如何使用phonegaps geolocation api 获取坐标,但不知道如何确定附近有什么?
这基本上就是 foursquare、谷歌地图等所做的(哎呀,他们甚至知道他们是什么类型的企业)...
有人可以告诉我吗?
Can someone give me a simplistic overview how I would be able to tell if my user was near, say a certain retail store or landmark, etc.?
I know how to get coords with phonegaps geolocation api but not sure how to determine what is near that?
This is essentially what foursquare, google maps, etc does (heck they even know what TYPEs of businesses they are)...
Can someone clue me in please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
分为两个部分:
两个纬度/经度点之间的距离 - 请参阅此答案https://stackoverflow.com/a/8914832 /156477 (特别是关于获取纬度/经度点之间的距离的部分)。
你从哪里获得地标列表......这是一个更大的问题。您可以尝试使用 Frommers 或 Eventful,或者如果您愿意使用 Google,请使用他们相对较新的 Places API(Google 解决方案意味着您可以跳过第 1 步)。
Two parts to this:
Distance between two lat/lng points - see this answer https://stackoverflow.com/a/8914832/156477 (specifically the part about getting distance between lat/lng points).
Where do you get the list of landmarks.... this is the bigger issue. You could try using a service like Frommers or Eventful, or if you're happy to go with Google, use their relatively new Places API (and the Google solution means you can skip step 1).