- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将带有路线的 map 保存为静态图像。目前,我可以将 map 另存为静态 map ,并将一些注释作为叠加层,但我无法弄清楚如何将路线添加到静态 map 。
这是我目前拥有的代码:
List<StaticMarkerAnnotation> markers = new ArrayList<>();
List<StaticPolylineAnnotation> polylines = new ArrayList<>();
markers.add(StaticMarkerAnnotation.builder().name(StaticMapCriteria.LARGE_PIN)
.lnglat(Point.fromLngLat(pointList.getFirst().longitude(), pointList.getFirst().latitude()))
.label("a")
.build());
markers.add(StaticMarkerAnnotation.builder().name(StaticMapCriteria.LARGE_PIN)
.lnglat(Point.fromLngLat(pointList.getLast().longitude(),pointList.getLast().latitude()))
.label("b")
.build());
polylines.add(StaticPolylineAnnotation.builder().polyline(currentRoute.geometry()).build()); // DirectionsRoute currentRoute
String staticImage = MapboxStaticMap.builder()
.accessToken(getString(R.string.mapbox_access_token))
.width(mapView.getMeasuredWidth())
.height((int) (250*getResources().getDisplayMetrics().density))
.retina(true)
.cameraAuto(true)
.staticMarkerAnnotations(markers)
.staticPolylineAnnotations(polylines) // does not work!
.build()
.url()
.toString();
如果没有.staticPolylineAnnotations(polylines),它会成功创建静态图像(没有路线)。使用 .staticPolylineAnnotations(polylines),创建的 staticImage 字符串结果为 {"message":"Latitude must be between -85.0511-85.0511."}。
我想我错误地传递了我的当前路线,但我不知道正确的方法。
最佳答案
要在 Android 中获取路线图像,首先将所有纬度和经度添加到列表中,然后借助 Google 折线编码技术将完整的纬度和经度列表转换为编码折线字符串。
-> 创建 map 盒帐户并使用有效 token 的 map 盒静态图像 API
-> 现在使用 StaticPolylineAnnotation:
List{StaticPolylineAnnotation} list1 = new ArrayList<>();(将 {} 替换为 <>)list.add(StaticPolylineAnnotation.builder().polyline(polilineString).StrokeWidth(1.0).StrokeColor(56, 69, 181).build());注意:PolilineString 是您从 Google Poly line Encoding 技术获得的编码字符串
-> MapboxStaticMap staticImage = MapboxStaticMap.builder().user("mapboxaccountusename") .accessToken("Mapbox token ") .styleId("您的样式 id") .staticPolylineAnnotations(list1) .cameraAuto(true) .retina( true) .build();
->使用 String imageUrl = staticImage.url().toString(); 获取图像的 url
关于java - 如何在 Mapbox 中将折线叠加添加到静态图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60252417/
我是一名优秀的程序员,十分优秀!