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);
}
ありがとう