Beispiel #1
0
func QuadKey(c Coordinate, zoom int) tiles.Quadkey {
	return tiles.FromCoordinate(c.Lat, c.Lon, zoom).Quadkey()
}
Beispiel #2
0
func (c Coordinate) ToTile(zoom int) (tile tiles.Tile) {
	return tiles.FromCoordinate(c.Lat, c.Lon, zoom)
}