MapViewの経度と緯度をMKMapPointに変換しました。次に、imageViews centerプロパティを使用して、imageViewをそのポイントに移動します。どういうわけか、中心を変更できるようにMKMapPointをCGPointに変換する必要があるようですが、数値がかなりずれているようです。これが私が使っているものです:
// Convert to MKMapPoint
CLLocationCoordinate2D coord;
coord.latitude = [loc.latitude doubleValue];
coord.longitude = [loc.longitude doubleValue];
MKMapPoint point = MKMapPointForCoordinate(coord);
// Move our image
CGFloat newXPos = point.x;
CGFloat newYPos = point.y;
CGPoint newCenter = {newXPos, newYPos};
self.movingMarker.center = newCenter;
//self.movingMarker.frame.origin.x = point.x;
//self.movingMarker.frame.origin.y = point.y;
MKMapPointを画像のcenterプロパティに使用できる実用的な値にする方法についてのアイデアはありますか?