I have a path rendering on my map. I have a series of waypoints and I'm simulating movement through them.
When changing the display region it appears that my coordinate when converted to a CGPoint is floorf by Apple's implementation. This causes a very jittery appearance instead of a smooth one.
Is there anyway to get around this?
[m_mapView setRegion: MKCoordinateRegionMake(coord, MKCoordinateSpanMake(0, 0))];
The map then tries to center on this given point. However the point may not be pixel aligned as can be view by the following function.
CGPoint point = [m_mapView convertCoordinate:coord toPointToView:m_mapView];
Thus the mapview floors the centerpoint's result to align all pixels for the underlying map.
setRegion:animated:there is no CGPoint involved. – phix23 Jul 10 '12 at 19:50CGPoint point, for example, equals { 122.45, 201.68 }, and it's centering on { 122, 201 }, and that's not good enough? And, how are you choosing which points to re-center on? Normally, when I think of "waypoints", those are infrequent locations of interest. For example, where turns occur. Are you interpolating yourself to use many, many "waypoints" along the path, then recenter the map really frequently? – Nate Jul 11 '12 at 0:20