TaskarCenterAtUW / GoInfoGame-iOS

iOS Version of GoInfoGame
Apache License 2.0
0 stars 0 forks source link

Fetching the tags data for a given location/bounding from OSM #8

Closed susrisha closed 9 months ago

susrisha commented 11 months ago

The data to be presented on the map depends on the data present in the Openstreetmap. To query the data from this, there is Overpass API. However, to make things simpler, we can use https://github.com/westnordost/osmapi or any other library that helps in fetching the data and also pushing the data.

Outcome:

iAKM commented 11 months ago

This task is almost done. We have integrated Swift Wrapper library SwiftOverpassAPI (cocoapod) which fetches response from Overpass API. The library helps in building the query string and the response received from the API is well encapsulated into a model with corresponding nodes, ways and relations in place. We can proceed with this library.

susrisha commented 11 months ago

Ensure that it is ready to be separated as a module and mention the classes used for the same.