Tobias Zwick
Tobias Zwick
> Is your library more efficient than the normal Kotlin API code I have shown above? The library is not about efficiency but convenience: It does the querying and the...
```kotlin val myDataHandler = object : MapDataWithGeometryHandler { fun handle(bounds: BoundingBox) { /* here you get returned the bounding box of your request */ } fun handle(node: Node) { /*...
> I don't know Overpass that well, I mostly stick to XML as I showed in my example Should be not problem to use XML in the query. The library...
In an old version of StreetComplete, I found this block ```groovy configurations { // it's already included in Android all*.exclude group: 'net.sf.kxml', module: 'kxml2' cleanedAnnotations compile.exclude group: 'org.jetbrains', module:'annotations' compile.exclude...
> but when I checkout the main branch, the changes appear in the main branch too??? This does not happen. What made you think this is what happened? If you...
> Got it working. However, on my first run, I got rate limited (it says Too Many Requests (429)). Is there a user agent that I need to enter to...
> That means that everytime I stop scrolling or stop zooming, it calls the function. That's too much. You should memorize which areas you already downloaded and memorize the results....
Though in all fairness, I have to tell you that it is almost certain that I will implement a view that looks something like this in StreetComplete within the next...
> So tasks are downloaded automatically? Yes, around your GPS location. You can additionally download areas manually, if you want to download areas not around your location in advance. >When...