├── .env ├── .gitignore ├── LICENSE ├── README.md ├── css ├── style_amenity.css ├── style_boundary.css ├── style_buildings.css ├── style_country.css ├── style_county.css ├── style_district.css ├── style_forestpark.css ├── style_lakes.css ├── style_minor_roads.css ├── style_motorway.css ├── style_pedestrian.css ├── style_rails.css ├── style_roads.css ├── style_settlements.css ├── style_subdistrict.css ├── style_trunk_primary.css ├── style_water.css └── style_waterway.css ├── docker-compose.yml ├── docker └── db │ ├── .env │ ├── Dockerfile │ └── initdb-postgis.sh ├── img ├── cached2.png ├── gridset.png ├── layergroup.png └── preview2.png └── sql ├── create_separate_tables.sql └── drop_unnecessary_tables.sql /.env: -------------------------------------------------------------------------------- 1 | POSTGIS_VERSION=latest 2 | 3 | TIMEZONE=Europe/Budapest 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/README.md -------------------------------------------------------------------------------- /css/style_amenity.css: -------------------------------------------------------------------------------- 1 | [@scale < 100001] { 2 | fill: #f9edd5; 3 | } 4 | -------------------------------------------------------------------------------- /css/style_boundary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_boundary.css -------------------------------------------------------------------------------- /css/style_buildings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_buildings.css -------------------------------------------------------------------------------- /css/style_country.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_country.css -------------------------------------------------------------------------------- /css/style_county.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_county.css -------------------------------------------------------------------------------- /css/style_district.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_district.css -------------------------------------------------------------------------------- /css/style_forestpark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_forestpark.css -------------------------------------------------------------------------------- /css/style_lakes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_lakes.css -------------------------------------------------------------------------------- /css/style_minor_roads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_minor_roads.css -------------------------------------------------------------------------------- /css/style_motorway.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_motorway.css -------------------------------------------------------------------------------- /css/style_pedestrian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_pedestrian.css -------------------------------------------------------------------------------- /css/style_rails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_rails.css -------------------------------------------------------------------------------- /css/style_roads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_roads.css -------------------------------------------------------------------------------- /css/style_settlements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_settlements.css -------------------------------------------------------------------------------- /css/style_subdistrict.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_subdistrict.css -------------------------------------------------------------------------------- /css/style_trunk_primary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_trunk_primary.css -------------------------------------------------------------------------------- /css/style_water.css: -------------------------------------------------------------------------------- 1 | * { 2 | fill: #a3ccff; 3 | } 4 | -------------------------------------------------------------------------------- /css/style_waterway.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/css/style_waterway.css -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/db/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/docker/db/Dockerfile -------------------------------------------------------------------------------- /docker/db/initdb-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/docker/db/initdb-postgis.sh -------------------------------------------------------------------------------- /img/cached2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/img/cached2.png -------------------------------------------------------------------------------- /img/gridset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/img/gridset.png -------------------------------------------------------------------------------- /img/layergroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/img/layergroup.png -------------------------------------------------------------------------------- /img/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/img/preview2.png -------------------------------------------------------------------------------- /sql/create_separate_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/sql/create_separate_tables.sql -------------------------------------------------------------------------------- /sql/drop_unnecessary_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fegyi001/osmgwc/HEAD/sql/drop_unnecessary_tables.sql --------------------------------------------------------------------------------