I'm writing IOS app that will warn users about exceeding speed limit while driving car. I'll get location from GPS. How can I find the WAY where I'm currently driving? I've notice that WAY object contains NODEs and NODEs contains coordinates. The only way I came up with is to connect all nodes from WAY and check if I am on this connected patch. Hope there is easiest way... I've try Overpass API Pawel asked 01 Jun '13, 23:04 psci |
Several options, all of which require that you set up your own server:
Options that do not require setting up your own server, but that will get you blocked on the respective servers very quickly if your app sends these queries every couple of seconds:
Neither of these options will correctly find out whether you are on a bridge or under the same bridge - this is something that would require additional analysis on your part (I was there 10 seconds ago, now I am here, this means I cannot be traveling on that road, it must be this road...) answered 01 Jun '13, 23:37 Frederik Ramm ♦ |
Do you mean such query? The location I assumed. /al answered 04 Jun '13, 14:42 _al |