查找 addProximityAlert android 的半径
我正在开始 lat 和 lng 以及结束 lat 和 lng。我正在使用 addProximityAlert 进行警报事件。我想在 lat 和 lng 结束之前的某个时间发出 xmin 警报。 所以我需要计算半径。
我怎样才能找到它?
I am having Starting lat and lng and Ending lat and lng.I am using addProximityAlert for the alert event. And i want to fire the alert at some time say xmin before the end lat and lng.
so i need to calculate the radius.
how can i find it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是新人,但这是这样做的方法。
创建警报时添加额外信息(包括您设置的半径或可以链接到具有半径的位置列表的 id)
在我的例子中,我的位置是带有 id、纬度、经度的对象 (loc) 的集合,这里
是您添加它的地方...
在您的接近意图接收器中,您可以获取所有额外的信息
希望这会有所帮助。
亚尔钦
I am new but here is the way to do it.
When creating the alert add extra info (including the radius you set or an id that can be linked to a list of locations with their radii)
In my case my locs, are a collection of objects (loc) with ids, lat, lon, and dist
here is where you add it...
In your proximity intent receiver you can get all the extra info back
Hope this helps.
yalcin