Android - 绘制两个地理点之间的路线
在我的方向类中,我有两个地理点。一个对应于当前位置,另一个是固定地理点。当前位置会不断变化。我需要在这两点之间绘制路线,并且需要更改这条线以改变距离500米。
In my direction class I have two geo points.One corresponds to current position and other is a fixed geo point.Current position will keeps changing.I need to draw route between these two points and need to change this line for a change in distance of 500m.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最好的解决方案称为 android 内部地图活动来显示两个地理点之间的路线。请参考下面的代码。
它调用内置地图活动并绘制当前和固定纬度和经度之间的路线路径。
I think best solution is called android internal map activity to show route between two geo points . Please refer below code.
It called built in map activity and draw a route path between current and fixed latitude and longitude.
@Siraj 也许这个链接将帮助您找到如何实现您的目标。您可以使用起点和终点纬度和经度在您自己的地图中绘制路径。使用此链接进行地理编码 API 点击此处
对于绘制路径,请参阅此链接绘制路径
@Siraj May be this link will help you to find how you can achieve your goal .you can use your start point and End point lat and long to draw path in your own map .use this link for Geocoding API click here
For Draw path refer this link for Draw Path