我将图像作为叠加层放在 Android 谷歌地图上。图像是否在坐标处对齐图像的原点?有没有办法控制它?如果我希望图像的中心位于叠加坐标处,我该怎么做?
非常感谢
//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);
.
.
.
}