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