Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of any code examples that display paths on a MKMapView using RubyMotion?

I've found some useful examples that display a point or pin but none that display a path.

Thanks

share|improve this question
For the record I was able to draw a line on the map like this: – Bruce Nov 12 '12 at 15:47

1 Answer

For the record I was able to draw a line on the map like this. Hopefully this is useful to someone as I could find no examples drawing lines on a map using 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)

With the help of this discussion: https://groups.google.com/forum/?fromgroups=#!topic/rubymotion/F5CH780lu7c

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.