MKAnnotation image offset with custom pin image

IphoneObjective CGoogle MapsMkannotationview

Iphone Problem Overview


I have a MKAnnotation with an custom pin image. However the pin(MKAnnotationView) centers the image in relation to the specified coordinate. I want to set the point of the coordinate at the bottom center of the image, not center.

I've tried using annView.centerOffset = CGPointMake(-12, -28);. But the problem is that centerOffset isn't relevant to the maps zoom level.

One can do this both in the JS API and in Android. Is there any possibility to do this in objective-c?

..fredrik

Iphone Solutions


Solution 1 - Iphone

Your UIAnnotationView is always drawn at the same scale, the map's zoom level doesn't matter. That's why centerOffset isn't bound with the zoom level.

annView.centerOffset is what you need. If you see that your pin is not at the good location (for example, the bottom center move a little when you change the zoom level), it's because you didn't set the right centerOffset.

By the way, if you want to set the point of the coordinate at the bottom center of the image, the x coordinate of your centerOffset should be 0.0f, as annotationView center the image by default. So try :

annView.centerOffset = CGPointMake(0, -imageHeight / 2);

Solution 2 - Iphone

Setting the centerOffset often moves the image arround when user rotates or zooms the map, as anchor point is still set to the center of the image instead of its lower center.

You can set the anchor point of the annotation to the bottom center of you custom image as follows:

yourAnnotation.layer.anchorPoint = CGPointMake(0.5f, 1.0f);

This way when user zooms or rotates the map your custom annotation will never move from its coordinates on the map.

Solution 3 - Iphone

You can use this guide to figure out your center offset.

MKAnnotationView centerOffset guide

Solution 4 - Iphone

All the given solutions by now would mess up the pin if you zoom out. The only fully working solution I found so far is to increase your custom image height with its height. In other words - double the height. Also move the pin image to the top and leave the rest transparent. This way the center of the image will be the bottom point of your push pin.

Now no matter how much you zoom or if you rotate the map the pin will stay centered on the location you want.

The one problem I can think of is that the tappable area for this pin will be increased as well.

I hope this helps!

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionfredrikView Question on Stackoverflow
Solution 1 - IphoneZoleasView Answer on Stackoverflow
Solution 2 - IphonePanchoView Answer on Stackoverflow
Solution 3 - IphonerichyView Answer on Stackoverflow
Solution 4 - Iphonedizza213View Answer on Stackoverflow