Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kasika-technologies/quad_tile
Golang implementation of QuadTile to work with OpenStreetMap API database.
https://github.com/kasika-technologies/quad_tile
openstreetmap openstreetmap-api quadtile
Last synced: about 1 month ago
JSON representation
Golang implementation of QuadTile to work with OpenStreetMap API database.
- Host: GitHub
- URL: https://github.com/kasika-technologies/quad_tile
- Owner: kasika-technologies
- License: mit
- Created: 2019-09-14T10:21:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T09:23:42.000Z (over 5 years ago)
- Last Synced: 2024-10-21T17:15:01.068Z (3 months ago)
- Topics: openstreetmap, openstreetmap-api, quadtile
- Language: Go
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quad_tile
Golang implementation of QuadTile to work with OpenStreetMap API database.
## Usage
```go
package mainimport (
"fmt"
"github.com/kasika-technologies/quad_tile"
)func main() {
tile := quad_tile.TileForPoint(139.734531, 35.607090)
fmt.Println(tile)
// 3977143975tiles := quad_tile.TilesForArea(139.73424, 35.60433, 139.73673, 35.60707)
fmt.Println(tiles)
// [3977143974 3977143975]
}
```