Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        

# quad_tile

Golang implementation of QuadTile to work with OpenStreetMap API database.

## Usage

```go
package main

import (
"fmt"
"github.com/kasika-technologies/quad_tile"
)

func main() {
tile := quad_tile.TileForPoint(139.734531, 35.607090)
fmt.Println(tile)
// 3977143975

tiles := quad_tile.TilesForArea(139.73424, 35.60433, 139.73673, 35.60707)
fmt.Println(tiles)
// [3977143974 3977143975]
}
```