tegola
tegola copied to clipboard
Tegola is a Mapbox Vector Tile server written in Go
Like the wkb package, the Encode functions should be the following: ``` EncodeBytes(g geom.Geometry)([]byte,error) Encode(w io.Writer, g geom.Geometry) error ``` This will make the package interface for the encoding methods...
Something strange happens with data in tegola (firsts screens by tegola and seconds by tilezen backend) 1) 9/346/160.mvt or something like that - no part of road, duplicating of village...
https://github.com/go-spatial/tegola/blob/13b50e66d411761df8f4e7d331675c1b4c179621/server/server.go#L77 Suggest changing the above line to: `srv := &http.Server{Addr: strings.TrimSpace(port), Handler: NewRouter(a)} ` Reason: I'm working on getting tegola hosted in IIS. I have it working using httpPlatformHandler. I...
This issue is to collect validation issues with the new geom package (https://github.com/go-spatial/tegola/tree/integrate_geom_makevalid) I have a GeoPackage with land polygons generated from the OSM coastline. They are quite detailed, (especially...
dict.Dict needs to implement `UnmarshalTOML` in https://github.com/go-spatial/tegola/blob/master/internal/env/types.go.
With a query containing the SQL `way_area > pixel_size(!ZOOM!)*4` I get `ERROR: syntax error at or near "ANY" (SQLSTATE 42601)` Because this is similar to previous problems with st_asbinary, I...
Tokens are well-established, with Mapnik making use of them too. All the same, they're still a hack that relies on parsing SQL as text and writing SQL carefully. SQL injection...
With this config I get an error ```toml [webserver] [[providers]] name = "osm2pgsql" type = "postgis" host = "/var/run/postgresql" # Default for Debian-based distributions port = 5432 # postgis database...
This is based on commit https://github.com/terranodo/tegola/commit/02bdfb432a65cf9b65359755f4138c952ac0a601 in the v0.6.0 branch. It worked fine before I pulled it in and rebuilt, but now with the same TOML file, I'm getting the...
Hi: I just found tegola which is a wonderful tool for vector tile serving. I want to make some changes , however I can not make it clear enough about...