4

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)
です

4

1 に答える 1