0

我正在使用 Rubymotion 开发一个 iOS 应用程序。在这个应用程序中,我希望能够在地图上准确地向用户显示他或她开车或步行的方式。我还想将此路径保存在服务器上。

如何在 iOS 中跟踪此补丁?

欢迎所有有关解决方案的输入和提示。

4

1 回答 1

1

我猜你的应用需要一个计时器:

count = 0
timer = EM.add_periodic_timer 1.0 do
  count = count + 1
  puts "Great scott!"
  (count < 10) || EM.cancel_timer(timer)
end

然后找到当前位置:

BW::Location.get do |result|
  p "From Lat #{result[:from].latitude}, Long #{result[:from].longitude}"
  p "To Lat #{result[:to].latitude}, Long #{result[:to].longitude}"
end

这一切都是 BubbleWrap:https ://github.com/rubymotion/BubbleWrap

于 2013-07-10T08:56:51.660 回答