我必须修改 SKAnnotation 的图像。注释生成器代码:
private SKAnnotation getAnnotationFromView (int id,int minZoomLvl, View view) {
SKAnnotation annotation = new SKAnnotation();
SKAnnotationView annotationView = new SKAnnotationView();
annotationView.setView(view);
annotation.setUniqueID(id);
annotation.setOffset(new SKScreenPoint(annotationView.getWidth()/2, annotationView.getHeight()/2));
annotation.setAnnotationView(annotationView);
annotation.setMininumZoomLevel(minZoomLvl);
return annotation;
}
现在我的问题是将注释/图像更新为当前状态(位置、方向)。有没有办法在不重新添加注释的情况下做到这一点?查看我找到的文档,mapView.updateAnnotation()
但它似乎只适用于添加的图像annotation.setImagePath(imagePath)
有人可以帮我吗?