0

我将图像作为叠加层放在 Android 谷歌地图上。图像是否在坐标处对齐图像的原点?有没有办法控制它?如果我希望图像的中心位于叠加坐标处,我该怎么做?

非常感谢

4

1 回答 1

1
//This will make the center of the image to be at the coordinates.

public abstract class CustomOverlay<Item extends OverlayItem> extends ItemizedOverlay<Item> {

public CustomOverlay(Drawable defaultMarker, MapView mapView) {
    super(boundCenter(defaultMarker), mapView); 
    .
    .
    .

}
于 2012-05-22T06:32:28.933 回答