Martin Ždila

Results 158 issues of Martin Ždila

Currently this fails to parse: `[name].replace([regex], [replacement])`

Please add `transform` option to `GroupSymbolizer` which should work the same way as in `MarkersSymbolizer`. `GroupSymbolizer` could maybe use even more options from `MarkersSymbolizer`, like `multi-policy`, ... In my case...

Testcase: ```xml main geojson { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [ 12.59033203125, 50.21909462044748 ], [ 18.127441406249996, 49.49667452747045 ] ] }...

Allow relative size in `` in percents. This relative size would be applied to parent `` and to all children `` elements to scale them together.

My display is a high resolution one and therefore I must run java with `-Dsun.java2d.uiScale=2` to make UI text readable. Unfortunately this parameter also causes the rendering output to be...

We need a mean to "clone" existing `STRTree` to another one. Cloning should not build any of the source or destination `STRTree`. ```java STRTree index1 = new STRTree(); index1.insert(...); STRTree...

Add method to access `Quadtree` internals (`Root` and for `Root` its `Node`s ). `STRTree` has such methods (`itemsTree`, `getRoot`). In our case we need it for accessing any element from...

This pull request adds OpenMapTiles vector tiles among the featured layers. To ensure compatibility with the current stack based on Leaflet, it uses maplibre-gl-leaflet binding. The main advantage for users...

``` generalized_tables: route_members_gen1: source: route_members tolerance: 50 tables: route_members: type: relation_member relation_types: - route mapping: route: - hiking columns: - name: osm_id type: id - name: member type: member_id -...

I am trying to use this library also for hatching a polygon. With polygons without holes it works - for each hatching line I find intersections with a polygon and...