作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
This is the code i have done to implement.我需要实现一个应用程序,我需要在谷歌地图中添加自己的路线。我已经尝试过使用 Direction API,但它是这样画的。 Image which draw route like this.
我只需要在路上画一条多段线。所以请建议我一个更好的方法来实现它。
最佳答案
试试这个代码:
public void addPolylineToMap(GoogleMap map, List<LatLng> route) {
final PolylineOptions polyline = new PolylineOptions();
for (LatLng point : route) {
polyline.add(point);
}
polyline.width(5)
.color(Color.RED);
map.addPolyline(polyline);
}
关于java - 我如何在谷歌地图android中绘制自己的路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37295125/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!