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

时间:2017-10-15 16:03:47

标签: ios swift maps cartodb carto-mobile

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

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

所以我希望有人能告诉我如何使用CARTO-SDK使用NTPoint真正的对冲来旋转位置标记

此致

1 个答案:

答案 0 :(得分:0)

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

    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];