├── README.md ├── misc ├── austria.qml └── esri_world_basemap.qml ├── openmaptiles ├── basic.qml ├── bright.qml ├── bright_with_some_locale.qml ├── fiord.qml ├── positron.qml ├── screenshots │ ├── basic.png │ ├── bright.png │ ├── fiord.png │ └── positron.png ├── streets.qml ├── toner.qml └── voyager.qml └── osm └── geofabrik-shapefile.qml /README.md: -------------------------------------------------------------------------------- 1 | # QGIS styles for vector tiles 2 | This repo contains QGIS style sheets (QML) for vector tiles. 3 | 4 | The Mapbox GL formats have been converted from [Martin Dobias'](https://github.com/wonder-sk/mapbox2qgis) repo and further modified in QGIS. 5 | -------------------------------------------------------------------------------- /openmaptiles/basic.qml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 1 7 | 8 | 9 | 10 | 11 | 37 | 63 | 100 | 126 | 152 | 178 | 215 | 241 | 281 | 321 | 361 | 406 | 443 | 469 | 509 | 535 | 575 | 615 | 655 | 695 | 732 | 772 | 812 | 852 | 892 | 932 | 977 | 1022 | 1062 | 1102 | 1142 | 1182 | 1222 | 1262 | 1296 | 1336 | 1376 | 1377 | 1378 | 1379 | 1380 | 1431 | 1488 | 1545 | 1602 | 1659 | 1716 | 1717 | 1718 | 1719 | -------------------------------------------------------------------------------- /openmaptiles/screenshots/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutraconsulting/qgis-vectortiles-styles/376dd6840056b1558750a2b2b3206a0897bfe4a0/openmaptiles/screenshots/basic.png -------------------------------------------------------------------------------- /openmaptiles/screenshots/bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutraconsulting/qgis-vectortiles-styles/376dd6840056b1558750a2b2b3206a0897bfe4a0/openmaptiles/screenshots/bright.png -------------------------------------------------------------------------------- /openmaptiles/screenshots/fiord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutraconsulting/qgis-vectortiles-styles/376dd6840056b1558750a2b2b3206a0897bfe4a0/openmaptiles/screenshots/fiord.png -------------------------------------------------------------------------------- /openmaptiles/screenshots/positron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lutraconsulting/qgis-vectortiles-styles/376dd6840056b1558750a2b2b3206a0897bfe4a0/openmaptiles/screenshots/positron.png --------------------------------------------------------------------------------