我正在使用 Carto-Mobile,我正在尝试使用CLLocation
真正的对冲来旋转位置标记,但我无法使其工作。
我将位图图像设置为作为NTPoint
对象的位置标记,但NTPoint
没有任何方法可以根据角度旋转,而不是NTMarker
,我尝试使用NTMarker
位置标记,但在低缩放级别(缩放 6)从不显示真正的位置,所以NTPoint
更合适。
所以我希望任何人都可以告诉我如何CLLocation
使用 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];