Alexander Rolek

Results 26 issues of Alexander Rolek

Line 68 of g.line.js var gutter = opts.gutter || 10, should read var gutter = opts.gutter == undefined || 10, otherwise {gutter: 0} maps to false and defaults to 10....

The geopackage provider will panic if the casing of the table name in the config does not match that of the name of the table in the geopackge. Reference issue:...

bug

Currently tegola's PostGIS driver ignores geometries that have a 3rd dimension. A better solution would be to support decoding PosGIS's EWKB format and drop the 3rd dimension. This issue is...

dict.Dict needs to implement `UnmarshalTOML` in https://github.com/go-spatial/tegola/blob/master/internal/env/types.go.

There are two schools of thought developing around how to handle tile errors within tegola. I want to use this issue as a place to centralize the discussion. The two...

Using the instructions under [Hosting Fresco From a Subdirectory](https://github.com/go-spatial/fresco#hosting-fresco-from-a-subdirectory) the application loads from a subdirectory, but the router does not consider the path prefix so no page refreshes work.

bug

Could we add in a way to configure the default styles which are available with a fresco deployment? Currently, the default style is hardcoded via: https://github.com/go-spatial/fresco/blob/master/src/model/style/starterStyle.js. Ideally, we could configure...

The issue is around protocol mismatch and loading HTTP from an HTTPS domain. The error message indicates the source could not be found. It would be better to indicate to...

bug

For tegola to use fresco as the default viewer it would be ideal if a default TileJSON endpoint could be provided that fresco would init with. I'm not sure what...

CodeMirror allows for [code hinting via an add on](https://codemirror.net/demo/complete.html). This would help speed up writing styles in the JSON editor.

enhancement