├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.json ├── bs-config.js ├── docker-compose.yml ├── docs ├── Gemfile ├── Gemfile.lock ├── _config.docker.yml ├── _config.yml ├── _includes │ └── head_custom.html ├── api.md ├── apigen.md ├── assets │ ├── TasmaniaCities.xml │ ├── TasmaniaLand.xml │ ├── TasmaniaRoads.xml │ ├── TasmaniaWaterBodies.xml │ ├── benelux.js │ ├── benelux.json │ ├── bomen-wageningen-centrum.json │ ├── custom-geojson.js │ ├── dynamic-styling.js │ ├── grenzen.js │ ├── img │ │ ├── flag-be.png │ │ ├── flag-lu.png │ │ └── flag-nl.png │ ├── mark-gallery.css │ ├── mark-gallery.js │ ├── ol.js │ ├── provincies.json │ ├── random-features.js │ ├── rougify.css │ ├── sld-alternating-graphicstroke.xml │ ├── sld-benelux.xml │ ├── sld-custom-geojson.xml │ ├── sld-dynamic-styling.xml │ ├── sld-external-graphic-mark.xml │ ├── sld-graphic-mark-placement.xml │ ├── sld-provincies.xml │ ├── sld-spoorwegen-trace.xml │ ├── sld-tasmania.xml │ ├── sld-units-of-measure.xml │ ├── sld-vector-tile.xml │ ├── sldreader-standalone.js │ ├── spoorwegen-trace.js │ ├── spoorwegen-trace.json │ ├── units-of-measure.js │ └── vector-tile.js ├── benelux.html ├── custom-geojson.html ├── documentation.yml ├── dynamic-styling.html ├── grenzen.html ├── index.html ├── mark-gallery.html ├── spoorwegen-trace.html ├── units-of-measure.html └── vector-tile.html ├── eslint.config.mjs ├── karma.conf.js ├── olGlobals.mjs ├── package.json ├── rollup.config.mjs ├── rollup.docs.config.mjs ├── src ├── Filter.js ├── OlStyler.js ├── Reader │ ├── filter.js │ └── index.js ├── Utils.js ├── categorizeSymbolizers.js ├── constants.js ├── functions │ ├── builtins │ │ └── index.js │ ├── helpers.js │ └── index.js ├── imageCache.js ├── index.js ├── olEvaluator.js ├── styles │ ├── RadialShape.js │ ├── customSymbols.js │ ├── dynamicStyles.js │ ├── geometryCalcs.js │ ├── graphicStrokeStyle.js │ ├── linePointStyle.js │ ├── lineStyle.js │ ├── pointStyle.js │ ├── polygonPointStyle.js │ ├── polygonStyle.js │ ├── qgisBrushFill.js │ ├── simpleStyles.js │ ├── static.js │ ├── styleUtils.js │ ├── textStyle.js │ └── wellknown.js └── version.js └── test ├── Filter.test.js ├── Function.test.js ├── OlStyler.test.js ├── Reader.Filter.test.js ├── Reader.Function.test.js ├── Reader.test.js ├── Utils.test.js ├── categorizeSymbolizers.test.js ├── data ├── custom-symbol.sld.js ├── double-line.sld.js ├── dynamic-line-symbolizer.sld.js ├── dynamic-point-symbolizer-with-uom.js ├── dynamic-point-symbolizer.sld.js ├── dynamic-polygon-symbolizer.sld.js ├── dynamic-text-symbolizer.sld.js ├── dynamic.sld.js ├── empty-polygon-symbolizer.sld.js ├── empty-svg-parameters.sld.js ├── external-graphicstroke.sld.js ├── externalgraphic-inlinecontent.sld.js ├── externalgraphic.sld.js ├── graphicstroke-vendoroption.sld.js ├── graphicstroke-with-comments.sld.js ├── graphicstroke-with-gap.sld.js ├── graphicstrokeSymbolizer.sld.js ├── multiple-symbolizers.sld.js ├── poly-graphic-fill-and-stroke.js ├── qgis-parametric-svg.sld.js ├── simple-line-symbolizer.sld.js ├── simple-point-symbolizer.sld.js ├── sld-with-uom.js ├── static-polygon-symbolizer.sld.js ├── test.sld.js ├── test11.sld.js ├── textSymbolizer-cdata.sld.js ├── textSymbolizer-dynamic.sld.js └── textSymbolizer.sld.js ├── geometryCalcs.test.js ├── olEvaluator.test.js ├── styleUtils.test.js └── test-helpers.js /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/babel.config.json -------------------------------------------------------------------------------- /bs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/bs-config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/_config.docker.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/_includes/head_custom.html -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/apigen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/apigen.md -------------------------------------------------------------------------------- /docs/assets/TasmaniaCities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/TasmaniaCities.xml -------------------------------------------------------------------------------- /docs/assets/TasmaniaLand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/TasmaniaLand.xml -------------------------------------------------------------------------------- /docs/assets/TasmaniaRoads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/TasmaniaRoads.xml -------------------------------------------------------------------------------- /docs/assets/TasmaniaWaterBodies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/TasmaniaWaterBodies.xml -------------------------------------------------------------------------------- /docs/assets/benelux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/benelux.js -------------------------------------------------------------------------------- /docs/assets/benelux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/benelux.json -------------------------------------------------------------------------------- /docs/assets/bomen-wageningen-centrum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/bomen-wageningen-centrum.json -------------------------------------------------------------------------------- /docs/assets/custom-geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/custom-geojson.js -------------------------------------------------------------------------------- /docs/assets/dynamic-styling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/dynamic-styling.js -------------------------------------------------------------------------------- /docs/assets/grenzen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/grenzen.js -------------------------------------------------------------------------------- /docs/assets/img/flag-be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/img/flag-be.png -------------------------------------------------------------------------------- /docs/assets/img/flag-lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/img/flag-lu.png -------------------------------------------------------------------------------- /docs/assets/img/flag-nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/img/flag-nl.png -------------------------------------------------------------------------------- /docs/assets/mark-gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/mark-gallery.css -------------------------------------------------------------------------------- /docs/assets/mark-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/mark-gallery.js -------------------------------------------------------------------------------- /docs/assets/ol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/ol.js -------------------------------------------------------------------------------- /docs/assets/provincies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/provincies.json -------------------------------------------------------------------------------- /docs/assets/random-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/random-features.js -------------------------------------------------------------------------------- /docs/assets/rougify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/rougify.css -------------------------------------------------------------------------------- /docs/assets/sld-alternating-graphicstroke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-alternating-graphicstroke.xml -------------------------------------------------------------------------------- /docs/assets/sld-benelux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-benelux.xml -------------------------------------------------------------------------------- /docs/assets/sld-custom-geojson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-custom-geojson.xml -------------------------------------------------------------------------------- /docs/assets/sld-dynamic-styling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-dynamic-styling.xml -------------------------------------------------------------------------------- /docs/assets/sld-external-graphic-mark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-external-graphic-mark.xml -------------------------------------------------------------------------------- /docs/assets/sld-graphic-mark-placement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-graphic-mark-placement.xml -------------------------------------------------------------------------------- /docs/assets/sld-provincies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-provincies.xml -------------------------------------------------------------------------------- /docs/assets/sld-spoorwegen-trace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-spoorwegen-trace.xml -------------------------------------------------------------------------------- /docs/assets/sld-tasmania.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-tasmania.xml -------------------------------------------------------------------------------- /docs/assets/sld-units-of-measure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-units-of-measure.xml -------------------------------------------------------------------------------- /docs/assets/sld-vector-tile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sld-vector-tile.xml -------------------------------------------------------------------------------- /docs/assets/sldreader-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/sldreader-standalone.js -------------------------------------------------------------------------------- /docs/assets/spoorwegen-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/spoorwegen-trace.js -------------------------------------------------------------------------------- /docs/assets/spoorwegen-trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/spoorwegen-trace.json -------------------------------------------------------------------------------- /docs/assets/units-of-measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/units-of-measure.js -------------------------------------------------------------------------------- /docs/assets/vector-tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/assets/vector-tile.js -------------------------------------------------------------------------------- /docs/benelux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/benelux.html -------------------------------------------------------------------------------- /docs/custom-geojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/custom-geojson.html -------------------------------------------------------------------------------- /docs/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/documentation.yml -------------------------------------------------------------------------------- /docs/dynamic-styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/dynamic-styling.html -------------------------------------------------------------------------------- /docs/grenzen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/grenzen.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/mark-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/mark-gallery.html -------------------------------------------------------------------------------- /docs/spoorwegen-trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/spoorwegen-trace.html -------------------------------------------------------------------------------- /docs/units-of-measure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/units-of-measure.html -------------------------------------------------------------------------------- /docs/vector-tile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/docs/vector-tile.html -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/karma.conf.js -------------------------------------------------------------------------------- /olGlobals.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/olGlobals.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /rollup.docs.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/rollup.docs.config.mjs -------------------------------------------------------------------------------- /src/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/Filter.js -------------------------------------------------------------------------------- /src/OlStyler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/OlStyler.js -------------------------------------------------------------------------------- /src/Reader/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/Reader/filter.js -------------------------------------------------------------------------------- /src/Reader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/Reader/index.js -------------------------------------------------------------------------------- /src/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/Utils.js -------------------------------------------------------------------------------- /src/categorizeSymbolizers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/categorizeSymbolizers.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/functions/builtins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/functions/builtins/index.js -------------------------------------------------------------------------------- /src/functions/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/functions/helpers.js -------------------------------------------------------------------------------- /src/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/functions/index.js -------------------------------------------------------------------------------- /src/imageCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/imageCache.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/index.js -------------------------------------------------------------------------------- /src/olEvaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/olEvaluator.js -------------------------------------------------------------------------------- /src/styles/RadialShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/RadialShape.js -------------------------------------------------------------------------------- /src/styles/customSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/customSymbols.js -------------------------------------------------------------------------------- /src/styles/dynamicStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/dynamicStyles.js -------------------------------------------------------------------------------- /src/styles/geometryCalcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/geometryCalcs.js -------------------------------------------------------------------------------- /src/styles/graphicStrokeStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/graphicStrokeStyle.js -------------------------------------------------------------------------------- /src/styles/linePointStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/linePointStyle.js -------------------------------------------------------------------------------- /src/styles/lineStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/lineStyle.js -------------------------------------------------------------------------------- /src/styles/pointStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/pointStyle.js -------------------------------------------------------------------------------- /src/styles/polygonPointStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/polygonPointStyle.js -------------------------------------------------------------------------------- /src/styles/polygonStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/polygonStyle.js -------------------------------------------------------------------------------- /src/styles/qgisBrushFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/qgisBrushFill.js -------------------------------------------------------------------------------- /src/styles/simpleStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/simpleStyles.js -------------------------------------------------------------------------------- /src/styles/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/static.js -------------------------------------------------------------------------------- /src/styles/styleUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/styleUtils.js -------------------------------------------------------------------------------- /src/styles/textStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/textStyle.js -------------------------------------------------------------------------------- /src/styles/wellknown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/styles/wellknown.js -------------------------------------------------------------------------------- /src/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/src/version.js -------------------------------------------------------------------------------- /test/Filter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/Filter.test.js -------------------------------------------------------------------------------- /test/Function.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/Function.test.js -------------------------------------------------------------------------------- /test/OlStyler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/OlStyler.test.js -------------------------------------------------------------------------------- /test/Reader.Filter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/Reader.Filter.test.js -------------------------------------------------------------------------------- /test/Reader.Function.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/Reader.Function.test.js -------------------------------------------------------------------------------- /test/Reader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/Reader.test.js -------------------------------------------------------------------------------- /test/Utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/Utils.test.js -------------------------------------------------------------------------------- /test/categorizeSymbolizers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/categorizeSymbolizers.test.js -------------------------------------------------------------------------------- /test/data/custom-symbol.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/custom-symbol.sld.js -------------------------------------------------------------------------------- /test/data/double-line.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/double-line.sld.js -------------------------------------------------------------------------------- /test/data/dynamic-line-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/dynamic-line-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/dynamic-point-symbolizer-with-uom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/dynamic-point-symbolizer-with-uom.js -------------------------------------------------------------------------------- /test/data/dynamic-point-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/dynamic-point-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/dynamic-polygon-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/dynamic-polygon-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/dynamic-text-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/dynamic-text-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/dynamic.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/dynamic.sld.js -------------------------------------------------------------------------------- /test/data/empty-polygon-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/empty-polygon-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/empty-svg-parameters.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/empty-svg-parameters.sld.js -------------------------------------------------------------------------------- /test/data/external-graphicstroke.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/external-graphicstroke.sld.js -------------------------------------------------------------------------------- /test/data/externalgraphic-inlinecontent.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/externalgraphic-inlinecontent.sld.js -------------------------------------------------------------------------------- /test/data/externalgraphic.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/externalgraphic.sld.js -------------------------------------------------------------------------------- /test/data/graphicstroke-vendoroption.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/graphicstroke-vendoroption.sld.js -------------------------------------------------------------------------------- /test/data/graphicstroke-with-comments.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/graphicstroke-with-comments.sld.js -------------------------------------------------------------------------------- /test/data/graphicstroke-with-gap.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/graphicstroke-with-gap.sld.js -------------------------------------------------------------------------------- /test/data/graphicstrokeSymbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/graphicstrokeSymbolizer.sld.js -------------------------------------------------------------------------------- /test/data/multiple-symbolizers.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/multiple-symbolizers.sld.js -------------------------------------------------------------------------------- /test/data/poly-graphic-fill-and-stroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/poly-graphic-fill-and-stroke.js -------------------------------------------------------------------------------- /test/data/qgis-parametric-svg.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/qgis-parametric-svg.sld.js -------------------------------------------------------------------------------- /test/data/simple-line-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/simple-line-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/simple-point-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/simple-point-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/sld-with-uom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/sld-with-uom.js -------------------------------------------------------------------------------- /test/data/static-polygon-symbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/static-polygon-symbolizer.sld.js -------------------------------------------------------------------------------- /test/data/test.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/test.sld.js -------------------------------------------------------------------------------- /test/data/test11.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/test11.sld.js -------------------------------------------------------------------------------- /test/data/textSymbolizer-cdata.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/textSymbolizer-cdata.sld.js -------------------------------------------------------------------------------- /test/data/textSymbolizer-dynamic.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/textSymbolizer-dynamic.sld.js -------------------------------------------------------------------------------- /test/data/textSymbolizer.sld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/data/textSymbolizer.sld.js -------------------------------------------------------------------------------- /test/geometryCalcs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/geometryCalcs.test.js -------------------------------------------------------------------------------- /test/olEvaluator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/olEvaluator.test.js -------------------------------------------------------------------------------- /test/styleUtils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/styleUtils.test.js -------------------------------------------------------------------------------- /test/test-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieuwlandGeo/SLDReader/HEAD/test/test-helpers.js --------------------------------------------------------------------------------