我正在使用 Skobbler SDK 在我的地图视图中添加注释。它显示完美,但我的问题是我应该如何将图像居中到注释的位置,因为发生的事情是我需要点击图像的左上角以便调用 onAnnotationSelected。它应该是要挖掘的中心。
这是我的代码:
private void applyAnnotationOnMapView() {
annotation = new SKAnnotation();
annotation.setUniqueID(18);
annotation.setLocation(new SKCoordinate(121.048099, 14.572744));
annotation.setMininumZoomLevel(5);
SKAnnotationView imageView = new SKAnnotationView();
imageView.setDrawableResourceId(R.drawable.poi_mapv2);
imageView.setProperSize(32);
annotation.setAnnotationView(imageView);
mapView.addAnnotation(annotation);
}
谢谢