开发者

how to update MKPolyline / MKPolylineView?

I am trying to create a polyline (MKPolyline) overlay that updates periodically, to simulate the movement of an object. I can achieve this by removing the old overlay, updating the polyline and adding the overlay again, but this leads to flickering.

For a point annotation (MKPointAnnotation) you can sim开发者_如何学JAVAply change its coordinate, and the view will be updated automatically and smoothly without having to remove and re-add the annotation.

Is this also possible somehow for an overlay?


yea, you would have to add an additional overlay with the point set of from your last point to your next point. Once you create the MKPolyline with your points, your not able to change it when it draws the MKPolylineView without removing the old and adding the newly created one.

you could create a new polyline view with all the points (including the new one) and add it to the map but do not remove the older one. then once the new one is added, you can remove the older shorter one. It might not be pretty to implement but it should get rid of the flashing on updates. you can distinguish the old and the new with a tag. maybe a point count as the tag would work.


All of the MapKit overlays are immutable so in order to get mutability you need to build your custom overlay and redraw only the region that needs to be updated.

You can find an example in the Breadcrumb sample application example from Apple. Breadcrumb link


The MKPolyline class inherits MKMultiPoint, which consists of a set of points. This is a property that is read-only, meaning, unfortunately, you can't update it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜