为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 Mapbox 绘制箭头

如何使用 Mapbox 绘制箭头

素胚勾勒不出你 2022-05-25 17:12:27
使用 Mapbox Android SDK 和 Annotation 插件,是否可以在线条上添加箭头?如果没有,有什么方法可以建议一条线的方向吗?理想情况下,我希望有两个标记,它们之间有一个箭头,这样用户就知道要朝哪个方向行驶。
查看完整描述

2 回答

?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

不幸的是,Mapbox Lines 不支持此功能。但是,使用新的 Mapbox API v7 和 Annotations 插件,您可以执行以下操作来获得您需要的内容。

1. 使用 LineManager 在 Mapview 上绘制一条线

2. 以度为单位计算 Line 的方位角 3. 按计算的度数

旋转可绘制箭头(可绘制可以是向上的箭头)

4. 使用在 Mapview 上绘制符号符号管理器。该符号将放置在线的中间,并用作旋转的可绘制对象的图像


只需将此代码放在 Mapview 活动中的任何位置


public void createLineAndArrow(){  


  //Declare the coordinates of the two points of the line

  float latitude1  = 34.1f;

  float longitude1 = 33.2f;

  float latitude2  = 35f;

  float longitude2 = 34.5f;


  //Calculate bearing of line

  double lat1Rad = Math.toRadians(latitude1);

  double lat2Rad = Math.toRadians(latitude2);

  double deltaLonRad = Math.toRadians(longitude2 - longitude1);

  double y = Math.sin(deltaLonRad) * Math.cos(lat2Rad);

  double x = Math.cos(lat1Rad) * Math.sin(lat2Rad) - Math.sin(lat1Rad) * 

             Math.cos(lat2Rad) * Math.cos(deltaLonRad);

  double bearing =  (Math.toDegrees(Math.atan2(y,x))+360)%360;


  //Draw the Line

  List<LatLng> lineVertices = new ArrayList<>();

  lineVertices.add(new LatLng(latitude1,longitude1));

  lineVertices.add(new LatLng(latitude2,longitude2));

  LineOptions lineOptions = new LineOptions().withLatLngs(lineVertices)

                        .withLineColor(ColorUtils.colorToRgbaString(Color.MAGENTA))

                        .withLineWidth(3f);

  LineManager lineManager = new LineManager(mapView, mapboxMap,mapboxMap.getStyle());

  lineManager.create(lineOptions);


  //Rotate the drawable

  Bitmap bmapOriginal = BitmapFactory.decodeResource(getResources(), 

                        R.drawable.arrowup);

  final Bitmap bmap = bmapOriginal.copy(Bitmap.Config.ARGB_8888, true);

  Matrix matrix = new Matrix();

  matrix.postRotate((float)bearing);

  Bitmap rotatedBitmap = Bitmap.createBitmap(bmap , 0, 0, bmap.getWidth(), 

                         bmap.getHeight(), matrix, true);

  Drawable d = new BitmapDrawable(getResources(), rotatedBitmap);


  //Add the drawable to the selected mapbox style

  mapboxMap.getStyle().addImage("rotatedImage",

                        BitmapUtils.getBitmapFromDrawable(d),

                        true);


 //Draw the Symbol in the middle of the Line

 SymbolOptions symbolOptions = new SymbolOptions().withIconImage("rotatedImage")

                          .withGeometry(Point.fromLngLat((longitude2+longitude1)/2, 

                          (latitude2+latitude1)/2));


 SymbolManager symbolManager = new SymbolManager(mapView, mapboxMap, 

                               mapboxMap.getStyle());

 symbolManager.create(symbolOptions);


}  

//img1.sycdn.imooc.com//628df31700017bbe04420240.jpg

查看完整回答
反对 回复 2022-05-25
?
眼眸繁星

TA贡献1873条经验 获得超9个赞

Mapbox 不支持开箱即用的箭头,但您可以尝试使用/Line#setPattern将添加到地图的图像名称作为参数。您可以在此处阅读有关该图案图像要求的更多信息。否则,您需要通过在地图上正确定位和旋转箭头图形 (a ) 来推出自定义解决方案。您可以使用样式属性和公开方法进行设置。Style#addImageMapboxMap#addImageSymbolsymbol-placementicon-rotation-alignmentSymbolManager


查看完整回答
反对 回复 2022-05-25
  • 2 回答
  • 0 关注
  • 563 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信