I'm using the MapBox SDK for iOS and encountered a problem I can't find a good solution for. In the iOS the MKAnnotationView allows me to do the following:
view.centerOffset = CGPointMake(0, -15);
Is there a MapBox RMMarker equivalent for this?
So basically I need to move the marker a few pixels up from its original position, taking the zoom level into account as well. (So when you zoom, the marker's bottom part keeps fixed on the same point)
As you can guess, there's a little arrow at the bottom of my marker that I want to have pointing to the GPS position in question, but the RMMarker seems to center on this point right now rather than being positioned on top of it, like I'd need.