有没有人知道使用RubyMotion在MKMapView上显示路径的任何代码示例?
我发现了一些显示点或引脚但却没有显示路径的有用示例。
由于
答案 0 :(得分:1)
为了记录,我能够像这样在地图上画一条线。希望这对某人有用,因为我找不到使用RubyMotion在地图上绘制线条的示例:
arr = [CLLocationCoordinate2D.new(49.7414435, -123.08), CLLocationCoordinate2D.new(50.7414435, -123.0)]
ptr = Pointer.new(CLLocationCoordinate2D.type, arr.length)
ptr[0] = arr[0]
ptr[1] = arr[1]
pl = MKPolyline.polylineWithCoordinates(ptr, count:2)
view.addOverlay(pl)
在此讨论的帮助下: https://groups.google.com/forum/?fromgroups=#!topic/rubymotion/F5CH780lu7c