├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── check_examples.py └── workflows │ ├── app.yml │ ├── check-version-bump.sh │ ├── maven.yml │ ├── render.yml │ └── sonar.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── LICENSE_DATA.md ├── README.md ├── SEMANTIC-VERSIONING.md ├── app ├── .gitignore ├── .nvmrc ├── README.md ├── builds │ └── index.html ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── Builds.tsx │ ├── MapView.tsx │ ├── Nav.tsx │ ├── VisualTests.tsx │ ├── examples.json │ ├── index.css │ ├── utils.ts │ └── vite-env.d.ts ├── test │ └── utils.test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── visualtests │ └── index.html └── vite.config.ts ├── examples ├── basic.html ├── data_sandwich.html └── theme_language.html ├── render-tests ├── .gitignore ├── .nvmrc ├── LICENSE.md ├── README.md ├── fixtures │ ├── empty-land-polygons-split-3857.zip │ └── empty-water-polygons-split-3857.zip ├── generate_pmtiles.sh ├── package-lock.json ├── package.json ├── report_template.html ├── result_item_template.html ├── run_render_tests.ts ├── tests │ ├── buildings │ │ ├── number │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ └── railway │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ ├── earth │ │ ├── island-names │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ └── minsize │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ ├── landcover │ │ └── antarctica │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ ├── landuse │ │ ├── aeroway │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ └── grassland │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ ├── places │ │ ├── athens │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ ├── barcelona-blinking │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ ├── capital │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ ├── casablanca │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ ├── lalitpur │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ ├── macrohood │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ ├── rome-vatican │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ │ └── variable-anchor │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ ├── roads │ │ └── access-no │ │ │ ├── expected.png │ │ │ ├── input.osm.pbf │ │ │ └── style.json │ └── water │ │ ├── dam │ │ ├── expected.png │ │ ├── input.osm.pbf │ │ └── style.json │ │ ├── fountain │ │ ├── expected.png │ │ ├── input.osm.pbf │ │ └── style.json │ │ └── tunnel │ │ ├── expected.png │ │ ├── input.osm.pbf │ │ └── style.json └── tsconfig.json ├── sprites ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── dist │ └── .gitignore ├── flavors │ ├── black.json │ ├── dark.json │ ├── grayscale.json │ ├── light.json │ └── white.json ├── refill.svg └── src │ └── main.rs ├── styles ├── .gitignore ├── .nvmrc ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── base_layers.ts │ ├── cli.ts │ ├── flavors.ts │ ├── generate_style.ts │ ├── index.ts │ └── language.ts ├── test │ ├── base_layers.test.ts │ ├── custom_flavors.test.ts │ ├── flavors.test.ts │ ├── generate_style.test.ts │ └── index.test.ts ├── tsconfig.browser.json ├── tsconfig.json ├── tsconfig.node.json └── tsup.config.ts └── tiles ├── .editorconfig ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── eclipse-formatter.xml ├── pom.xml ├── sonar-project.properties └── src ├── main ├── java │ └── com │ │ └── protomaps │ │ └── basemap │ │ ├── Basemap.java │ │ ├── feature │ │ ├── CountryCoder.java │ │ ├── FeatureId.java │ │ ├── Matcher.java │ │ └── QrankDb.java │ │ ├── layers │ │ ├── Boundaries.java │ │ ├── Buildings.java │ │ ├── Earth.java │ │ ├── Landcover.java │ │ ├── Landuse.java │ │ ├── Places.java │ │ ├── Pois.java │ │ ├── Roads.java │ │ ├── Transit.java │ │ └── Water.java │ │ ├── locales │ │ ├── CartographicLocale.java │ │ ├── NL.java │ │ └── US.java │ │ ├── names │ │ ├── NeNames.java │ │ ├── OsmNames.java │ │ ├── Script.java │ │ └── ScriptSegmenter.java │ │ ├── postprocess │ │ ├── Area.java │ │ ├── Clip.java │ │ └── LinkSimplify.java │ │ └── text │ │ ├── FontRegistry.java │ │ └── TextEngine.java └── resources │ ├── borders.json │ └── places.csv └── test ├── java └── com │ └── protomaps │ └── basemap │ ├── BasemapTest.java │ ├── feature │ ├── CountryCoderTest.java │ ├── MatcherTest.java │ └── QrankDbTest.java │ ├── layers │ ├── BoundariesTest.java │ ├── BuildingsTest.java │ ├── EarthTest.java │ ├── LandcoverTest.java │ ├── LanduseTest.java │ ├── LayerTest.java │ ├── PlacesTest.java │ ├── PoisTest.java │ ├── RoadsTest.java │ ├── TransitTest.java │ └── WaterTest.java │ ├── locales │ ├── CartographicLocaleTest.java │ ├── NLTest.java │ └── USTest.java │ ├── names │ ├── OsmNamesTest.java │ ├── ScriptSegmenterTest.java │ └── ScriptTest.java │ ├── postprocess │ ├── ClipTest.java │ └── LinkSimplifyTest.java │ └── text │ ├── FontRegistryTest.java │ └── TextEngineTest.java └── resources ├── clip.geojson ├── empty.geojson ├── ne_fixture.sql ├── ne_fixture.sqlite.zip ├── pgf-encoding-fixture.zip ├── qrank_fixture.csv.gz └── sf-downtown.osm.pbf /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/check_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/check_examples.py -------------------------------------------------------------------------------- /.github/workflows/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/workflows/app.yml -------------------------------------------------------------------------------- /.github/workflows/check-version-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/workflows/check-version-bump.sh -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/render.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/workflows/render.yml -------------------------------------------------------------------------------- /.github/workflows/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/.github/workflows/sonar.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE_DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/LICENSE_DATA.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/README.md -------------------------------------------------------------------------------- /SEMANTIC-VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/SEMANTIC-VERSIONING.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.nvmrc: -------------------------------------------------------------------------------- 1 | ../styles/.nvmrc -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/README.md -------------------------------------------------------------------------------- /app/builds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/builds/index.html -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/index.html -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/Builds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/Builds.tsx -------------------------------------------------------------------------------- /app/src/MapView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/MapView.tsx -------------------------------------------------------------------------------- /app/src/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/Nav.tsx -------------------------------------------------------------------------------- /app/src/VisualTests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/VisualTests.tsx -------------------------------------------------------------------------------- /app/src/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/examples.json -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/index.css -------------------------------------------------------------------------------- /app/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/src/utils.ts -------------------------------------------------------------------------------- /app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app/test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/test/utils.test.ts -------------------------------------------------------------------------------- /app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/tsconfig.app.json -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/tsconfig.node.json -------------------------------------------------------------------------------- /app/visualtests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/visualtests/index.html -------------------------------------------------------------------------------- /app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/app/vite.config.ts -------------------------------------------------------------------------------- /examples/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/examples/basic.html -------------------------------------------------------------------------------- /examples/data_sandwich.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/examples/data_sandwich.html -------------------------------------------------------------------------------- /examples/theme_language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/examples/theme_language.html -------------------------------------------------------------------------------- /render-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/.gitignore -------------------------------------------------------------------------------- /render-tests/.nvmrc: -------------------------------------------------------------------------------- 1 | 20.16.0 -------------------------------------------------------------------------------- /render-tests/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/LICENSE.md -------------------------------------------------------------------------------- /render-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/README.md -------------------------------------------------------------------------------- /render-tests/fixtures/empty-land-polygons-split-3857.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/fixtures/empty-land-polygons-split-3857.zip -------------------------------------------------------------------------------- /render-tests/fixtures/empty-water-polygons-split-3857.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/fixtures/empty-water-polygons-split-3857.zip -------------------------------------------------------------------------------- /render-tests/generate_pmtiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/generate_pmtiles.sh -------------------------------------------------------------------------------- /render-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/package-lock.json -------------------------------------------------------------------------------- /render-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/package.json -------------------------------------------------------------------------------- /render-tests/report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/report_template.html -------------------------------------------------------------------------------- /render-tests/result_item_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/result_item_template.html -------------------------------------------------------------------------------- /render-tests/run_render_tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/run_render_tests.ts -------------------------------------------------------------------------------- /render-tests/tests/buildings/number/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/buildings/number/expected.png -------------------------------------------------------------------------------- /render-tests/tests/buildings/number/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/buildings/number/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/buildings/number/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/buildings/number/style.json -------------------------------------------------------------------------------- /render-tests/tests/buildings/railway/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/buildings/railway/expected.png -------------------------------------------------------------------------------- /render-tests/tests/buildings/railway/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/buildings/railway/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/buildings/railway/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/buildings/railway/style.json -------------------------------------------------------------------------------- /render-tests/tests/earth/island-names/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/earth/island-names/expected.png -------------------------------------------------------------------------------- /render-tests/tests/earth/island-names/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/earth/island-names/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/earth/island-names/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/earth/island-names/style.json -------------------------------------------------------------------------------- /render-tests/tests/earth/minsize/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/earth/minsize/expected.png -------------------------------------------------------------------------------- /render-tests/tests/earth/minsize/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/earth/minsize/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/earth/minsize/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/earth/minsize/style.json -------------------------------------------------------------------------------- /render-tests/tests/landcover/antarctica/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landcover/antarctica/expected.png -------------------------------------------------------------------------------- /render-tests/tests/landcover/antarctica/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landcover/antarctica/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/landcover/antarctica/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landcover/antarctica/style.json -------------------------------------------------------------------------------- /render-tests/tests/landuse/aeroway/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landuse/aeroway/expected.png -------------------------------------------------------------------------------- /render-tests/tests/landuse/aeroway/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landuse/aeroway/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/landuse/aeroway/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landuse/aeroway/style.json -------------------------------------------------------------------------------- /render-tests/tests/landuse/grassland/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landuse/grassland/expected.png -------------------------------------------------------------------------------- /render-tests/tests/landuse/grassland/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landuse/grassland/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/landuse/grassland/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/landuse/grassland/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/athens/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/athens/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/athens/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/athens/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/athens/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/athens/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/barcelona-blinking/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/barcelona-blinking/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/barcelona-blinking/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/barcelona-blinking/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/barcelona-blinking/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/barcelona-blinking/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/capital/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/capital/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/capital/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/capital/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/capital/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/capital/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/casablanca/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/casablanca/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/casablanca/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/casablanca/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/casablanca/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/casablanca/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/lalitpur/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/lalitpur/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/lalitpur/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/lalitpur/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/lalitpur/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/lalitpur/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/macrohood/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/macrohood/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/macrohood/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/macrohood/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/macrohood/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/macrohood/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/rome-vatican/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/rome-vatican/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/rome-vatican/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/rome-vatican/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/rome-vatican/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/rome-vatican/style.json -------------------------------------------------------------------------------- /render-tests/tests/places/variable-anchor/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/variable-anchor/expected.png -------------------------------------------------------------------------------- /render-tests/tests/places/variable-anchor/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/variable-anchor/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/places/variable-anchor/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/places/variable-anchor/style.json -------------------------------------------------------------------------------- /render-tests/tests/roads/access-no/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/roads/access-no/expected.png -------------------------------------------------------------------------------- /render-tests/tests/roads/access-no/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/roads/access-no/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/roads/access-no/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/roads/access-no/style.json -------------------------------------------------------------------------------- /render-tests/tests/water/dam/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/dam/expected.png -------------------------------------------------------------------------------- /render-tests/tests/water/dam/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/dam/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/water/dam/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/dam/style.json -------------------------------------------------------------------------------- /render-tests/tests/water/fountain/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/fountain/expected.png -------------------------------------------------------------------------------- /render-tests/tests/water/fountain/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/fountain/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/water/fountain/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/fountain/style.json -------------------------------------------------------------------------------- /render-tests/tests/water/tunnel/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/tunnel/expected.png -------------------------------------------------------------------------------- /render-tests/tests/water/tunnel/input.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/tunnel/input.osm.pbf -------------------------------------------------------------------------------- /render-tests/tests/water/tunnel/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tests/water/tunnel/style.json -------------------------------------------------------------------------------- /render-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/render-tests/tsconfig.json -------------------------------------------------------------------------------- /sprites/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/.gitignore -------------------------------------------------------------------------------- /sprites/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/Cargo.lock -------------------------------------------------------------------------------- /sprites/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/Cargo.toml -------------------------------------------------------------------------------- /sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/Makefile -------------------------------------------------------------------------------- /sprites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/README.md -------------------------------------------------------------------------------- /sprites/dist/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sprites/flavors/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/flavors/black.json -------------------------------------------------------------------------------- /sprites/flavors/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/flavors/dark.json -------------------------------------------------------------------------------- /sprites/flavors/grayscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/flavors/grayscale.json -------------------------------------------------------------------------------- /sprites/flavors/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/flavors/light.json -------------------------------------------------------------------------------- /sprites/flavors/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/flavors/white.json -------------------------------------------------------------------------------- /sprites/refill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/refill.svg -------------------------------------------------------------------------------- /sprites/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/sprites/src/main.rs -------------------------------------------------------------------------------- /styles/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /styles/.nvmrc: -------------------------------------------------------------------------------- 1 | 20.10 -------------------------------------------------------------------------------- /styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/README.md -------------------------------------------------------------------------------- /styles/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/package-lock.json -------------------------------------------------------------------------------- /styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/package.json -------------------------------------------------------------------------------- /styles/src/base_layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/src/base_layers.ts -------------------------------------------------------------------------------- /styles/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/src/cli.ts -------------------------------------------------------------------------------- /styles/src/flavors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/src/flavors.ts -------------------------------------------------------------------------------- /styles/src/generate_style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/src/generate_style.ts -------------------------------------------------------------------------------- /styles/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/src/index.ts -------------------------------------------------------------------------------- /styles/src/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/src/language.ts -------------------------------------------------------------------------------- /styles/test/base_layers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/test/base_layers.test.ts -------------------------------------------------------------------------------- /styles/test/custom_flavors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/test/custom_flavors.test.ts -------------------------------------------------------------------------------- /styles/test/flavors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/test/flavors.test.ts -------------------------------------------------------------------------------- /styles/test/generate_style.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/test/generate_style.test.ts -------------------------------------------------------------------------------- /styles/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/test/index.test.ts -------------------------------------------------------------------------------- /styles/tsconfig.browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/tsconfig.browser.json -------------------------------------------------------------------------------- /styles/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/tsconfig.json -------------------------------------------------------------------------------- /styles/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/tsconfig.node.json -------------------------------------------------------------------------------- /styles/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/styles/tsup.config.ts -------------------------------------------------------------------------------- /tiles/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/.editorconfig -------------------------------------------------------------------------------- /tiles/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | .DS_Store 3 | target 4 | *.pmtiles 5 | .idea 6 | -------------------------------------------------------------------------------- /tiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/Dockerfile -------------------------------------------------------------------------------- /tiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/Makefile -------------------------------------------------------------------------------- /tiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/README.md -------------------------------------------------------------------------------- /tiles/eclipse-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/eclipse-formatter.xml -------------------------------------------------------------------------------- /tiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/pom.xml -------------------------------------------------------------------------------- /tiles/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/sonar-project.properties -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/Basemap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/Basemap.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/feature/CountryCoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/feature/CountryCoder.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/feature/FeatureId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/feature/FeatureId.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/feature/Matcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/feature/Matcher.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/feature/QrankDb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/feature/QrankDb.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Boundaries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Boundaries.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Buildings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Buildings.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Earth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Earth.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Landcover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Landcover.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Landuse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Landuse.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Places.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Places.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Pois.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Pois.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Roads.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Roads.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Transit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Transit.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/layers/Water.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/layers/Water.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/locales/CartographicLocale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/locales/CartographicLocale.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/locales/NL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/locales/NL.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/locales/US.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/locales/US.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/names/NeNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/names/NeNames.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/names/OsmNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/names/OsmNames.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/names/Script.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/names/Script.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/names/ScriptSegmenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/names/ScriptSegmenter.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/postprocess/Area.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/postprocess/Area.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/postprocess/Clip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/postprocess/Clip.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/postprocess/LinkSimplify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/postprocess/LinkSimplify.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/text/FontRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/text/FontRegistry.java -------------------------------------------------------------------------------- /tiles/src/main/java/com/protomaps/basemap/text/TextEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/java/com/protomaps/basemap/text/TextEngine.java -------------------------------------------------------------------------------- /tiles/src/main/resources/borders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/resources/borders.json -------------------------------------------------------------------------------- /tiles/src/main/resources/places.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/main/resources/places.csv -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/BasemapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/BasemapTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/feature/CountryCoderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/feature/CountryCoderTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/feature/MatcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/feature/MatcherTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/feature/QrankDbTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/feature/QrankDbTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/BoundariesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/BoundariesTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/BuildingsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/BuildingsTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/EarthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/EarthTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/LandcoverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/LandcoverTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/LanduseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/LanduseTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/LayerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/LayerTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/PlacesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/PlacesTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/PoisTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/PoisTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/RoadsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/RoadsTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/TransitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/TransitTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/layers/WaterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/layers/WaterTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/locales/CartographicLocaleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/locales/CartographicLocaleTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/locales/NLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/locales/NLTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/locales/USTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/locales/USTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/names/OsmNamesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/names/OsmNamesTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/names/ScriptSegmenterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/names/ScriptSegmenterTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/names/ScriptTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/names/ScriptTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/postprocess/ClipTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/postprocess/ClipTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/postprocess/LinkSimplifyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/postprocess/LinkSimplifyTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/text/FontRegistryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/text/FontRegistryTest.java -------------------------------------------------------------------------------- /tiles/src/test/java/com/protomaps/basemap/text/TextEngineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/java/com/protomaps/basemap/text/TextEngineTest.java -------------------------------------------------------------------------------- /tiles/src/test/resources/clip.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/resources/clip.geojson -------------------------------------------------------------------------------- /tiles/src/test/resources/empty.geojson: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tiles/src/test/resources/ne_fixture.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/resources/ne_fixture.sql -------------------------------------------------------------------------------- /tiles/src/test/resources/ne_fixture.sqlite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/resources/ne_fixture.sqlite.zip -------------------------------------------------------------------------------- /tiles/src/test/resources/pgf-encoding-fixture.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/resources/pgf-encoding-fixture.zip -------------------------------------------------------------------------------- /tiles/src/test/resources/qrank_fixture.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/resources/qrank_fixture.csv.gz -------------------------------------------------------------------------------- /tiles/src/test/resources/sf-downtown.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protomaps/basemaps/HEAD/tiles/src/test/resources/sf-downtown.osm.pbf --------------------------------------------------------------------------------