如何使用 carto-mobile( CARTO-SDK) 在 ios 中旋转位置标记

How to rotate location marker in ios using carto-mobile( CARTO-SDK)

我正在使用 Carto-Mobile,我正在尝试使用 CLLocation 真实对冲来旋转位置标记,但我无法使其工作。

我将位图图像设置为 NTPoint 对象的位置标记,但是 NTPoint 没有任何根据角度旋转的方法,而不是 NTMarker ,我尝试使用 NTMarker 作为位置标记,但在低缩放级别(缩放 6)下永远不会显示真实位置,因此 NTPoint 更合适。

所以我希望任何人都可以告诉我如何使用 CLLocation 使用 CARTO-SDK

的真实对冲来旋转位置标记

此致

以下代码应该可以工作并将图像保持在精确位置:

    NTMarkerStyleBuilder *builder = [[NTMarkerStyleBuilder alloc]init];

    // anchor 0,0 means that image is rotated from the center
    // you may have different anchor point depending on graphics
    [builder setAnchorPointX:0 anchorPointY:0];

    self.positionMarker = [[NTMarker alloc] initWithPos:position style:[builder buildStyle]];

   ...
   // rotate marker, depending on marker graphics
   // "180-course" is ok if it is "arrow down"
   // additional adjustment is for mapView rotation, image keeps
   // here correct course even if map is rotated

  double course = location.course;
  [self.positionMarker setRotation: 180 - course - self.contentView.mapView.getRotation];