Merge branch 'master' into power_facilities

pull/1235/head
ache051 2022-10-20 15:30:26 +13:00 zatwierdzone przez GitHub
commit 27c2ab76ce
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
339 zmienionych plików z 15808 dodań i 36 usunięć

4
.env
Wyświetl plik

@ -3,8 +3,8 @@
# Layers definition and meta data
TILESET_FILE=openmaptiles.yaml
# Use 3-part patch version to ignore patch updates, e.g. 5.0.0
TOOLS_VERSION=latest
# Use 3-part patch version to ignore patch updates, e.g. 7.0.0
TOOLS_VERSION=7.0
# Make sure these values are in sync with the ones in .env-postgres file
PGDATABASE=openmaptiles

Wyświetl plik

@ -1,4 +1,4 @@
Copyright (c) 2021, MapTiler.com & OpenMapTiles contributors.
Copyright (c) 2022, MapTiler.com & OpenMapTiles contributors.
All rights reserved.
The vector tile schema has been developed by Klokan Technologies GmbH and

Wyświetl plik

@ -22,6 +22,8 @@ export PPORT
# Local port to use with tileserver
TPORT ?= 8080
export TPORT
STYLE_FILE := build/style/style.json
STYLE_HEADER_FILE := style/style-header.json
# Allow a custom docker-compose project name
DC_PROJECT := $(or $(DC_PROJECT),$(shell (. .env; echo $${DC_PROJECT})))
@ -231,7 +233,7 @@ export HELP_MESSAGE
#
.PHONY: all
all: init-dirs build/openmaptiles.tm2source/data.yml build/mapping.yaml build-sql
all: init-dirs build/openmaptiles.tm2source/data.yml build/mapping.yaml build-sql build-style
.PHONY: help
help:
@ -253,6 +255,7 @@ endef
init-dirs:
@mkdir -p build/sql/parallel
@mkdir -p build/openmaptiles.tm2source
@mkdir -p build/style
@mkdir -p data
@mkdir -p cache
@ ! ($(DOCKER_COMPOSE) 2>/dev/null run $(DC_OPTS) openmaptiles-tools df --output=fstype /tileset| grep -q 9p) < /dev/null || ($(win_fs_error))
@ -280,6 +283,25 @@ ifeq (,$(wildcard build/sql/run_last.sql))
--function --fname=getmvt >> ./build/sql/run_last.sql'
endif
.PHONY: build-sprite
build-sprite: init-dirs
$(DOCKER_COMPOSE) run $(DC_OPTS) openmaptiles-tools bash -c 'spritezero build/style/sprite /style/icons && \
spritezero --retina build/style/sprite@2x /style/icons'
.PHONY: build-style
build-style: init-dirs
$(DOCKER_COMPOSE) run $(DC_OPTS) openmaptiles-tools bash -c 'style-tools recompose $(TILESET_FILE) $(STYLE_FILE) \
$(STYLE_HEADER_FILE) && \
spritezero build/style/sprite /style/icons && spritezero --retina build/style/sprite@2x /style/icons'
.PHONY: download-fonts
download-fonts:
$(DOCKER_COMPOSE) run $(DC_OPTS) openmaptiles-tools bash -c '[ ! -d "/export/fonts" ] && mkdir /export/fonts && \
echo "Downloading fonts..." && wget -qO /export/noto-sans.zip --show-progress \
https://github.com/openmaptiles/fonts/releases/download/v2.0/noto-sans.zip && \
echo "Unzipping fonts..." && unzip -q /export/noto-sans.zip -d /export/fonts && rm /export/noto-sans.zip || \
echo "Fonts already exist."'
.PHONY: clean
clean: clean-test-data
rm -rf build

Wyświetl plik

@ -20,14 +20,15 @@ You can start from several GL styles supporting the OpenMapTiles vector schema.
:link: [Learn how to create Mapbox GL styles with Maputnik and OpenMapTiles](http://openmaptiles.org/docs/style/maputnik/).
- [OSM OpenMapTiles](./style/README.md)
- [OSM Bright](https://github.com/openmaptiles/osm-bright-gl-style)
- [MapTiler Basic](https://github.com/openmaptiles/maptiler-basic-gl-style)
- [MapTiler 3D](https://github.com/openmaptiles/maptiler-3d-gl-style)
- [Fiord Color](https://github.com/openmaptiles/fiord-color-gl-style)
- [MapTiler Toner](https://github.com/openmaptiles/maptiler-toner-gl-style)
- [OSM Liberty](https://github.com/maputnik/osm-liberty)
- [Positron](https://github.com/openmaptiles/positron-gl-style)
- [Dark Matter](https://github.com/openmaptiles/dark-matter-gl-style)
- [Klokantech Basic](https://github.com/openmaptiles/klokantech-basic-gl-style)
- [Klokantech 3D](https://github.com/openmaptiles/klokantech-3d-gl-style)
- [Fiord Color](https://github.com/openmaptiles/fiord-color-gl-style)
- [Toner](https://github.com/openmaptiles/toner-gl-style)
- [OSM Liberty](https://github.com/maputnik/osm-liberty)
We also ported over our favorite old raster styles (TM2).
@ -145,6 +146,16 @@ make
make import-sql
```
Each time you make a modification that adds a new feature to vector tiles e.g. adding new OSM tags, modify the layer
style snippet by adding new style layer so the changes are propagated visually into the style.
All new style layers must have the `order` value which determines the order or rendering in the map style.
After the layer style snippet is modified run:
```bash
make build-style
```
Now you are ready to **generate the vector tiles**. By default, `./.env` specifies the entire planet BBOX for zooms 0-7, but running `generate-bbox-file` will analyze the data file and set the `BBOX` param to limit tile generation.
```
@ -171,7 +182,7 @@ Instead of calling `make download area=albania` you can add a .osm.pbf file in t
## License
All code in this repository is under the [BSD license](./LICENSE.md) and the cartography decisions encoded in the schema and SQL are licensed under [CC-BY](./LICENSE.md).
All code in this repository is under the [BSD license](./LICENSE.md). Design and the cartography decisions encoded in the schema and SQL are licensed under [CC-BY](./LICENSE.md).
Products or services using maps derived from OpenMapTiles schema need to visibly credit "OpenMapTiles.org" or reference "OpenMapTiles" with a link to https://openmaptiles.org/. Exceptions to attribution requirement can be granted on request.

Wyświetl plik

@ -64,6 +64,7 @@ services:
- ./build/sql:/sql
- ./build:/mapping
- ./cache:/cache
- ./style:/style
update-osm:
<<: *openmaptiles-tools
@ -127,13 +128,15 @@ services:
- "8088:8888"
tileserver-gl:
image: "maptiler/tileserver-gl"
image: "maptiler/tileserver-gl:latest"
command:
- --port
- "${TPORT:-8080}"
- --mbtiles
- "${MBTILES_FILE}"
- --config
- "/style/config.json"
ports:
- "${TPORT:-8080}:${TPORT:-8080}"
volumes:
- ./data:/data
- ./style:/style
- ./build:/build

Wyświetl plik

@ -0,0 +1,69 @@
{
"layers": [
{
"id": "airport-label-major",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "aerodrome_label",
"minzoom": 8,
"maxzoom": 17,
"layout": {
"icon-size": 1,
"text-font": [
"Noto Sans Italic"
],
"text-size": {
"stops": [
[
8,
10
],
[
14,
12
]
]
},
"icon-image": "aerodrome.12",
"text-field": {
"stops": [
[
8,
" "
],
[
11,
"{name:latin}\n{name:nonlatin}"
]
]
},
"visibility": "visible",
"text-anchor": "top",
"text-offset": [
0,
0.6
],
"text-padding": 2,
"text-optional": true,
"symbol-z-order": "auto",
"text-max-width": 9,
"icon-allow-overlap": false,
"text-allow-overlap": false
},
"paint": {
"text-color": "#5e3b9e",
"text-halo-blur": 0.5,
"text-halo-color": "rgba(255, 255, 255, 0.8)",
"text-halo-width": 1
},
"filter": [
"all",
[
"has",
"iata"
]
],
"order": 181
}
]
}

Wyświetl plik

@ -0,0 +1,203 @@
{
"layers": [
{
"id": "aeroway_fill",
"type": "fill",
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 11,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": {
"stops": [
[
6,
"rgba(223, 223, 228, 1)"
],
[
12,
"rgba(232, 231, 223, 1)"
]
]
},
"fill-opacity": 1
},
"metadata": {},
"filter": [
"==",
"$type",
"Polygon"
],
"order": 3
},
{
"id": "aeroway_runway",
"type": "line",
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 11,
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": "rgba(178, 181, 209, 1)",
"line-width": {
"base": 1.2,
"stops": [
[
11,
3
],
[
20,
48
]
]
},
"line-opacity": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"class",
"runway"
]
],
"order": 22
},
{
"id": "aeroway_taxiway",
"type": "line",
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 11,
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": "rgba(178, 181, 209, 1)",
"line-width": {
"base": 1.2,
"stops": [
[
11,
1
],
[
20,
24
]
]
},
"line-opacity": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"class",
"taxiway"
]
],
"order": 23
},
{
"id": "airport_label",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 14,
"layout": {
"text-font": [
"Noto Sans Italic",
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
15,
9
],
[
19,
15
]
]
},
"text-field": "{ref}",
"visibility": "visible",
"symbol-placement": "line"
},
"paint": {
"text-color": "#333333",
"text-halo-color": "rgba(255, 255, 255, 0.8)",
"text-halo-width": 1
},
"filter": [
"all",
[
"in",
"class",
"runway",
"taxiway"
]
],
"order": 182
},
{
"id": "airport_gate",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 16.5,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
17,
9
],
[
19,
15
]
]
},
"text-field": "{ref}",
"visibility": "visible"
},
"paint": {
"text-color": "rgba(135, 135, 135, 1)",
"text-halo-color": "rgba(255, 255, 255, 1)",
"text-halo-width": 1
},
"filter": [
"all",
[
"==",
"class",
"gate"
]
],
"order": 183
}
]
}

Wyświetl plik

@ -0,0 +1,287 @@
{
"layers": [
{
"id": "boundary_3",
"type": "line",
"source": "openmaptiles",
"source-layer": "boundary",
"minzoom": 3,
"layout": {
"line-join": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#845283",
"line-width": {
"base": 1,
"stops": [
[
4,
0.4
],
[
5,
0.7
],
[
12,
1.6
]
]
},
"line-opacity": {
"stops": [
[
3,
0.5
],
[
10,
1
]
]
},
"line-dasharray": [
5,
3
]
},
"metadata": {},
"filter": [
"all",
[
"in",
"admin_level",
3,
4
],
[
"==",
"maritime",
0
]
],
"order": 137
},
{
"id": "boundary_2",
"type": "line",
"source": "openmaptiles",
"source-layer": "boundary",
"minzoom": 0,
"layout": {
"line-cap": "round",
"line-join": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a37da1",
"line-width": {
"base": 1,
"stops": [
[
3,
0.5
],
[
5,
1.2
],
[
12,
3
]
]
},
"line-opacity": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"admin_level",
2
],
[
"==",
"maritime",
0
],
[
"==",
"disputed",
0
]
],
"order": 138
},
{
"id": "boundary_2_disputed",
"type": "line",
"source": "openmaptiles",
"source-layer": "boundary",
"minzoom": 0,
"layout": {
"line-cap": "round",
"line-join": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a37da1",
"line-width": {
"base": 1,
"stops": [
[
3,
0.3
],
[
5,
1.2
],
[
12,
3
]
]
},
"line-opacity": 1,
"line-dasharray": [
4,
3
]
},
"metadata": {},
"filter": [
"all",
[
"==",
"admin_level",
2
],
[
"==",
"disputed",
1
],
[
"==",
"maritime",
0
]
],
"order": 139
},
{
"id": "boundary_2_disputed_maritime",
"type": "line",
"source": "openmaptiles",
"source-layer": "boundary",
"minzoom": 0,
"layout": {
"line-cap": "round",
"line-join": "round",
"visibility": "visible"
},
"paint": {
"line-color": "rgba(129, 125, 163, 1)",
"line-width": {
"base": 1,
"stops": [
[
3,
0.5
],
[
5,
1.2
],
[
12,
3
]
]
},
"line-opacity": 1,
"line-dasharray": [
4,
3
]
},
"metadata": {},
"filter": [
"all",
[
"==",
"admin_level",
2
],
[
"==",
"disputed",
1
],
[
"==",
"maritime",
1
]
],
"order": 140
},
{
"id": "boundary_2_maritime",
"type": "line",
"source": "openmaptiles",
"source-layer": "boundary",
"minzoom": 4,
"layout": {
"line-cap": "round",
"line-join": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a37da1",
"line-width": {
"base": 1,
"stops": [
[
3,
0.5
],
[
5,
1.2
],
[
12,
3
]
]
},
"line-opacity": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"admin_level",
2
],
[
"==",
"disputed",
0
],
[
"==",
"maritime",
1
]
],
"order": 141
}
]
}

Wyświetl plik

@ -0,0 +1,44 @@
{
"layers": [
{
"id": "building",
"type": "fill",
"source": "openmaptiles",
"source-layer": "building",
"minzoom": 12,
"maxzoom": 24,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": {
"stops": [
[
13,
"rgba(222, 213, 207, 1)"
],
[
16,
"#d9d0c9"
]
]
},
"fill-outline-color": {
"base": 1,
"stops": [
[
13,
"#9A918A"
],
[
16,
"rgba(166, 157, 150, 1)"
]
]
}
},
"metadata": {},
"order": 19
}
]
}

Wyświetl plik

@ -0,0 +1,40 @@
{
"layers": [
{
"id": "housenumber",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "housenumber",
"minzoom": 17,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
17,
9
],
[
22,
11
]
]
},
"text-field": "{housenumber}",
"text-padding": 3,
"text-line-height": -0.15,
"symbol-avoid-edges": false,
"text-allow-overlap": false,
"text-ignore-placement": false
},
"paint": {
"text-color": "rgba(102, 102, 102, 1)",
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 1
},
"order": 145
}
]
}

Wyświetl plik

@ -22,7 +22,7 @@ CREATE TABLE simplify_vw_z13 AS
ST_SimplifyVW(geometry, power(zres(13),2)),
0.001)) AS geometry
FROM osm_landcover_polygon
WHERE ST_Area(geometry) > power(zres(10),2)
WHERE ST_Area(geometry) > power(zres(12),2)
);
CREATE INDEX ON simplify_vw_z13 USING GIST (geometry);
@ -58,7 +58,7 @@ CREATE TABLE simplify_vw_z12 AS
ST_SimplifyVW(geometry, power(zres(12),2)),
0.001)) AS geometry
FROM simplify_vw_z13
WHERE ST_Area(geometry) > power(zres(9),2)
WHERE ST_Area(geometry) > power(zres(11),2)
);
CREATE INDEX ON simplify_vw_z12 USING GIST (geometry);
@ -94,7 +94,7 @@ CREATE TABLE simplify_vw_z11 AS
ST_SimplifyVW(geometry, power(zres(11),2)),
0.001)) AS geometry
FROM simplify_vw_z12
WHERE ST_Area(geometry) > power(zres(8),2)
WHERE ST_Area(geometry) > power(zres(10),2)
);
CREATE INDEX ON simplify_vw_z11 USING GIST (geometry);
@ -130,7 +130,7 @@ CREATE TABLE simplify_vw_z10 AS
ST_SimplifyVW(geometry, power(zres(10),2)),
0.001)) AS geometry
FROM simplify_vw_z11
WHERE ST_Area(geometry) > power(zres(8),2)
WHERE ST_Area(geometry) > power(zres(9),2)
);
CREATE INDEX ON simplify_vw_z10 USING GIST (geometry);
@ -166,7 +166,7 @@ CREATE TABLE simplify_vw_z9 AS
ST_SimplifyVW(geometry, power(zres(9),2)),
0.001)) AS geometry
FROM simplify_vw_z10
WHERE ST_Area(geometry) > power(zres(7),2)
WHERE ST_Area(geometry) > power(zres(8),2)
);
CREATE INDEX ON simplify_vw_z9 USING GIST (geometry);
@ -214,7 +214,7 @@ CREATE TABLE simplify_vw_z8 AS
ST_SimplifyVW(geometry, power(zres(8),2)),
0.001)) AS geometry
FROM simplify_vw_z9
WHERE ST_Area(geometry) > power(zres(6),2)
WHERE ST_Area(geometry) > power(zres(7),2)
);
CREATE INDEX ON simplify_vw_z8 USING GIST (geometry);
@ -231,6 +231,7 @@ SELECT subclass,
ST_ClusterDBSCAN(geometry, eps := 0, minpoints := 1) OVER () AS cid,
geometry
FROM simplify_vw_z8
WHERE subclass IN ('wood', 'forest')
) union_geom
GROUP BY subclass,
cid
@ -253,7 +254,7 @@ CREATE TABLE simplify_vw_z7 AS
ST_SimplifyVW(geometry, power(zres(7),2)),
0.001)) AS geometry
FROM simplify_vw_z8
WHERE ST_Area(geometry) > power(zres(5),2)
WHERE ST_Area(geometry) > power(zres(6),2)
);
CREATE INDEX ON simplify_vw_z7 USING GIST (geometry);

Wyświetl plik

@ -0,0 +1,476 @@
{
"layers": [
{
"id": "landcover_classes",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
"maxzoom": 13,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": [
"match",
[
"get",
"class"
],
"farmland",
"#eef0d5",
"wood",
"#add19e",
"rock",
"#eee5dc",
"grass",
"#cdebb0",
"sand",
"#f5e9c6",
"wetland",
"#add19e",
"#000"
],
"fill-opacity": {
"stops": [
[
7,
0.5
],
[
10,
1
]
]
},
"fill-antialias": false
},
"metadata": {},
"filter": [
"all",
[
"in",
"class",
"farmland",
"wood",
"rock",
"grass",
"wetland",
"sand"
]
],
"order": 4
},
{
"id": "landcover_class_outline",
"type": "line",
"source": "openmaptiles",
"source-layer": "landcover",
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": "#c7c9ae",
"line-width": 0.5
},
"filter": [
"all",
[
"in",
"class",
"farmland"
]
],
"order": 5
},
{
"id": "landcover_park",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
"minzoom": 13,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": "#c8facc",
"fill-antialias": true
},
"filter": [
"all",
[
"==",
"subclass",
"park"
]
],
"order": 6
},
{
"id": "landcover_subclasses",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
"minzoom": 13,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": [
"match",
[
"get",
"subclass"
],
"allotments",
"#c9e1bf",
"bare_rock",
"#eee5dc",
"beach",
"#fff1ba",
"bog",
"#d6d99f",
"dune",
"#f5e9c6",
"scrub",
"#c8d7ab",
"farm",
"#f5dcba",
"farmland",
"#eef0d5",
"forest",
"#add19e",
"grass",
"#cdebb0",
"grassland",
"#cdebb0",
"golf_course",
"#def6c0",
"heath",
"#d6d99f",
"mangrove",
"#c8d7ab",
"meadow",
"#cdebb0",
"orchard",
"#aedfa3",
"park",
"#c8facc",
"garden",
"#cdebb0",
"plant_nursery",
"#aedfa3",
"recreation_ground",
"#d5ffd9",
"reedbed",
"#cdebb0",
"saltmarsh",
"#cdebb0",
"sand",
"#f5e9c6",
"scree",
"#eee5dc",
"swamp",
"#add19e",
"tidalflat",
"#DED6CF",
"village_green",
"#cdebb0",
"vineyard",
"#aedfa3",
"wet_meadow",
"#cdebb0",
"wetland",
"#add19e",
"wood",
"#add19e",
"marsh",
"#ff0",
"#FFFFFF"
],
"fill-antialias": true
},
"filter": [
"all",
[
"in",
"subclass",
"allotments",
"bare_rock",
"beach",
"dune",
"scrub",
"farm",
"farmland",
"forest",
"garden",
"grass",
"grassland",
"golf_course",
"heath",
"meadow",
"orchard",
"plant_nursery",
"recreation_ground",
"reedbed",
"saltmarsh",
"sand",
"scree",
"swamp",
"tidalflat",
"tundra",
"village_green",
"vineyard",
"wet_meadow",
"wetland",
"wood"
]
],
"order": 7
},
{
"id": "landcover_subclass_patterns",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
"minzoom": 13,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-opacity": [
"match",
[
"get",
"subclass"
],
"beach",
0.4,
"forest",
0.4,
"bare_rock",
0.3,
"scrub",
0.6,
"garden",
0.6,
"scree",
0.3,
"wood",
0.4,
1
],
"fill-pattern": [
"match",
[
"get",
"subclass"
],
"allotments",
"allotments",
"bare_rock",
"rock_overlay",
"beach",
"beach",
"bog",
"wetland_bog",
"scrub",
"scrub",
"forest",
"leaftype_unknown",
"garden",
"plant_nursery",
"mangrove",
"wetland_mangrove",
"marsh",
"wetland_marsh",
"orchard",
"orchard",
"plant_nursery",
"plant_nursery",
"reedbed",
"wetland_reed",
"saltmarsh",
"wetland_marsh",
"scree",
"scree_overlay",
"swamp",
"wetland_swamp",
"vineyard",
"vineyard",
"wet_meadow",
"wetland_marsh",
"wetland",
"wetland",
"wood",
"leaftype_unknown",
""
]
},
"metadata": {},
"filter": [
"all",
[
"in",
"subclass",
"allotments",
"bare_rock",
"beach",
"bog",
"dune",
"scrub",
"farm",
"farmland",
"forest",
"garden",
"grass",
"grassland",
"golf_course",
"heath",
"mangrove",
"marsh",
"meadow",
"orchard",
"park",
"plant_nursery",
"recreation_ground",
"reedbed",
"saltern",
"saltmarsh",
"sand",
"scree",
"swamp",
"village_green",
"vineyard",
"wet_meadow",
"wetland",
"wood"
]
],
"order": 8
},
{
"id": "landcover_subclass_outline",
"type": "line",
"source": "openmaptiles",
"source-layer": "landcover",
"minzoom": 15,
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": [
"match",
[
"get",
"subclass"
],
"allotments",
"#B1C6A8",
"farm",
"#d1b48c",
"farmland",
"#c7c9ae",
"recreation_ground",
"#3c6640",
"#000"
],
"line-width": [
"match",
[
"get",
"subclass"
],
"recreation_ground",
0.3,
0.5
],
"line-opacity": 1
},
"filter": [
"all",
[
"in",
"subclass",
"allotments",
"farm",
"farmland",
"recreation_ground"
]
],
"order": 9
},
{
"id": "landcover_ice",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
"minzoom": 5,
"paint": {
"fill-color": "#ddecec",
"fill-antialias": false
},
"metadata": {},
"filter": [
"all",
[
"in",
"class",
"ice"
]
],
"order": 10
},
{
"id": "landcover_ice_outline",
"type": "line",
"source": "openmaptiles",
"source-layer": "landcover",
"minzoom": 5,
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": "#9cf",
"line-width": {
"stops": [
[
5,
1
],
[
10,
1.5
]
]
},
"line-dasharray": {
"stops": [
[
5,
[
1,
0
]
],
[
10,
[
4,
2
]
]
]
}
},
"filter": [
"all",
[
"in",
"class",
"ice"
]
],
"order": 11
}
]
}

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 174 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 333 KiB

Wyświetl plik

@ -35,6 +35,188 @@ WHERE scalerank <= 2
) /* DELAY_MATERIALIZED_VIEW_CREATION */ ;
CREATE INDEX IF NOT EXISTS ne_50m_urban_areas_gen_z4_idx ON ne_50m_urban_areas_gen_z4 USING gist (geometry);
-- etldoc: osm_landuse_polygon_gen_z6 -> osm_landuse_polygon_gen_z6_union
-- etldoc: osm_residential_gen_z6 -> osm_landuse_polygon_gen_z6_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z6_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z6
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z6
);
-- etldoc: osm_landuse_polygon_gen_z7 -> osm_landuse_polygon_gen_z7_union
-- etldoc: osm_residential_gen_z7 -> osm_landuse_polygon_gen_z7_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z7_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z7
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z7
);
-- etldoc: osm_landuse_polygon_gen_z8 -> osm_landuse_polygon_gen_z8_union
-- etldoc: osm_residential_gen_z8 -> osm_landuse_polygon_gen_z8_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z8_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z8
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z8
);
-- etldoc: osm_landuse_polygon_gen_z9 -> osm_landuse_polygon_gen_z9_union
-- etldoc: osm_residential_gen_z9 -> osm_landuse_polygon_gen_z9_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z9_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z9
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z9
);
-- etldoc: osm_landuse_polygon_gen_z10 -> osm_landuse_polygon_gen_z10_union
-- etldoc: osm_residential_gen_z10 -> osm_landuse_polygon_gen_z10_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z10_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z10
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z10
);
-- etldoc: osm_landuse_polygon_gen_z11 -> osm_landuse_polygon_gen_z11_union
-- etldoc: osm_residential_gen_z11 -> osm_landuse_polygon_gen_z11_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z11_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z11
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z11
);
-- etldoc: osm_landuse_polygon_gen_z12 -> osm_landuse_polygon_gen_z12_union
-- etldoc: osm_residential_gen_z12 -> osm_landuse_polygon_gen_z12_union
CREATE OR REPLACE VIEW osm_landuse_polygon_gen_z12_union AS
(
SELECT osm_id,
geometry,
landuse,
amenity,
leisure,
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z12
WHERE landuse <> 'residential'
UNION ALL
SELECT NULL::bigint AS osm_id,
geometry,
'residential' AS landuse,
'' AS amenity,
'' AS leisure,
'' AS tourism,
'' AS place,
'' AS waterway
FROM osm_residential_gen_z12
);
-- etldoc: layer_landuse[shape=record fillcolor=lightpink, style="rounded,filled",
-- etldoc: label="layer_landuse |<z4> z4|<z5> z5|<z6> z6|<z7> z7|<z8> z8|<z9> z9|<z10> z10|<z11> z11|<z12> z12|<z13> z13|<z14> z14+" ] ;
@ -83,7 +265,7 @@ FROM (
FROM ne_50m_urban_areas_gen_z5
WHERE zoom_level = 5
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z6 -> layer_landuse:z6
-- etldoc: osm_landuse_polygon_gen_z6_union -> layer_landuse:z6
SELECT osm_id,
geometry,
landuse,
@ -92,10 +274,10 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z6
FROM osm_landuse_polygon_gen_z6_union
WHERE zoom_level = 6
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z7 -> layer_landuse:z7
-- etldoc: osm_landuse_polygon_gen_z7_union -> layer_landuse:z7
SELECT osm_id,
geometry,
landuse,
@ -104,10 +286,10 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z7
FROM osm_landuse_polygon_gen_z7_union
WHERE zoom_level = 7
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z8 -> layer_landuse:z8
-- etldoc: osm_landuse_polygon_gen_z8_union -> layer_landuse:z8
SELECT osm_id,
geometry,
landuse,
@ -116,10 +298,10 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z8
FROM osm_landuse_polygon_gen_z8_union
WHERE zoom_level = 8
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z9 -> layer_landuse:z9
-- etldoc: osm_landuse_polygon_gen_z9_union -> layer_landuse:z9
SELECT osm_id,
geometry,
landuse,
@ -128,10 +310,10 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z9
FROM osm_landuse_polygon_gen_z9_union
WHERE zoom_level = 9
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z10 -> layer_landuse:z10
-- etldoc: osm_landuse_polygon_gen_z10_union -> layer_landuse:z10
SELECT osm_id,
geometry,
landuse,
@ -140,10 +322,10 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z10
FROM osm_landuse_polygon_gen_z10_union
WHERE zoom_level = 10
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z11 -> layer_landuse:z11
-- etldoc: osm_landuse_polygon_gen_z11_union -> layer_landuse:z11
SELECT osm_id,
geometry,
landuse,
@ -152,10 +334,10 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z11
FROM osm_landuse_polygon_gen_z11_union
WHERE zoom_level = 11
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z12 -> layer_landuse:z12
-- etldoc: osm_landuse_polygon_gen_z12_union -> layer_landuse:z12
SELECT osm_id,
geometry,
landuse,
@ -164,7 +346,7 @@ FROM (
tourism,
place,
waterway
FROM osm_landuse_polygon_gen_z12
FROM osm_landuse_polygon_gen_z12_union
WHERE zoom_level = 12
UNION ALL
-- etldoc: osm_landuse_polygon_gen_z13 -> layer_landuse:z13

Wyświetl plik

@ -44,11 +44,13 @@ layer:
- quarter
- neighbourhood
- dam
- quarry
datasource:
geometry_field: geometry
query: (SELECT geometry, class FROM layer_landuse(!bbox!, z(!scale_denominator!))) AS t
schema:
- ./class.sql
- ./prep_landuse.sql
- ./landuse.sql
datasources:
- type: imposm3

Wyświetl plik

@ -74,6 +74,7 @@ tables:
- railway
- cemetery
- military
- quarry
# zoning
- residential
- commercial

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 62 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 63 KiB

Wyświetl plik

@ -0,0 +1,176 @@
DROP TABLE IF EXISTS cluster_zres14;
CREATE TABLE cluster_zres14 AS
(
WITH single_geom AS (
SELECT (ST_Dump(geometry)).geom AS geometry
FROM osm_landuse_polygon
WHERE landuse='residential'
)
SELECT ST_ClusterDBSCAN(geometry, eps := zres(14), minpoints := 1) over () AS cid,
geometry
FROM single_geom
);
CREATE INDEX ON cluster_zres14 USING gist(geometry);
DROP TABLE IF EXISTS cluster_zres14_union;
CREATE TABLE cluster_zres14_union AS (
SELECT ST_Buffer(
ST_Union(
ST_Buffer(
ST_SnapToGrid(geometry, 0.01)
, zres(14), 'join=mitre'
)
),-zres(14), 'join=mitre'
) AS geometry
FROM cluster_zres14
GROUP BY cid
);
CREATE INDEX ON cluster_zres14_union USING gist(geometry);
DROP TABLE IF EXISTS cluster_zres12;
CREATE TABLE cluster_zres12 AS
(
WITH single_geom AS (
SELECT (ST_Dump(geometry)).geom AS geometry
FROM osm_landuse_polygon
WHERE landuse='residential'
)
SELECT ST_ClusterDBSCAN(geometry, eps := zres(12), minpoints := 1) over () AS cid,
geometry
FROM single_geom
);
CREATE INDEX ON cluster_zres12 USING gist(geometry);
DROP TABLE IF EXISTS cluster_zres12_union;
CREATE TABLE cluster_zres12_union AS
(
SELECT ST_Buffer(
ST_Union(
ST_Buffer(
ST_SnapToGrid(geometry, 1)
, zres(12), 'join=mitre'
)
), -zres(12), 'join=mitre'
) AS geometry
FROM cluster_zres12
GROUP BY cid
);
CREATE INDEX ON cluster_zres12_union USING gist(geometry);
DROP TABLE IF EXISTS cluster_zres9;
CREATE TABLE cluster_zres9 AS
(
WITH single_geom AS (
SELECT (ST_Dump(geometry)).geom AS geometry
FROM osm_landuse_polygon
WHERE landuse='residential'
)
SELECT ST_ClusterDBSCAN(geometry, eps := zres(9), minpoints := 1) over () AS cid,
geometry
FROM single_geom
);
CREATE INDEX ON cluster_zres9 USING gist(geometry);
DROP TABLE IF EXISTS cluster_zres9_union;
CREATE TABLE cluster_zres9_union AS
(
SELECT ST_Buffer(
ST_Union(
ST_Buffer(
ST_SnapToGrid(geometry, 1)
, zres(9), 'join=mitre'
)
), -zres(9), 'join=mitre'
) AS geometry
FROM cluster_zres9
GROUP BY cid
);
CREATE INDEX ON cluster_zres9_union USING gist(geometry);
-- For z6
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z6
DROP TABLE IF EXISTS osm_residential_gen_z6 CASCADE;
CREATE TABLE osm_residential_gen_z6 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(6), 2)) AS geometry
FROM cluster_zres9_union
WHERE ST_Area(geometry) > power(zres(6), 2)
);
CREATE INDEX ON osm_residential_gen_z6 USING gist(geometry);
-- For z7
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z7
DROP TABLE IF EXISTS osm_residential_gen_z7 CASCADE;
CREATE TABLE osm_residential_gen_z7 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(7), 2)) AS geometry
FROM cluster_zres12_union
WHERE ST_Area(geometry) > power(zres(6), 2)
);
CREATE INDEX ON osm_residential_gen_z7 USING gist(geometry);
-- For z8
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z8
DROP TABLE IF EXISTS osm_residential_gen_z8 CASCADE;
CREATE TABLE osm_residential_gen_z8 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(8), 2)) AS geometry
FROM cluster_zres12_union
WHERE ST_Area(geometry) > power(zres(7), 2)
);
CREATE INDEX ON osm_residential_gen_z8 USING gist(geometry);
-- For z9
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z9
DROP TABLE IF EXISTS osm_residential_gen_z9 CASCADE;
CREATE TABLE osm_residential_gen_z9 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(9), 2)) AS geometry
FROM cluster_zres12_union
WHERE ST_Area(geometry) > power(zres(9), 2)
);
CREATE INDEX ON osm_residential_gen_z9 USING gist(geometry);
-- For z10
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z10
DROP TABLE IF EXISTS osm_residential_gen_z10 CASCADE;
CREATE TABLE osm_residential_gen_z10 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(10), 2)) AS geometry
FROM cluster_zres14_union
WHERE ST_Area(geometry) > power(zres(10), 2)
);
CREATE INDEX ON osm_residential_gen_z10 USING gist(geometry);
-- For z11
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z11
DROP TABLE IF EXISTS osm_residential_gen_z11 CASCADE;
CREATE TABLE osm_residential_gen_z11 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(11), 2)) AS geometry
FROM cluster_zres14_union
WHERE ST_Area(geometry) > power(zres(11), 2)
);
CREATE INDEX ON osm_residential_gen_z11 USING gist(geometry);
-- For z12
-- etldoc: osm_landuse_polygon -> osm_residential_gen_z12
DROP TABLE IF EXISTS osm_residential_gen_z12 CASCADE;
CREATE TABLE osm_residential_gen_z12 AS
(
SELECT ST_SimplifyVW(geometry, power(zres(12), 2)) AS geometry
FROM cluster_zres14_union
WHERE ST_Area(geometry) > power(zres(12), 2)
);
CREATE INDEX ON osm_residential_gen_z12 USING gist(geometry);

Wyświetl plik

@ -0,0 +1,369 @@
{
"layers": [
{
"id": "landuse_classes",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
"minzoom": 7,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": [
"match",
[
"get",
"class"
],
"railway",
"#ebdbe8",
"residential",
"#e0dfdf",
"cemetery",
"#aacbaf",
"military",
"#fceaea",
"commercial",
"#f2dad9",
"industrial",
"#ebdbe8",
"garages",
"#dfddce",
"retail",
"#ffd6d1",
"bus_station",
"#e9e7e2",
"school",
"#ffffe5",
"university",
"#ffffe5",
"kindergarten",
"#ffffe5",
"college",
"#ffffe5",
"hospital",
"#ffffe5",
"stadium",
"#d5ffd9",
"pitch",
"#aae0cb",
"playground",
"#d5ffd9",
"track",
"#aae0cb",
"dam",
"#adadad",
"#000"
],
"fill-opacity": 1
},
"metadata": {},
"filter": [
"all",
[
"in",
"class",
"railway",
"cemetery",
"military",
"residential",
"commercial",
"industrial",
"garages",
"retail",
"bus_station",
"school",
"university",
"kindergarten",
"college",
"hospital",
"stadium",
"pitch",
"playground",
"track",
"dam"
],
[
"==",
"$type",
"Polygon"
]
],
"order": 1
},
{
"id": "landuse_residential",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
"minzoom": 6,
"maxzoom": 24,
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": {
"stops": [
[
7,
"#d0d0d0"
],
[
11,
"#dddddd"
],
[
12,
"#e0dfdf"
]
]
}
},
"metadata": {},
"filter": [
"all",
[
"in",
"class",
"residential",
"suburbs",
"neighbourhood"
]
],
"order": 2
},
{
"id": "landuse_class_pattern",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": "#000000",
"fill-opacity": 1,
"fill-pattern": [
"match",
[
"get",
"class"
],
"military",
"military_red_hatch",
"cemetery",
"grave_yard_generic",
""
]
},
"metadata": {},
"filter": [
"all",
[
"in",
"class",
"military",
"cemetery"
]
],
"order": 25
},
{
"id": "landuse_class_outline",
"type": "line",
"source": "openmaptiles",
"source-layer": "landuse",
"minzoom": 13,
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": [
"match",
[
"get",
"class"
],
"railway",
"#c6b3c3",
"military",
"#ff5555",
"residential",
"#b9b9b9",
"commercial",
"#f2dad9",
"industrial",
"#c6b3c3",
"retail",
"#d99c95",
"school",
"#A6A68C",
"university",
"#A6A68C",
"kindergarten",
"#A6A68C",
"college",
"#A6A68C",
"hospital",
"#A6A68C",
"stadium",
"#7ca680",
"pitch",
"#7aaa97",
"playground",
"#3c6640",
"track",
"#7aaa96",
"theme_park",
"#660033",
"zoo",
"#660033",
"dam",
"#444444",
"#000"
],
"line-width": [
"match",
[
"get",
"class"
],
"railway",
0.7,
"military",
2,
"residential",
0.5,
"commercial",
0.5,
"industrial",
0.5,
"retail",
0.5,
"school",
0.3,
"university",
0.3,
"kindergarten",
0.3,
"college",
0.3,
"hospital",
0.3,
"stadium",
0.3,
"pitch",
0.5,
"playground",
0.3,
"track",
0.5,
"theme_park",
1,
"zoo",
1,
"dam",
2,
1
],
"line-offset": [
"match",
[
"get",
"class"
],
"military",
1,
0
],
"line-opacity": [
"match",
[
"get",
"class"
],
"military",
0.24,
1
]
},
"filter": [
"all",
[
"in",
"class",
"railway",
"military",
"residential",
"commercial",
"industrial",
"retail",
"school",
"university",
"kindergarten",
"college",
"hospital",
"stadium",
"pitch",
"playground",
"track",
"theme_park",
"zoo",
"dam"
]
],
"order": 26
},
{
"id": "landuse_class_themepark",
"type": "line",
"source": "openmaptiles",
"source-layer": "landuse",
"minzoom": 13,
"layout": {
"line-cap": "square",
"line-join": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#660033",
"line-width": {
"stops": [
[
9,
3.5
],
[
14,
5.5
]
]
},
"line-offset": 2,
"line-opacity": {
"stops": [
[
9,
0.1
],
[
12,
0.3
]
]
}
},
"filter": [
"all",
[
"in",
"class",
"theme_park",
"zoo"
]
],
"order": 27
}
]
}

Wyświetl plik

@ -0,0 +1,52 @@
{
"layers": [
{
"id": "mountain_peak",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "mountain_peak",
"maxzoom": 16,
"layout": {
"text-size": 10,
"icon-image": "peak",
"text-field": {
"stops": [
[
6,
" "
],
[
12,
"{name} {ele}m"
]
]
},
"text-anchor": "top",
"text-offset": [
0,
0.5
],
"text-max-width": 6,
"text-line-height": 1.1,
"text-font": [
"Noto Sans Regular",
"Noto Sans Italic"
]
},
"paint": {
"text-color": "#6e441e",
"text-halo-color": "rgba(255, 255, 255, .8)",
"text-halo-width": 1
},
"filter": [
"all",
[
"!=",
"class",
"cliff"
]
],
"order": 188
}
]
}

Wyświetl plik

@ -0,0 +1,111 @@
{
"layers": [
{
"id": "national_parks",
"type": "line",
"source": "openmaptiles",
"source-layer": "park",
"minzoom": 8,
"layout": {
"visibility": "visible"
},
"paint": {
"line-color": "rgba(154, 199, 136, 1)",
"line-width": {
"base": 1,
"stops": [
[
8,
1.2
],
[
9,
1.5
],
[
10,
3.6
],
[
24,
3.6
]
]
},
"line-offset": 1,
"line-opacity": 0.8
},
"order": 20
},
{
"id": "national_parks_thin",
"type": "line",
"source": "openmaptiles",
"source-layer": "park",
"minzoom": 10,
"layout": {
"visibility": "none"
},
"paint": {
"line-color": "rgba(93, 156, 76, 1)",
"line-width": 1.5
},
"order": 21
},
{
"id": "park-national",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "park",
"minzoom": 7,
"maxzoom": 12,
"layout": {
"text-font": [
"Noto Sans Italic"
],
"text-size": 12,
"text-field": "{name:latin}{name:nonlatin}",
"visibility": "visible",
"symbol-spacing": 150,
"text-allow-overlap": false
},
"paint": {
"text-color": {
"stops": [
[
7,
"rgba(70, 164, 70, 1)"
],
[
10,
"#008000"
]
]
},
"text-halo-blur": 0.1,
"text-halo-color": {
"stops": [
[
7,
"rgba(241, 255, 234, 1)"
],
[
10,
"rgba(208, 250, 200, 1)"
]
]
},
"text-halo-width": 0.3
},
"filter": [
"all",
[
"<=",
"rank",
2
]
],
"order": 186
}
]
}

Wyświetl plik

@ -20,7 +20,7 @@ layer:
The **capital** field marks the
[`admin_level`](http://wiki.openstreetmap.org/wiki/Tag:boundary%3Dadministrative#admin_level)
of the boundary the place is a capital of.
values: [2, 4]
values: [2, 3, 4, 5, 6]
class:
description: |
Original value of the

Wyświetl plik

@ -0,0 +1,661 @@
{
"layers": [
{
"id": "place_other",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 8,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"base": 1.2,
"stops": [
[
11,
10
],
[
14,
14
],
[
18,
16
]
]
},
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"symbol-spacing": 150,
"text-max-width": 10,
"text-transform": "none"
},
"paint": {
"text-color": {
"stops": [
[
12.5,
"#222222"
],
[
12.6,
"#777777"
]
]
},
"text-halo-blur": 0,
"text-halo-color": {
"stops": [
[
11,
"rgba(255,255,255,0.6)"
],
[
13,
"#ffffff"
]
]
},
"text-halo-width": {
"stops": [
[
8,
0.8
],
[
13,
1.5
]
]
}
},
"metadata": {},
"filter": [
"all",
[
"in",
"class",
"hamlet",
"island",
"islet",
"neighbourhood",
"suburb"
]
],
"order": 184
},
{
"id": "place_village",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 8,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"base": 1.2,
"stops": [
[
10,
10
],
[
15,
16
]
]
},
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"text-max-width": 8
},
"paint": {
"text-color": "#333",
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 1.2
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"village"
]
],
"order": 189
},
{
"id": "place_town",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 6,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"base": 1.2,
"stops": [
[
7,
10
],
[
11,
13
]
]
},
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"text-anchor": "bottom",
"text-offset": [
0,
0
],
"text-max-width": 8
},
"paint": {
"text-color": "#333",
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 1.2
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"town"
]
],
"order": 190
},
{
"id": "place_state",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 4,
"maxzoom": 12,
"layout": {
"text-font": [
"Noto Sans Regular",
"Noto Sans Bold"
],
"text-size": {
"stops": [
[
3,
10
],
[
6,
14
]
]
},
"text-field": "{name:latin}",
"visibility": "visible",
"text-padding": 2,
"text-transform": "none",
"text-letter-spacing": 0
},
"paint": {
"text-color": "#7e587d",
"text-halo-color": "rgba(255,255,255,0.7)",
"text-halo-width": 0.8
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"state"
],
[
"<",
"rank",
3
]
],
"order": 191
},
{
"id": "place_city",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 4,
"maxzoom": 14,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"base": 1.2,
"stops": [
[
4,
12
],
[
15,
18
]
]
},
"icon-image": {
"stops": [
[
4,
"place-6"
],
[
7,
" "
]
]
},
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"icon-offset": [
0,
3
],
"text-anchor": "bottom",
"text-offset": [
0,
0
],
"icon-optional": false,
"text-max-width": 8,
"icon-allow-overlap": true
},
"paint": {
"text-color": {
"stops": [
[
6,
"rgba(88, 88, 88, 1)"
],
[
14,
"rgba(32, 32, 32, 1)"
]
]
},
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"city"
],
[
"!=",
"rank",
1
]
],
"order": 192
},
{
"id": "place_capital",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 3,
"maxzoom": 15,
"layout": {
"icon-size": 1,
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"base": 1.2,
"stops": [
[
4,
11
],
[
12,
16
]
]
},
"icon-image": {
"stops": [
[
6,
"place-capital-8"
],
[
8,
""
]
]
},
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"icon-offset": [
0,
3
],
"text-anchor": "bottom",
"text-offset": [
0,
0
],
"icon-optional": false,
"text-max-width": 8,
"icon-allow-overlap": true
},
"paint": {
"text-color": {
"stops": [
[
6,
"rgba(73, 73, 73, 1)"
],
[
14,
"rgba(32, 32, 32, 1)"
]
]
},
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 1.2
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"city"
],
[
"in",
"capital",
1,
2
]
],
"order": 193
},
{
"id": "country_other",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 4,
"maxzoom": 15,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
3,
11
],
[
5,
13
],
[
7,
20
]
]
},
"text-field": "{name:latin}",
"visibility": "visible",
"text-max-width": 6.25,
"text-transform": "none"
},
"paint": {
"text-color": "rgba(131, 81, 130, 1)",
"text-halo-blur": 1,
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 0.8
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"country"
],
[
"!has",
"iso_a2"
]
],
"order": 194
},
{
"id": "country_3",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 5,
"maxzoom": 12,
"layout": {
"text-font": [
"Noto Sans Bold"
],
"text-size": {
"stops": [
[
3,
11
],
[
5,
13
],
[
7,
17
]
]
},
"text-field": "{name:latin}",
"visibility": "visible",
"text-max-width": 6.25,
"text-transform": "none"
},
"paint": {
"text-color": {
"stops": [
[
3,
"rgba(108, 78, 107, 1)"
],
[
10,
"rgba(57, 37, 73, 1)"
]
]
},
"text-halo-blur": 1,
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 0.8
},
"metadata": {},
"filter": [
"all",
[
">=",
"rank",
3
],
[
"==",
"class",
"country"
],
[
"has",
"iso_a2"
]
],
"order": 195
},
{
"id": "country_2",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 2,
"maxzoom": 12,
"layout": {
"text-font": [
"Noto Sans Bold"
],
"text-size": {
"stops": [
[
3,
11
],
[
5,
14
],
[
7,
19
]
]
},
"text-field": "{name:latin}",
"visibility": "visible",
"text-max-width": 6.25,
"text-transform": "none"
},
"paint": {
"text-color": {
"stops": [
[
3,
"rgba(108, 78, 107, 1)"
],
[
10,
"rgba(57, 37, 73, 1)"
]
]
},
"text-halo-blur": 1,
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 0.8
},
"metadata": {},
"filter": [
"all",
[
"==",
"rank",
2
],
[
"==",
"class",
"country"
],
[
"has",
"iso_a2"
]
],
"order": 196
},
{
"id": "country_1",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 2,
"maxzoom": 12,
"layout": {
"text-font": [
"Noto Sans Bold"
],
"text-size": {
"stops": [
[
3,
11
],
[
5,
14
],
[
7,
19
]
]
},
"text-field": "{name:latin}",
"visibility": "visible",
"text-max-width": 6.25,
"text-transform": "none"
},
"paint": {
"text-color": {
"stops": [
[
2,
"rgba(108, 78, 107, 1)"
],
[
10,
"rgba(57, 37, 73, 1)"
]
]
},
"text-halo-blur": 1,
"text-halo-color": "rgba(255,255,255,0.8)",
"text-halo-width": 0.8
},
"metadata": {},
"filter": [
"all",
[
"==",
"rank",
1
],
[
"==",
"class",
"country"
],
[
"has",
"iso_a2"
]
],
"order": 197
}
]
}

1704
layers/poi/style.json 100644

Plik diff jest za duży Load Diff

Plik diff jest za duży Load Diff

Wyświetl plik

@ -53,6 +53,8 @@ layer:
highway: busway
bus_guideway:
highway: bus_guideway
ferry:
highway: shipway
motorway_construction:
__AND__:
highway: construction
@ -119,6 +121,7 @@ layer:
- bridleway
- corridor
- platform
- ferry (DEPRECATED - use class)
network:
description: |
The network type derived mainly from [`network`](http://wiki.openstreetmap.org/wiki/Key:network) tag of the road.

Wyświetl plik

@ -0,0 +1,406 @@
{
"layers": [
{
"id": "ferry_label",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 14,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": 10,
"text-field": "{name}",
"text-anchor": "center",
"text-offset": [
0,
0
],
"symbol-placement": "line"
},
"paint": {
"text-color": "#6666ff",
"text-halo-blur": 1,
"text-halo-color": "rgba(255, 255, 255, 0.34)",
"text-halo-width": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"subclass",
"ferry"
]
],
"order": 175
},
{
"id": "road_label",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 14,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"base": 1,
"stops": [
[
14,
9
],
[
18,
13
]
]
},
"text-field": "{name}",
"text-anchor": "center",
"text-offset": [
0,
0
],
"symbol-placement": "line"
},
"paint": {
"text-color": "#000000",
"text-halo-color": "rgba(255, 255, 255, 0.97)",
"text-halo-width": 1
},
"metadata": {},
"filter": [
"all",
[
"!=",
"subclass",
"ferry"
]
],
"order": 176
},
{
"id": "highway-shield-tertiary",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 9,
"layout": {
"icon-size": 1,
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
9,
10
],
[
15,
11
],
[
17,
12
]
]
},
"icon-image": "road_tertiary",
"text-field": "{ref}",
"visibility": "visible",
"icon-anchor": "center",
"icon-padding": 2,
"icon-text-fit": "both",
"symbol-spacing": 560,
"symbol-placement": {
"base": 1,
"stops": [
[
10,
"point"
],
[
11,
"line"
]
]
},
"symbol-avoid-edges": true,
"icon-text-fit-padding": [
3,
4,
3,
4
],
"icon-rotation-alignment": "viewport",
"text-rotation-alignment": "viewport"
},
"paint": {
"text-color": "#3b3b3b"
},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"class",
"tertiary"
],
[
"has",
"ref"
]
],
"order": 177
},
{
"id": "highway-shield-secondary",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 9,
"layout": {
"icon-size": 1,
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
9,
10
],
[
15,
11
],
[
17,
12
]
]
},
"icon-image": "road_secondary",
"text-field": "{ref}",
"visibility": "visible",
"icon-anchor": "center",
"icon-padding": 2,
"icon-text-fit": "both",
"symbol-spacing": 560,
"symbol-placement": {
"base": 1,
"stops": [
[
10,
"point"
],
[
11,
"line"
]
]
},
"symbol-avoid-edges": true,
"icon-text-fit-padding": [
3,
4,
3,
4
],
"icon-rotation-alignment": "viewport",
"text-rotation-alignment": "viewport"
},
"paint": {
"text-color": "#323b00"
},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"class",
"secondary"
],
[
"has",
"ref"
]
],
"order": 178
},
{
"id": "highway-shield-primary",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 9,
"layout": {
"icon-size": 1,
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
9,
10
],
[
15,
11
],
[
17,
12
]
]
},
"icon-image": "road_primary",
"text-field": "{ref}",
"visibility": "visible",
"icon-anchor": "center",
"icon-padding": 2,
"icon-text-fit": "both",
"symbol-spacing": 560,
"symbol-placement": {
"base": 1,
"stops": [
[
10,
"point"
],
[
11,
"line"
]
]
},
"symbol-avoid-edges": true,
"icon-text-fit-padding": [
3,
4,
3,
4
],
"icon-rotation-alignment": "viewport",
"text-rotation-alignment": "viewport"
},
"paint": {
"text-color": "#4c2e00"
},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"class",
"primary"
],
[
"has",
"ref"
]
],
"order": 179
},
{
"id": "highway-shield-motorway",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 9,
"layout": {
"icon-size": 1,
"text-font": [
"Noto Sans Regular"
],
"text-size": {
"stops": [
[
9,
10
],
[
15,
11
],
[
17,
12
]
]
},
"icon-image": "road_motorway",
"text-field": "{ref}",
"visibility": "visible",
"icon-anchor": "center",
"icon-padding": 2,
"icon-text-fit": "both",
"text-optional": false,
"symbol-spacing": 760,
"text-max-width": 10,
"symbol-placement": {
"base": 1,
"stops": [
[
10,
"point"
],
[
11,
"line"
]
]
},
"text-keep-upright": true,
"symbol-avoid-edges": true,
"icon-text-fit-padding": [
3,
4,
3,
4
],
"icon-rotation-alignment": "viewport",
"text-rotation-alignment": "viewport"
},
"paint": {
"text-color": "#620728"
},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"class",
"motorway"
],
[
"has",
"ref"
]
],
"order": 180
}
]
}

Wyświetl plik

@ -0,0 +1,54 @@
{
"layers": [
{
"id": "water_intermittent",
"type": "fill",
"source": "openmaptiles",
"source-layer": "water",
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": "rgba(172, 218, 251, 1)",
"fill-opacity": 0.85
},
"metadata": {},
"filter": [
"all",
[
"==",
"intermittent",
1
]
],
"order": 17
},
{
"id": "water",
"type": "fill",
"source": "openmaptiles",
"source-layer": "water",
"layout": {
"visibility": "visible"
},
"paint": {
"fill-color": "#aad3df"
},
"metadata": {},
"filter": [
"all",
[
"!=",
"intermittent",
1
],
[
"!=",
"brunnel",
"tunnel"
]
],
"order": 18
}
]
}

Wyświetl plik

@ -0,0 +1,74 @@
{
"layers": [
{
"id": "water_name_line",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "water_name",
"minzoom": 0,
"layout": {
"text-font": [
"Noto Sans Regular",
"Noto Sans Bold"
],
"text-size": 12,
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"text-max-width": 5,
"symbol-placement": "line"
},
"paint": {
"text-color": "#5d60be",
"text-halo-color": "rgba(255,255,255,0.7)",
"text-halo-width": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"$type",
"LineString"
]
],
"order": 143
},
{
"id": "water_name_point",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "water_name",
"minzoom": 16,
"maxzoom": 24,
"layout": {
"text-font": [
"Noto Sans Regular"
],
"text-size": 11,
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"text-max-width": 5
},
"paint": {
"text-color": "rgba(76, 125, 173, 1)",
"text-halo-color": "rgba(255,255,255,0)",
"text-halo-width": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"$type",
"Point"
],
[
"!=",
"class",
"ocean"
]
],
"order": 144
}
]
}

Wyświetl plik

@ -0,0 +1,373 @@
{
"layers": [
{
"id": "waterway_tunnel",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"minzoom": 14,
"layout": {
"line-cap": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a0c8f0",
"line-width": {
"base": 1.3,
"stops": [
[
13,
0.5
],
[
20,
6
]
]
},
"line-dasharray": [
2,
4
]
},
"filter": [
"all",
[
"==",
"brunnel",
"tunnel"
]
],
"order": 12
},
{
"id": "waterway_river",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"layout": {
"line-cap": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a0c8f0",
"line-width": {
"base": 1.2,
"stops": [
[
11,
0.5
],
[
20,
6
]
]
}
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"river"
],
[
"!=",
"brunnel",
"tunnel"
],
[
"!=",
"intermittent",
1
]
],
"order": 13
},
{
"id": "waterway_river_intermittent",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"layout": {
"line-cap": "round"
},
"paint": {
"line-color": "#a0c8f0",
"line-width": {
"base": 1.2,
"stops": [
[
11,
0.5
],
[
20,
6
]
]
},
"line-dasharray": [
3,
2
]
},
"metadata": {},
"filter": [
"all",
[
"==",
"class",
"river"
],
[
"!=",
"brunnel",
"tunnel"
],
[
"==",
"intermittent",
1
]
],
"order": 14
},
{
"id": "waterway_other",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"layout": {
"line-cap": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a0c8f0",
"line-width": {
"base": 1.3,
"stops": [
[
13,
0.5
],
[
20,
6
]
]
}
},
"metadata": {},
"filter": [
"all",
[
"!=",
"class",
"river"
],
[
"!=",
"brunnel",
"tunnel"
],
[
"!=",
"intermittent",
1
]
],
"order": 15
},
{
"id": "waterway_other_intermittent",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"layout": {
"line-cap": "round",
"visibility": "visible"
},
"paint": {
"line-color": "#a0c8f0",
"line-width": {
"base": 1.3,
"stops": [
[
13,
0.5
],
[
20,
6
]
]
},
"line-dasharray": [
4,
3
]
},
"metadata": {},
"filter": [
"all",
[
"!=",
"class",
"river"
],
[
"!=",
"brunnel",
"tunnel"
],
[
"==",
"intermittent",
1
]
],
"order": 16
},
{
"id": "waterway-bridge-case",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"layout": {
"line-cap": "butt",
"line-join": "miter"
},
"paint": {
"line-color": "#bbbbbb",
"line-width": {
"base": 1.6,
"stops": [
[
12,
0.5
],
[
20,
5
]
]
},
"line-gap-width": {
"base": 1.3,
"stops": [
[
13,
0.5
],
[
20,
6
]
]
}
},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"brunnel",
"bridge"
]
],
"order": 103
},
{
"id": "waterway-bridge",
"type": "line",
"source": "openmaptiles",
"source-layer": "waterway",
"layout": {
"line-cap": "round",
"line-join": "round"
},
"paint": {
"line-color": "rgba(134, 204, 250, 1)",
"line-width": {
"base": 1.3,
"stops": [
[
13,
0.5
],
[
20,
6
]
]
}
},
"filter": [
"all",
[
"==",
"$type",
"LineString"
],
[
"==",
"brunnel",
"bridge"
]
],
"order": 104
},
{
"id": "water_way_name",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "waterway",
"minzoom": 0,
"layout": {
"text-font": [
"Noto Sans Regular",
"Noto Sans Bold"
],
"text-size": {
"stops": [
[
11,
10
],
[
13,
12
]
]
},
"text-field": "{name:latin}\n{name:nonlatin}",
"visibility": "visible",
"symbol-spacing": 400,
"text-max-width": 5,
"symbol-placement": "line"
},
"paint": {
"text-color": "#4d80b3",
"text-halo-color": "rgba(255, 255, 255, 0.8)",
"text-halo-width": 1
},
"metadata": {},
"filter": [
"all",
[
"==",
"$type",
"LineString"
]
],
"order": 142
}
]
}

Wyświetl plik

@ -18,7 +18,7 @@ tileset:
- layers/poi/poi.yaml
- layers/aerodrome_label/aerodrome_label.yaml
name: OpenMapTiles
version: 3.13.1
version: 3.14.0
id: openmaptiles
description: "A tileset showcasing all layers in OpenMapTiles. https://openmaptiles.org"
attribution: '<a href="https://www.openmaptiles.org/" target="_blank">&copy; OpenMapTiles</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap contributors</a>'

87
style/README.md 100644
Wyświetl plik

@ -0,0 +1,87 @@
## OSM OpenMapTiles style
_OSM OpenMapTiles_ is the official style of OpenMapTiles.
Its purpose is to display all features in vector tiles.
OSM OpenMapTiles style is heavily inspired by
[OSM Carto](https://github.com/gravitystorm/openstreetmap-carto).
Huge credit belongs to the original
[authors](https://github.com/gravitystorm/openstreetmap-carto/blob/master/LICENSE.txt).
### Fonts
OSM OpenMapTiles style used _Noto Sans_ fonts.
To download these fonts run:
```bash
make download-fonts
```
It downloads _Noto Sans_ fonts (~70MB) and extract them into [openmaptiles/data/fonts](../data/fonts) directory.
### Icons/sprite
All icons which are used OpenMapTiles style are located in [openmaptiles/style/icons](icons).
After the style is built, the icons are composed into sprite files located in `build` directory.
Additional svg icons can be added to [openmaptiles/style/icons](icons) directory.
To generate new sprite files with added icons, run:
```bash
make build-sprite
```
Sprite files will be generated into `build` directory.
### OSM Icons
Icons in the _OSM OpenMapTiles_ style are based on original
[OSM Carto](https://github.com/gravitystorm/openstreetmap-carto) symbols.
The original icons can be found in
[openstreetmap-carto/symbols](https://github.com/gravitystorm/openstreetmap-carto/tree/master/symbols).
Icons used in _OSM OpenMapTiles_ style were scaled down and saved as svg.
### Build style
To build style run:
```bash
make build-style
```
It generates new sprite files and merges all style snippets from each layer, orders them according the `order` value
and saves the complete style into `build/style/style.json`.
### Tileserver-gl
The tileserver serves both the tiles and the OSM OpenMapTiles map.
#### MBTiles (default)
By default, the tileserver serves OSM OpenMapTiles map based on tiles from `data/tiles.mbtiles` as defined in
[style-header.json](./style-header.json).
```json
"sources": {
"openmaptiles": {
"type": "vector",
"url": "mbtiles:///data/tiles.mbtiles"
},
...
}
```
#### Serve from the db
The tileserver can also serve OSM OpenMapTiles map based on dynamically generated tiles directly from the database.
Start the database container and the postserve container:
```bash
make start-db
make start-postserve
```
In [style-header.json](./style-header.json) change the source of tiles to PostServe:
#### Start tileserver
Before you start the tileserver, make sure you have fonts downloaded in [openmaptiles/data/fonts](../data/fonts),
sprites generated and style built:
```bash
make download-fonts
make build-style
```
Start tileserver:
```bash
make start-tileserver
```
And go to http://localhost:8080.

22
style/config.json 100644
Wyświetl plik

@ -0,0 +1,22 @@
{
"options": {
"paths": {
"fonts": "/data/fonts",
"sprites": "/build/style",
"styles": "/build/style"
}
},
"styles": {
"OSM OpenMapTiles": {
"style": "style.json",
"tilejson": {
"type": "overlay"
}
}
},
"data": {
"openmaptiles": {
"mbtiles": "/data/tiles.mbtiles"
}
}
}

Wyświetl plik

@ -0,0 +1,5 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.9" d="M9.5 4.10803H4.5V12.108H9.5V4.10803Z" fill="#666666" fill-opacity="0.3"/>
<path d="M10 13H4V14H10V13Z" fill="#666666"/>
<path d="M4 3V2L7 0L10 2V3H4Z" fill="#666666"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 294 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 0C5.25464 0 5 2 5 2V3.96875L0 7.5V8.5L5 7.25V9.65625L3 11V12L6 11.25L9 12V11L7 9.65625V7.25L12 8.5V7.5L7 3.96875V2C7 2 6.74536 0 6 0Z" fill="#8461C4"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 307 B

Wyświetl plik

@ -0,0 +1,14 @@
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="14" height="14" viewBox="0 0 14 14" id="svg2">
<metadata id="metadata8">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs6"/>
<rect width="14" height="14" x="0" y="0" id="canvas" style="fill:none;stroke:none;visibility:hidden"/>
<path d="M 3,0 C 2,0 2,0.4670568 2,1 L 2,3 C 2,4 0,4 0,6 l 0,7 c 0,0.566252 0.467057,1 1,1 l 4,0 c 0.599561,0 1,-0.400439 1,-1 L 6,6 C 6,4 4,4 4,3 L 4,1 C 4,0.4337479 4,0 3,0 z m 4,5 c 0,3 0.47106,5 3,5 l 0,2 c 0,0.666911 -1,1 -1.5,1 -1,0 -1.5,0 -1.5,1 l 7,0 C 14,13 13.5,13 12.5,13 12,13 11,12.633602 11,12 l 0,-2 c 2.47106,0 3,-2 3,-5 L 7,5 z" id="alcohol" style="fill:#ac39ac;fill-opacity:1;stroke:none" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.1 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="4" height="4" viewBox="0 0 4 4" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.5 2C1.77614 2 2 1.77614 2 1.5C2 1.22386 1.77614 1 1.5 1C1.22386 1 1 1.22386 1 1.5C1 1.77614 1.22386 2 1.5 2Z" fill="#F2EFE9"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 238 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 0L0 3.5V5.5L1.5 4.84961V14H3V4.19922L7 2.5L11 4.19922V14H12.5V4.84961L14 5.5V3.5L7 0ZM6.97266 5.04883C6.5841 5.04883 6.26758 5.36304 6.26758 5.75195C6.26758 6.14173 6.5841 6.45508 6.97266 6.45508C7.36104 6.45508 7.67578 6.14173 7.67578 5.75195C7.67578 5.36304 7.36087 5.04883 6.97266 5.04883ZM5.04883 6.1875C4.93938 6.16254 4.83125 6.22611 4.80664 6.33398L4.31445 8.375C4.28792 8.48322 4.35414 8.58996 4.46289 8.61719L5.04883 8.75781C5.15566 8.78591 5.2664 8.71955 5.29102 8.61133L5.7832 6.57227C5.80956 6.46404 5.74302 6.35518 5.63672 6.32812L5.04883 6.1875ZM6.76758 6.56445C6.19382 6.54996 6.04883 7.15234 6.04883 7.15234L4.56055 13.4062C4.55531 13.4396 4.55273 13.4725 4.55273 13.5059C4.55273 13.7803 4.77443 14 5.04883 14C5.27208 14 5.46109 13.8502 5.52148 13.6465L6.37305 10.127L7.18164 13.625C7.23401 13.8413 7.43082 14 7.66211 14C7.93546 14 8.1543 13.7801 8.1543 13.5059C8.1543 13.4685 8.15259 13.4319 8.14648 13.3965L7.0332 8.74805L7.12695 8.33984L7.19922 8.66211C7.2652 8.8721 7.45703 8.89062 7.45703 8.89062L8.60156 9.18359C8.62495 9.18759 8.64831 9.18945 8.67188 9.18945C8.85935 9.18945 9.00977 9.04064 9.00977 8.85352C9.00977 8.69345 8.90029 8.55692 8.75 8.52148L7.75781 8.27344L7.48633 7.16602C7.35646 6.54862 6.76758 6.56445 6.76758 6.56445ZM9.83008 7.2793C9.74786 7.2793 9.6872 7.34085 9.66992 7.41992L8.48828 13.8262C8.48828 13.8304 8.48633 13.8338 8.48633 13.8359C8.48633 13.9255 8.55924 13.998 8.64844 13.998C8.72961 13.998 8.79937 13.9354 8.81055 13.8574L9.99023 7.45117V7.43945C9.99023 7.35217 9.91927 7.2793 9.83008 7.2793Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.6 KiB

Wyświetl plik

@ -0,0 +1,14 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M3.99984 0.982666H0V2.98268H3.99984V0.982666Z" fill="#2F6133"/>
<path d="M13.9996 0.982666H9.99976V2.98268H13.9996V0.982666Z" fill="#2F6133"/>
<path d="M9.99999 2.98584H8V4.98585H9.99999V2.98584Z" fill="#2F6133"/>
<path d="M5.99987 2.98584H3.99988V4.98585H5.99987V2.98584Z" fill="#2F6133"/>
<path d="M1.99999 4.98901V6.98903H0V13.9891H1.99999V11.9891H3.99999V13.9891H5.99998V11.9891H7.99998V13.9891H9.99997V11.9891H12V13.9891H14V6.98903H12V4.98901H1.99999ZM3.99999 6.98903H5.99998V8.98904H3.99999V6.98903ZM7.99983 6.98903H9.99982V8.98904H7.99983V6.98903Z" fill="#2F6133"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 811 B

Wyświetl plik

@ -0,0 +1,5 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.5 3C0.223 3 0 3.223 0 3.5V4V8V9V9.5V11H1V9.5V9H13V10.5V11H13.5H14V10.5V9V8V6V5.5C14 5.223 13.777 5 13.5 5C13.223 5 13 5.223 13 5.5V6V8H1V4V3.5C1 3.223 0.777 3 0.5 3ZM3.5 4C2.67157 4 2 4.67157 2 5.5C2 6.32843 2.67157 7 3.5 7C4.32843 7 5 6.32843 5 5.5C5 4.67157 4.32843 4 3.5 4ZM6 5V7H12C12 6 10.9638 5 10 5H6Z" fill="#0092DA"/>
<path opacity="0.5" d="M14 0H0V2H14V0Z" fill="#0092DA"/>
<path opacity="0.5" d="M14 12H0V14H14V12Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 559 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 0V1H4C4.59887 1 4.84114 2.04307 4.9375 2.90625C3.96523 2.1499 3.02499 1.87959 2.21875 2.03125C1.18844 2.22506 0.5 3.1743 0.5 4.25C0.5 5.09192 0.812116 5.82886 1.34375 6.59375C1.80837 7.26223 2.46359 8.03381 3.28125 8.96875C3.6477 10.3278 4.3223 11.5723 5 12.25V13L4 13.5V14H10V13.5L9 13V12.25C9.6777 11.5723 10.3523 10.3278 10.7188 8.96875C11.5364 8.03381 12.1916 7.26223 12.6562 6.59375C13.1879 5.82886 13.5 5.09192 13.5 4.25C13.5 3.1743 12.8116 2.22506 11.7812 2.03125C10.975 1.87959 10.0348 2.1499 9.0625 2.90625C9.15886 2.04307 9.40113 1 10 1H11V0H3ZM2.375 3.03125C2.88484 2.93535 3.7354 3.1325 4.71875 4.03125C3.60374 4.16963 3 5.14956 3 7C3 7.0312 2.99952 7.06244 3 7.09375C2.65948 6.6981 2.37619 6.34769 2.15625 6.03125C1.68788 5.35738 1.5 4.86277 1.5 4.25C1.5 3.54968 1.81093 3.13736 2.375 3.03125ZM11.125 3.03125C11.3131 3.00414 11.484 3.00472 11.625 3.03125C12.1891 3.13736 12.5 3.54968 12.5 4.25C12.5 4.86277 12.3121 5.35738 11.8438 6.03125C11.6238 6.34769 11.3405 6.6981 11 7.09375C11.0005 7.06244 11 7.0312 11 7C11 5.14956 10.3963 4.16963 9.28125 4.03125C9.99261 3.38109 10.633 3.10216 11.125 3.03125Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

File diff suppressed because one or more lines are too long

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 26 KiB

File diff suppressed because one or more lines are too long

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 104 KiB

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M7 0C3.13444 0 0 3.13444 0 7C0 10.8656 3.13444 14 7 14C7.64556 14 8.16602 13.4795 8.16602 12.834C8.16602 12.5307 8.05384 12.2569 7.86328 12.0508C7.6805 11.8447 7.57227 11.5768 7.57227 11.2773C7.57227 10.6318 8.09273 10.1113 8.73828 10.1113H10.1113C12.258 10.1113 14 8.36932 14 6.22266C14 2.78488 10.8656 0 7 0V0ZM8.93359 1.30469C9.30185 1.30482 9.65499 1.45117 9.91539 1.71157C10.1758 1.97197 10.3221 2.3251 10.3223 2.69336C10.3225 2.87587 10.2867 3.05663 10.217 3.2253C10.1473 3.39398 10.045 3.54727 9.91608 3.67641C9.78711 3.80556 9.63397 3.90802 9.46539 3.97796C9.29681 4.04789 9.1161 4.08392 8.93359 4.08398C8.75109 4.08392 8.57038 4.04789 8.4018 3.97796C8.23322 3.90802 8.08007 3.80556 7.95111 3.67641C7.82215 3.54727 7.7199 3.39398 7.6502 3.2253C7.58051 3.05663 7.54473 2.87587 7.54492 2.69336C7.54506 2.3251 7.69141 1.97197 7.9518 1.71157C8.2122 1.45117 8.56534 1.30482 8.93359 1.30469V1.30469ZM5.03906 1.32422C5.22174 1.32403 5.40265 1.35987 5.57146 1.42969C5.74026 1.4995 5.89364 1.60193 6.02281 1.7311C6.15198 1.86027 6.2544 2.01365 6.32422 2.18245C6.39404 2.35125 6.42988 2.53217 6.42969 2.71484C6.42962 2.89735 6.39359 3.07806 6.32366 3.24664C6.25373 3.41522 6.15126 3.56836 6.02212 3.69733C5.89297 3.82629 5.73968 3.92854 5.57101 3.99823C5.40233 4.06793 5.22157 4.10371 5.03906 4.10352C4.67081 4.10338 4.31767 3.95703 4.05727 3.69663C3.79687 3.43624 3.65052 3.0831 3.65039 2.71484C3.6502 2.53234 3.68598 2.35158 3.75567 2.1829C3.82537 2.01422 3.92762 1.86093 4.05658 1.73179C4.18554 1.60265 4.33869 1.50018 4.50727 1.43025C4.67585 1.36031 4.85655 1.32429 5.03906 1.32422V1.32422ZM2.70703 4.44727C2.88954 4.44733 3.07025 4.48336 3.23883 4.55329C3.4074 4.62323 3.56055 4.72569 3.68951 4.85484C3.81848 4.98398 3.92073 5.13727 3.99042 5.30595C4.06012 5.47462 4.09589 5.65538 4.0957 5.83789C4.09557 6.20615 3.94922 6.55928 3.68882 6.81968C3.42842 7.08008 3.07529 7.22643 2.70703 7.22656C2.33877 7.22643 1.98564 7.08008 1.72524 6.81968C1.46484 6.55928 1.31849 6.20615 1.31836 5.83789C1.31817 5.65538 1.35394 5.47462 1.42364 5.30595C1.49334 5.13727 1.59559 4.98398 1.72455 4.85484C1.85351 4.72569 2.00666 4.62323 2.17524 4.55329C2.34382 4.48336 2.52452 4.44733 2.70703 4.44727V4.44727ZM11.2656 4.44727C11.4481 4.44733 11.6288 4.48336 11.7974 4.55329C11.966 4.62323 12.1191 4.72569 12.2481 4.85484C12.3771 4.98398 12.4793 5.13727 12.549 5.30595C12.6187 5.47462 12.6545 5.65538 12.6543 5.83789C12.6542 6.20615 12.5078 6.55928 12.2474 6.81968C11.987 7.08008 11.6339 7.22643 11.2656 7.22656C10.8974 7.22643 10.5442 7.08008 10.2838 6.81968C10.0234 6.55928 9.87709 6.20615 9.87695 5.83789C9.87676 5.65538 9.91254 5.47462 9.98223 5.30595C10.0519 5.13727 10.1542 4.98398 10.2831 4.85484C10.4121 4.72569 10.5653 4.62323 10.7338 4.55329C10.9024 4.48336 11.0831 4.44733 11.2656 4.44727V4.44727Z" fill="#AC39AC"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 3.0 KiB

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M14 0.00195312C13.3328 0.0917181 12.6659 0.200437 12 0.304688V10.1719L11.4922 10.1328C10.1769 10.039 8.78613 10.693 8.17578 11.6914C7.95109 12.0589 7.92742 12.6419 8.125 12.959C8.43345 13.454 9.16608 13.8683 9.96289 14.002C11.7952 13.9488 13.108 13.3018 13.998 11.9688C14 7.99996 14 4.00061 14 0.00195312ZM7.10742 0.00585938C4.65318 -0.0577682 2.24141 1.19025 0.927732 3.46484C-0.983071 6.77334 0.151325 11.0039 3.46093 12.9141C4.01365 13.2331 4.71605 13.0447 5.03515 12.4922C5.1851 12.2326 5.22533 11.9424 5.16406 11.6719C5.10945 11.4051 5.14885 11.1254 5.29687 10.8691C5.61598 10.3166 6.31838 10.1283 6.87109 10.4473L7.12304 10.5918C7.84552 9.63925 8.92737 9.14095 10.0996 8.91992C9.91763 8.70433 9.8065 8.43792 9.78134 8.15696C9.75618 7.87599 9.8182 7.59409 9.95898 7.34961C10.0873 7.12888 10.2747 6.94829 10.5 6.82812V5.55078C10.3301 5.52544 10.1665 5.46847 10.0176 5.38281C9.70271 5.2003 9.47319 4.90031 9.37944 4.54875C9.28569 4.19718 9.33537 3.82278 9.51758 3.50781C9.62064 3.32969 9.76244 3.177 9.93249 3.06104C10.1025 2.94508 10.2965 2.86882 10.5 2.83789V1.00781C10.4593 0.983368 10.4221 0.955462 10.3809 0.931641C9.3466 0.334714 8.22298 0.034781 7.10742 0.00585938ZM7.29492 0.914062C7.55846 0.900953 7.8202 0.964015 8.04883 1.0957C8.20541 1.18591 8.34265 1.30613 8.45267 1.44947C8.56269 1.59281 8.64333 1.75644 8.68996 1.93099C8.73659 2.10555 8.7483 2.28758 8.72442 2.46667C8.70053 2.64575 8.64153 2.81837 8.55078 2.97461C8.46055 3.13082 8.34042 3.26772 8.19724 3.3775C8.05407 3.48727 7.89066 3.56777 7.71635 3.61438C7.54204 3.661 7.36025 3.67282 7.18137 3.64917C7.00249 3.62552 6.83002 3.56687 6.67383 3.47656C6.35863 3.29438 6.1287 2.99453 6.03457 2.64294C5.94045 2.29134 5.98983 1.91677 6.17187 1.60156C6.28647 1.40209 6.44936 1.2346 6.64559 1.11448C6.84182 0.99435 7.0651 0.925436 7.29492 0.914062V0.914062ZM3.75586 2.43555C4.01874 2.42282 4.27975 2.48586 4.50781 2.61719C4.66414 2.7074 4.80115 2.82753 4.911 2.97071C5.02085 3.1139 5.10138 3.27732 5.148 3.45165C5.19462 3.62597 5.20641 3.80777 5.18269 3.98665C5.15897 4.16553 5.10021 4.33798 5.00976 4.49414C4.82788 4.80942 4.5282 5.03961 4.17661 5.1341C3.82502 5.22859 3.45028 5.17965 3.13476 4.99805C2.97827 4.908 2.84108 4.78799 2.73103 4.64488C2.62099 4.50177 2.54025 4.33837 2.49345 4.16403C2.44665 3.9897 2.43469 3.80785 2.45827 3.62889C2.48185 3.44993 2.54049 3.27737 2.63086 3.12109C2.74587 2.92172 2.90917 2.75445 3.10575 2.63466C3.30233 2.51486 3.52589 2.4464 3.75586 2.43555Z" fill="#734A08"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.6 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 0L5 2H6L5 4L6 6L5 8L6 10L5 12H9L8 10L9 8L8 6L9 4L8 2H9L10 0H4ZM7 3C7.26522 3 7.51957 3.10536 7.70711 3.29289C7.89464 3.48043 8 3.73478 8 4C8 4.26522 7.89464 4.51957 7.70711 4.70711C7.51957 4.89464 7.26522 5 7 5C6.73478 5 6.48043 4.89464 6.29289 4.70711C6.10536 4.51957 6 4.26522 6 4C6 3.73478 6.10536 3.48043 6.29289 3.29289C6.48043 3.10536 6.73478 3 7 3ZM7 7C7.26522 7 7.51957 7.10536 7.70711 7.29289C7.89464 7.48043 8 7.73478 8 8C8 8.26522 7.89464 8.51957 7.70711 8.70711C7.51957 8.89464 7.26522 9 7 9C6.73478 9 6.48043 8.89464 6.29289 8.70711C6.10536 8.51957 6 8.26522 6 8C6 7.73478 6.10536 7.48043 6.29289 7.29289C6.48043 7.10536 6.73478 7 7 7V7ZM3 13V14H11V13H3Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 801 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0C0 1 0 2 0 3H1V1H13V3H14V0C9.33333 0 4.66667 0 0 0ZM2 2C2 5 2 8 2 11C2 11.5992 2.40076 12 3 12H11C11.5273 12 12 11.5513 12 11C12 8 12 5 12 2H11C11 4.33333 11 6.66667 11 9C10 9 9 10 9 11H5C5 10 4 9 3 9C3 6.66667 3 4.33333 3 2H2ZM7 4C5.4292 4 4 4.9528 4 6C4 7.0472 5.4292 8 7 8C8.5708 8 10 7.0472 10 6C10 4.9528 8.5708 4 7 4ZM2 12.5C2 13.5547 2.42473 14 3 14H11C11.5273 14 12 13.5547 12 12.5C11.6949 12.7712 11.5034 12.9927 11 12.9688L3 13.0312C2.52061 13.0073 2.30509 12.8051 2 12.5Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 617 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 1C5.67392 1 4.40215 1.52678 3.46447 2.46447C2.52678 3.40215 2 4.67392 2 6C0.892 6 0 6.892 0 8V10C0 11.108 0.892 12 2 12H3V6C3 4.93913 3.42143 3.92172 4.17157 3.17157C4.92172 2.42143 5.93913 2 7 2C8.06087 2 9.07828 2.42143 9.82843 3.17157C10.5786 3.92172 11 4.93913 11 6V12H12C13.108 12 14 11.108 14 10V8C14 6.892 13.108 6 12 6C12 5.34339 11.8707 4.69321 11.6194 4.08658C11.3681 3.47995 10.9998 2.92876 10.5355 2.46447C10.0712 2.00017 9.52004 1.63188 8.91342 1.3806C8.30679 1.12933 7.65661 1 7 1ZM7 4.95508C6.69802 4.95512 6.40842 5.0751 6.19488 5.28863C5.98135 5.50217 5.86137 5.79177 5.86133 6.09375C5.86137 6.39573 5.98135 6.68533 6.19488 6.89887C6.40842 7.1124 6.69802 7.23238 7 7.23242C7.30198 7.23238 7.59158 7.1124 7.80512 6.89887C8.01865 6.68533 8.13863 6.39573 8.13867 6.09375C8.13863 5.79177 8.01865 5.50217 7.80512 5.28863C7.59158 5.0751 7.30198 4.95512 7 4.95508ZM7.75195 7.98242L5.49609 8.73438V9.48633H6.1875L6.24805 13.248H5.49609V14H8.50391V13.248H7.75195V7.98242Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.1 KiB

Wyświetl plik

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14"
id="svg2">
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6" />
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 6,1 C 5,1 4,2.0209735 4,3 l 0,1 -0.75,0 0,9 7.5,0 0,-9 L 10,4 10,3 C 10,2 8.9895132,1 8,1 z m 0.5,1.25 1,0 c 0.8599138,0 1.25,0.5994182 1.25,1.25 l 0,0.5 -3.5,0 0,-0.5 C 5.25,2.8707948 5.5557891,2.25 6.5,2.25 z M 2,4 C 0.64345039,4 0,4.6434504 0,6 l 0,5 c 0,1.35655 0.74831793,2 2,2 z m 10,0 0,9 c 1.251682,0 2,-0.748318 2,-2 L 14,6 C 14,4.6853974 13.377523,4 12,4 z"
id="luggage"
style="fill:#ac39ac;fill-opacity:1;stroke:none" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.3 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.75 3L8.25 7H6.75L5.25 3C5.25 3 3.49483 3 3.5 3L5 7H3.5L2.17691 3.57627C1.29104 4.26407 0 6.19838 0 8V10C0 10.5932 0.423729 11 1 11H13C13.5763 11 14 10.5763 14 10V8C14 5.53559 12.2726 3.58536 10 3L11.5 7H10L8.5 3C8.5 3 6.75605 3 6.75 3Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 369 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 2V9C0 9.62712 0.423729 10 1 10H13C13.5763 10 14 9.57627 14 9V2H0ZM3 3H11C11 4 12 5 13 5V7C12 7 11 8 11 9H3C3 8 2 7 1 7V5C2 5 3 4 3 3ZM7 4C5.34315 4 4 4.89543 4 6C4 7.10457 5.34315 8 7 8C8.65685 8 10 7.10457 10 6C10 4.89543 8.65685 4 7 4ZM0 10.5C0 11.6266 0.448696 12 1 12H13C13.5513 12 14 11.5547 14 10.5C13.7119 10.7712 13.4407 11 13 11H1C0.559322 11 0.271186 10.7542 0 10.5Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 510 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L6.5 7V11C6.5 11 2 12 2 13H12C12 12 7.5 11 7.5 11V7L13 1H1Z" fill="#C77400"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 194 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 0C3 0.5 2 0.5 2 1.5C2 2.5 3.5 3 3.5 3.5C3.5 4 2.83333 4.5 2.5 5C4 4.5 4.5 4.5 4.5 3.5C4.5 2.5 3.5 2 3 1.5C3 1 3.83333 0.666667 4 0ZM7.75 0C6.75 0.5 5.75 0.5 5.75 1.5C5.75 2.5 7.25 3 7.25 3.5C7.25 4 6.58333 4.5 6.25 5C7.75 4.5 8.25 4.5 8.25 3.5C8.25 2.5 7.25 2 6.75 1.5C6.75 1 7.58333 0.666667 7.75 0ZM11.5 0C10.5 0.5 9.5 0.5 9.5 1.5C9.5 2.5 11 3 11 3.5C11 4 10.3333 4.5 10 5C11.5 4.5 12 4.5 12 3.5C12 2.5 11 2 10.5 1.5C10.5 1 11.3333 0.666667 11.5 0ZM1 6V14H2V12H12V14H13V6C9 6 5 6 1 6ZM2 7H12V11H2V7ZM4 8C3.44772 8 3 8.44772 3 9C3 9.55228 3.44772 10 4 10C4.55228 10 5 9.55228 5 9C5 8.44772 4.55228 8 4 8ZM7 8C6.44772 8 6 8.44772 6 9C6 9.55228 6.44772 10 7 10C7.55228 10 8 9.55228 8 9C8 8.44772 7.55228 8 7 8ZM10 8C9.44772 8 9 8.44772 9 9C9 9.55228 9.44772 10 10 10C10.5523 10 11 9.55228 11 9C11 8.44772 10.5523 8 10 8Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 953 B

File diff suppressed because one or more lines are too long

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 14 KiB

File diff suppressed because one or more lines are too long

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 68 KiB

Wyświetl plik

@ -0,0 +1,4 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.12191 13.6267C3.90409 13.568 3.70436 13.4805 3.04318 13.1542C2.3936 12.8336 2.17109 12.7493 1.9125 12.7255C1.66974 12.7031 1.39289 12.7942 0.763128 13.1037C0.493235 13.2363 0.270939 13.3411 0.269136 13.3365C0.267316 13.332 0.26992 12.9033 0.274885 12.3839L0.283891 11.4395L0.664067 11.2545C1.81722 10.6933 1.85955 10.694 3.10287 11.2948C3.98676 11.722 4.10549 11.7658 4.38244 11.767C4.66428 11.7682 4.72731 11.7457 5.626 11.3222C6.75203 10.7914 6.88154 10.7608 7.34443 10.9159C7.49964 10.9679 7.92124 11.1517 8.28132 11.3243C9.10133 11.7173 9.33291 11.7985 9.57684 11.7783C9.84148 11.7564 10.0684 11.6697 10.8492 11.2926C11.2362 11.1057 11.6521 10.9229 11.7734 10.8865C12.1621 10.7699 12.43 10.8321 13.2655 11.2331L13.7208 11.4515L13.7067 12.0755C13.6889 12.8627 13.67 13.3168 13.6542 13.3326C13.6475 13.3393 13.4211 13.2363 13.1513 13.1037C12.614 12.8397 12.2641 12.7145 12.0634 12.7145C11.8487 12.7145 11.5591 12.8224 10.8193 13.1779C10.4323 13.3639 10.0012 13.5525 9.86125 13.597C9.45024 13.7277 9.32718 13.7 8.43916 13.2767C7.19256 12.6824 7.02307 12.64 6.54178 12.8014C6.3874 12.8532 5.95628 13.0422 5.58373 13.2214C4.65075 13.6703 4.47001 13.7204 4.12189 13.6267L4.12191 13.6267Z" fill="#2F6133"/>
<path d="M6.0166 6.02372C5.93287 5.93787 3.6379 6.98631 2.6955 7.54094C2.33207 7.75483 1.96225 7.92983 1.87368 7.92983C1.50242 7.92983 1.31055 7.46318 1.31055 6.5602C1.31055 5.31886 1.78211 4.05397 2.63542 3.00644C2.95526 2.6138 3.84911 1.9017 4.2095 1.75242C4.40835 1.67005 4.42777 1.63561 4.42777 1.36529C4.42777 0.789491 4.92729 0.593917 5.28685 1.02894C5.47133 1.25215 5.48898 1.25828 5.78308 1.20131C6.34895 1.09168 7.41619 1.1263 7.99157 1.27294C9.41504 1.63572 10.6596 2.54067 11.3575 3.72041C11.6481 4.21159 11.6618 4.3061 11.477 4.54103C11.361 4.68854 11.2412 4.72669 10.5791 4.8269C9.31844 5.01773 7.11775 5.54557 7.03681 5.67653C7.79987 8.0494 8.31657 9.55271 9.17314 11.8873L7.85575 11.3504C7.12333 9.13193 6.79159 8.14619 6.0166 6.02372Z" fill="#2F6133"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.0 KiB

Wyświetl plik

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14"
id="svg2">
<defs
id="defs3053" />
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 5,0 C 4,0 3,0.46875 2,1.46875 c -1,1 -2,2 -2,3 0.66666667,0 1.3333333,0.375 2,0.375 1.5237901,0 1.9342025,-1.3092025 3,-2.375 C 5.5389586,2.1175528 5.9898446,1.7619014 7.46875,1.9375 9.0284017,2.2709486 12,3.4600154 14,4.875 12.391103,3.2253627 10.510265,1.4108539 8,0.46875 7,-0.0261194 6,0 5,0 z m 7.34375,5.15625 -4.03125,1.75 C 4.9738455,7.4535704 1.1352801,6.1709309 1.25,6.3125 1.294552,6.367479 1.331618,6.4143303 1.375,6.46875 L 1.375,6.5 0,10 2.59375,8 3,12 4.96875,8.8125 c 0.1817584,0.031017 0.3580292,0.072019 0.5625,0.09375 L 7,12 8.09375,8.90625 C 8.430848,8.847145 8.7302067,8.734821 9.03125,8.625 L 11,11 11.03125,7.34375 C 11.08839,7.285104 11.133409,7.2170497 11.1875,7.15625 L 14,9 12.125,5.71875 c 0.07989,-0.1809565 0.15928,-0.3770034 0.21875,-0.5625 z"
id="path3003"
style="fill:#ac39ac;fill-opacity:1;stroke:none" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.7 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.301 0.531006C13.026 0.531006 12.602 0.741006 12.602 1.00001V7.00001H0V10H1.4V8.39801H12.601V10H14V1.00001C14 0.741006 13.576 0.531006 13.301 0.531006ZM0.5 3.60001C0.224 3.60001 0 3.82401 0 4.10001V6.00001H11.602V3.60001H0.5Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 359 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 0L3 3V14H4V6C4 5.20435 4.31607 4.44129 4.87868 3.87868C5.44129 3.31607 6.20435 3 7 3C7.79565 3 8.55871 3.31607 9.12132 3.87868C9.68393 4.44129 10 5.20435 10 6V14H11V3L7 0ZM6.64258 4.5C5.17135 5.59901 5.62638 6.11716 5.125 8.0293C5.0267 8.12974 4.5 8.45173 4.5 8.75977V9H9.5V8.75977C9.50659 8.45173 8.92837 8.12974 8.83008 8.0293C8.33663 6.1474 8.76148 5.34294 7.35742 4.5H6.64258ZM7 9.75C6.80109 9.75 6.61032 9.82902 6.46967 9.96967C6.32902 10.1103 6.25 10.3011 6.25 10.5C6.25 10.6989 6.32902 10.8897 6.46967 11.0303C6.61032 11.171 6.80109 11.25 7 11.25C7.19891 11.25 7.38968 11.171 7.53033 11.0303C7.67098 10.8897 7.75 10.6989 7.75 10.5C7.75 10.3011 7.67098 10.1103 7.53033 9.96967C7.38968 9.82902 7.19891 9.75 7 9.75V9.75Z" fill="#666666"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 898 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 5C0 5 0 6.5 1 6.5H13C14 6.5 14 5 13 5H1ZM2 7V10H3.5V7H2ZM10.5 7V10H12V7H10.5Z" fill="#666666"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 211 B

Wyświetl plik

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg2"
viewBox="0 0 14 14"
height="14"
width="14"
version="1.1">
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6" />
<rect
style="fill:none;stroke:none;visibility:hidden"
id="canvas"
y="0"
x="0"
height="14"
width="14" />
<path
id="beverages"
d="M 3,0 C 2,0 2,0.50227551 2,2 2,3 0,7 0,8 l 0,5 c 0,0.566252 0.467057,1 1,1 l 4,0 c 0.599561,0 1,-0.400439 1,-1 L 6,8 C 6,7 4,3 4,2 4,0.46896661 4,0 3,0 z m 7.875,1 -1,4 L 11,5 11.75,2 14,2 14,1 z M 7,6 8,13 c 0,0 0,1 1,1 l 2,0 c 1,0 1,-1 1,-1 l 1,-7 z"
style="fill:#ac39ac;fill-opacity:1;stroke:none" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 0.5V1.375L9.25 2.15625V3.25H5V2.5H5.5C6.5 2.5 6.5 1.5 5.5 1.5H3.5C2.5 1.5 2.5 2.5 3.5 2.5H4V3.25L3.0625 5C3.0416 4.99953 3.02098 5 3 5C1.38772 5 0 6.38772 0 8C0 9.61228 1.38772 11 3 11C4.61228 11 6 9.61228 6 8C6 7.65403 5.92843 7.31342 5.8125 7H6.25C7 7 7.17275 6.546 7.4375 6.28125L9.21875 4.25L9.75 5.28125C8.72746 5.76592 8 6.82487 8 8C8 9.61228 9.38772 11 11 11C12.6123 11 14 9.61228 14 8C14 6.38772 12.6123 5 11 5C10.9685 5 10.9375 4.99895 10.9062 5L10 3.25V1.65625L8 0.5ZM4.78125 4.25H7.90625L6.34375 6H5.21875C5.20027 6 5.17516 6.00212 5.15625 6C4.89285 5.71705 4.59952 5.48038 4.25 5.3125C4.23775 5.29387 4.22991 5.26855 4.21875 5.25L4.78125 4.25ZM3 6C4.00571 6 5 6.99429 5 8C5 9.00571 4.00571 10 3 10C1.99429 10 1 9.00571 1 8C1 6.99429 1.99429 6 3 6ZM11 6C12.0057 6 13 6.99429 13 8C13 9.00571 12.0057 10 11 10C9.99429 10 9 9.00571 9 8C9 6.99429 9.99429 6 11 6Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1003 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0V10H2.00008V6.5H4.50017C6.47633 6.5 8.00031 5.5 8.00031 3.25C8.00031 1 6.4871 2e-07 4.96894 0H0ZM2.00008 2H4.50017C5.46378 2 6.00023 2.52543 6.00023 3.25C6.00023 3.97457 5.36843 4.5 4.50017 4.5H2.00008V2ZM9 7V7.59386L9.50037 8V8.75H6.50025V8.5H7.00027C7.47968 8.5 7.45571 8 7.00027 8H5.50021C5.00019 8 5.00019 8.45206 5.50021 8.5H6.00023V8.75L5.43771 10.0312C5.29638 10.0014 5.14796 10 5.00019 10C3.97837 10 3.00012 10.7939 3.00012 12C3.00012 13.2061 3.97837 14 5.00019 14C6.02201 14 6.93777 13.1436 6.93777 11.9375C6.93777 11.7867 6.93387 11.6354 6.90652 11.5H7.7503L9.57225 9.5L9.93789 10.2812C9.38329 10.6158 9.00035 11.2297 9.00035 12C9.00035 13.2061 9.97861 14 11.0004 14C12.0222 14 12.938 13.1436 12.938 11.9375C12.938 10.7314 12.0222 10 11.0004 10C10.8503 10 10.7081 10.0295 10.5629 10.0625L10.0004 8.75L10 7.8L9 7ZM6.4065 9.5H8.60033L7.40654 10.75H6.56275C6.42264 10.5634 6.25827 10.4014 6.06273 10.2812L6.4065 9.5ZM5.00019 11C5.63529 11 6.00023 11.5492 6.00023 12C6.00023 12.4508 5.63529 13 5.00019 13C4.3651 13 4.00015 12.4508 4.00015 12C4.00015 11.5492 4.3651 11 5.00019 11ZM11.0004 11C11.6355 11 12.0005 11.5492 12.0005 12C12.0005 12.4508 11.6355 13 11.0004 13C10.3653 13 10.0004 12.4508 10.0004 12C10.0004 11.5492 10.3653 11 11.0004 11Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.4 KiB

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M2.74414 0C2.03388 0.0003935 1.37403 0.411708 1 1H3.36914L3.99219 2L3.36914 3H1.00195C1.37563 3.58774 2.03455 3.99897 2.74414 4C3.50238 4 4.15626 3.59577 4.51172 3H9.17773C9.53316 3.59592 10.1889 4 10.9473 4C12.081 4 13 3.10457 13 2C13 0.89543 12.081 -2e-07 10.9473 0C10.1889 -2.67571e-07 9.53316 0.404077 9.17773 1H4.51172C4.15626 0.404234 3.50238 6.68822e-08 2.74414 0ZM10.3223 1H11.5723L12.1953 2L11.5723 3H10.3223L9.69922 2L10.3223 1ZM7.98242 5.45117L8.01367 6.44922L8.97852 7.01172V8.00977H5.23828H4.99023V7.01172H5.48828C6.48568 7.01172 6.48568 6.01367 5.48828 6.01367H3.49414C2.49674 6.01367 2.49674 7.01172 3.49414 7.01172H3.99219V8.00977L3.43164 9.38281C3.3901 9.38055 3.34869 9.38281 3.30664 9.38281C2.03944 9.38281 1 10.4229 1 11.6914C1 12.9599 2.03944 14 3.30664 14C4.57384 14 5.61328 12.9599 5.61328 11.6914C5.61328 11.4518 5.55767 11.2225 5.48828 11.0039H5.98633H6.98438L9.13477 9.00781L9.41602 9.72656C8.77804 10.1428 8.35547 10.8828 8.35547 11.6914C8.35547 12.9599 9.39491 14 10.6621 14C11.9293 14 13 12.9599 13 11.6914C13 10.4229 11.9293 9.38281 10.6621 9.38281C10.62 9.38281 10.5787 9.38055 10.5371 9.38281L9.97656 8.00977V6.63672L7.98242 5.45117ZM4.83398 9.00781H7.9375L6.63477 10.2559H5.08398C4.93052 10.0684 4.756 9.85918 4.55273 9.72656L4.83398 9.00781ZM3.30664 10.5059C3.96742 10.5059 4.49023 11.03 4.49023 11.6914C4.49023 12.3528 3.96742 12.877 3.30664 12.877C2.64586 12.877 2.12305 12.3528 2.12305 11.6914C2.12305 11.03 2.64586 10.5059 3.30664 10.5059ZM10.6621 10.5059C11.3229 10.5059 11.8477 11.03 11.8477 11.6914C11.8477 12.3528 11.3229 12.877 10.6621 12.877C10.0013 12.877 9.50977 12.3528 9.50977 11.6914C9.50977 11.03 10.0013 10.5059 10.6621 10.5059Z" fill="#0092DA"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.9 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 0C2 0 1 1 1 2V12C1 13 0 14 0 14H11C11 14 10 13 10 12H13C14 12 14 11 14 11V5C14 4 13 3 12 3H10V2C10 0.760303 9.26367 0 8 0H3ZM4 1H7C8.38098 1 9 1.35282 9 2C6 2 3.85459 2.19773 4 5C4 7 2 7 2 5V3C2 1.49664 2.49664 1 4 1ZM10 4.5H11C11.6903 4.5 12.5 4.52733 12.5 6V10.5H10V4.5ZM2 12H9V13H2V12Z" fill="#C77400"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 422 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.07107 0.108276V2.01514H5.73183V0.108276H3.07107ZM8.2807 0.108276V2.01514H10.9456V0.108276H8.2807ZM8.2807 2.61207V7.87668C8.2807 8.12924 8.48407 8.33267 8.73659 8.33267H8.76974H9.19248V13.4356C9.19248 13.6797 9.3919 13.8792 9.63594 13.8792H13.5483C13.7924 13.8792 13.9918 13.6797 13.9918 13.4356V10.2603L14 9.79598L12.3049 2.61207H8.2807ZM1.69924 2.62038L0 9.80429L0.00831104 10.2727V13.4481C0.00831847 13.6921 0.207752 13.8916 0.45178 13.8916H4.36418C4.61245 13.8916 4.81179 13.6921 4.81179 13.4481V8.34926H5.23037H5.26353C5.51604 8.34926 5.71942 8.14169 5.71942 7.88912V2.62036L1.69924 2.62038ZM6.30792 2.62038V7.51602H7.68803V2.62036L6.30792 2.62038Z" fill="#2F6133"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 786 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0C0 4.66667 0 9.33333 0 14H1V11H13V14H14C14 9.33333 14 4.66667 14 0C9.33333 0 4.66667 0 0 0ZM1 1H13V10H1V1ZM4 3V4H10V3H4ZM2 5V6H12V5H2ZM2 7V8H12V7H2Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 323 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.5 0C2.11929 0 1 1.11929 1 2.5C1 3.88071 2.11929 5 3.5 5C4.42534 5 5.22398 4.49724 5.65625 3.75H7L8 2.75L9 3.75L10 2.75L11 3.75H11.5L13 2.5L11.5 1.25H5.65625C5.22398 0.502762 4.42534 0 3.5 0ZM2.5 2C2.77614 2 3 2.22386 3 2.5C3 2.77614 2.77614 3 2.5 3C2.22386 3 2 2.77614 2 2.5C2 2.22386 2.22386 2 2.5 2ZM5.23242 5.42969V8.02539H0L1.46484 10.5664H12.5352L14 8.02539H8.76758V5.42969H5.23242ZM3 11.5C2.4661 11.5 1.50771 12.5 1 12.5V14C1.53718 14 2.52542 13 3 13C3.50424 13 4.4661 14 5 14C5.4755 14 6.49229 13 7 13C7.50424 13 8.52173 14 9 14C9.50424 14 10.5254 13 11 13C11.4746 13 12.4958 14 13 14V12.5C12.5847 12.5 11.5339 11.4703 11 11.5C10.5217 11.5 9.53472 12.5 9 12.5C8.55509 12.5 7.50424 11.5 7 11.5C6.49576 11.5 5.4459 12.5 5 12.5C4.5245 12.5 3.5339 11.5 3 11.5Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 897 B

Wyświetl plik

@ -0,0 +1,4 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0V1V2V3H0.0195312C0.59024 2.99977 0.999995 3.44758 1 4C0.999968 4.55242 0.570709 5.00015 0 5V6V7V8H2V7H1V5.7168C1.59352 5.3688 1.99991 4.73382 2 4C1.99989 3.26607 1.59367 2.63115 1 2.2832V1H13V2.2832C12.4063 2.63115 12.0001 3.26607 12 4C12.0001 4.74359 12.4024 5.38585 13 5.73047V7H12V8H14V7V5H13.9687C13.398 5.00019 13 4.55242 13 4C13 3.44758 13.3804 2.99981 13.9512 3C13.9587 3.0006 13.9687 3.00195 13.9687 3.00195V3H14V1V0H0Z" fill="#AC39AC"/>
<path d="M6.99998 3C5.82238 3 4.86601 4.17599 4.86601 5.624C4.86601 6.65541 5.35035 7.54799 6.05518 7.97589C6.26728 8.10465 6.03582 8.43802 5.88008 8.22197C5.48895 7.67942 4.91852 7.33704 4.28295 7.33704C3.10536 7.33704 2.14899 8.51303 2.14899 9.96104C2.14899 11.4091 3.10537 12.5827 4.28295 12.5827C5.45153 12.5827 6.40462 11.4269 6.41694 9.99416C6.41909 9.74001 6.73636 9.7137 6.73636 10.0557C6.73636 10.5943 6.31528 13.4546 6.08982 14C6.33591 13.9237 6.74604 13.8604 6.99998 13.8604C7.25391 13.8604 7.66405 13.9237 7.91014 14C7.68468 13.4546 7.2636 10.5943 7.2636 10.0557C7.2636 9.7137 7.58084 9.74001 7.58302 9.99416C7.59534 11.4269 8.54844 12.5827 9.717 12.5827C10.8946 12.5827 11.851 11.4091 11.851 9.96104C11.851 8.51303 10.8946 7.33704 9.717 7.33704C9.08145 7.33704 8.51101 7.67942 8.11988 8.22197C7.96413 8.43802 7.73268 8.10465 7.94478 7.97589C8.6496 7.54799 9.13395 6.65541 9.13395 5.624C9.13395 4.17599 8.17757 3 6.99998 3V3Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.5 KiB

Wyświetl plik

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="14"
height="14"
viewBox="0 0 14 14"
fill="none"
version="1.1"
id="svg25532"
sodipodi:docname="books.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata25538">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs25536" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1263"
inkscape:window-height="722"
id="namedview25534"
showgrid="false"
inkscape:zoom="39.357143"
inkscape:cx="12.044554"
inkscape:cy="7"
inkscape:window-x="93"
inkscape:window-y="25"
inkscape:window-maximized="0"
inkscape:current-layer="svg25532" />
<path
d="M2.5918 0.876915C2.39328 0.884915 2.1959 0.92461 2 0.999962V8.99996C2 8.99996 5.1875 8.87496 6 12V3.59957C5.38001 2.29397 3.98142 0.820917 2.5918 0.876915ZM6 12C3.9375 10.4062 1 9.99996 1 9.99996V2.40035L0 1.99996V11L6 13H8L14 11V1.99996L13 2.40035V10.4004L8 12C7.33333 11.7453 6.55618 11.7906 6 12ZM12 0.999962C10.0075 0.893411 7.7073 2.08964 6.5 3.1191V11.5839C7.61477 10.6593 9.61358 9.44267 12 9.19918V0.999962Z"
fill="#734A08"
id="path25530"
style="fill:#ac39ac;fill-opacity:1" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.0 KiB

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M11 0C9.89543 -9.99999e-08 9 0.89543 9 2C9.00107 2.35139 9.32323 2.6963 9.5 3H12.5C12.6761 2.69611 12.9995 2.35122 13 2C13 0.89543 12.1046 -3e-07 11 0ZM9.5 4V5H12.5V4H9.5ZM9.5 6C9.21563 6.57528 8.84893 7.2576 8.54883 8C8.84563 8.62039 9.00015 9.30538 9 10C8.99789 10.8188 8.78093 11.6211 8.37305 12.3184C8.57813 12.9139 8.82493 13.482 9 14H13C13.3506 12.9569 13.9997 11.7169 14 10.4453C13.9999 8.77293 13.0761 7.17018 12.5 6H9.5ZM4 6.05469C3.47471 6.05469 2.95457 6.15815 2.46927 6.35917C1.98396 6.56019 1.54301 6.85483 1.17157 7.22626C0.800138 7.5977 0.505501 8.03865 0.304482 8.52395C0.103463 9.00926 -6.56609e-08 9.5294 0 10.0547C0 11.1156 0.421427 12.133 1.17157 12.8831C1.92172 13.6333 2.93913 14.0547 4 14.0547C5.06087 14.0547 6.07828 13.6333 6.82843 12.8831C7.57857 12.133 8 11.1156 8 10.0547C8 9.5294 7.89654 9.00926 7.69552 8.52395C7.4945 8.03865 7.19986 7.5977 6.82843 7.22626C6.45699 6.85483 6.01604 6.56019 5.53073 6.35917C5.04543 6.15815 4.52529 6.05469 4 6.05469V6.05469ZM4 7C4.26522 7 4.51957 7.10536 4.70711 7.29289C4.89464 7.48043 5 7.73478 5 8C5 8.26522 4.89464 8.51957 4.70711 8.70711C4.51957 8.89464 4.26522 9 4 9C3.73478 9 3.48043 8.89464 3.29289 8.70711C3.10536 8.51957 3 8.26522 3 8C3 7.73478 3.10536 7.48043 3.29289 7.29289C3.48043 7.10536 3.73478 7 4 7V7ZM6 9C6.26522 9 6.51957 9.10536 6.70711 9.29289C6.89464 9.48043 7 9.73478 7 10C7 10.2652 6.89464 10.5196 6.70711 10.7071C6.51957 10.8946 6.26522 11 6 11C5.73478 11 5.48043 10.8946 5.29289 10.7071C5.10536 10.5196 5 10.2652 5 10C5 9.73478 5.10536 9.48043 5.29289 9.29289C5.48043 9.10536 5.73478 9 6 9ZM3.5 9.5C3.76522 9.5 4.01957 9.60536 4.20711 9.79289C4.39464 9.98043 4.5 10.2348 4.5 10.5C4.5 10.7652 4.39464 11.0196 4.20711 11.2071C4.01957 11.3946 3.76522 11.5 3.5 11.5C3.23478 11.5 2.98043 11.3946 2.79289 11.2071C2.60536 11.0196 2.5 10.7652 2.5 10.5C2.5 10.2348 2.60536 9.98043 2.79289 9.79289C2.98043 9.60536 3.23478 9.5 3.5 9.5V9.5Z" fill="#2F6133"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.1 KiB

Wyświetl plik

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="m 7.0002108,0.02315904 c -0.246143,-0.00213 -0.48457,0.3250143 -0.5,0.96875 -2.897016,0.25455126 -5.243685,2.60238176 -5.5,5.49999996 -1.27039499,0 -1.28747199,0.96914 0,1 0.228319,2.916564 2.584827,5.219257 5.5,5.468751 0,1.404649 1,1.356045 1,0 2.9353962,-0.222296 5.2464402,-2.531918 5.4687502,-5.468751 1.394629,0 1.355936,-1 0,-1 -0.249604,-2.9177553 -2.551719,-5.2731708 -5.4687502,-5.49999996 0,-0.6351976 -0.253858,-0.9666155 -0.5,-0.96875 z m -0.5,2.28124996 0,3.5 -2.46875,-2.46875 c 0.688492,-0.5601379 1.536531,-0.9285408 2.46875,-1.03125 z m 1,0 c 0.93137,0.098765 1.774011,0.4754302 2.46875,1.03125 l -2.46875,2.46875 0,-3.5 z m 3.1875002,1.71875 c 0.558746,0.6876469 0.928206,1.536661 1.03125,2.46875 l -3.5000002,0 2.4687502,-2.46875 z m -7.3437502,0.03125 2.4375,2.4375 -3.46875,0 c 0.107683,-0.9146799 0.482886,-1.7563102 1.03125,-2.4375 z m 3.65625,2.1875 c 0.414213,0 0.75,0.3357863 0.75,0.75 0,0.414214 -0.335787,0.75 -0.75,0.75 -0.414214,0 -0.75,-0.335786 -0.75,-0.75 0,-0.4142137 0.335786,-0.75 0.75,-0.75 z m -4.6875,1.25 3.53125,0 -2.5,2.5000005 C 2.7801318,9.2946675 2.4096658,8.4330355 2.3127108,7.491909 z m 5.84375,0 3.5625002,0 c -0.100162,0.9519805 -0.493668,1.8015395 -1.0625,2.5000005 L 8.1564608,7.491909 z m -1.65625,0.7187505 0,3.5000005 c -0.932089,-0.103044 -1.781103,-0.472504 -2.46875,-1.03125 l 2.46875,-2.4687505 z m 1,0 2.46875,2.5000005 c -0.687689,0.544344 -1.538834,0.905241 -2.46875,1 l 0,-3.5000005 z"
id="buddhist" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.8 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 3C3 3 3 3 2 5L0 11H2L4 5H10L12 11H14L12 5C11 3 11 3 9 3H5ZM7.01367 6.5C6.25928 6.49407 5.50293 6.99412 5 8L4 11H10L9 8C8.50293 7.00587 7.75926 6.50756 7.01367 6.5Z" fill="#666666"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 297 B

Wyświetl plik

@ -0,0 +1,13 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M1.05859 9.99805C1.02307 10.165 1.00476 10.3352 1.00391 10.5059C1.0049 11.8464 2.06301 12.9475 3.40231 13.002V14L6.00001 12.5L3.40231 11V12C2.61604 11.9466 2.00511 11.2939 2.00391 10.5059C2.00431 10.3327 2.03471 10.1609 2.09375 9.9981L1.05859 9.99805Z" fill="#734A08"/>
<path d="M12.07 4.99999C11.2724 4.99999 10.5425 5.17319 9.88052 5.52147C8.80742 6.08348 8.29792 6.76497 7.88832 7.99997H7.17153L6.99964 8.99997H7.80823C7.80847 9.33872 7.7923 9.65965 7.81995 9.99997H7.17151L6.99963 11H7.94299C8.03756 11.4274 8.04579 11.4941 8.17737 11.7949C8.83111 13.283 10.192 14 12.0504 14C12.6712 14 13.2396 13.8858 13.7535 13.6562V12.4335C13.3218 12.8214 12.7216 13.0136 11.9527 13.0136C11.4017 13.0136 10.8884 12.8785 10.4156 12.6054C9.75771 12.2255 9.34407 11.9063 9.17147 10.9999H12.8395L13.0133 9.99992H9.0406C9.03781 9.66678 9.02796 9.33312 9.0406 8.99992H13.1793L13.3453 7.99992H9.14022C9.18134 7.67538 9.24005 7.60031 9.4703 7.24015C9.69644 6.89187 10.0267 6.65669 10.3062 6.46671C10.775 6.14613 11.3537 5.98624 12.0445 5.98624C12.6818 5.98624 13.2519 6.18611 13.7535 6.58585L13.9996 5.48035C13.4775 5.15977 12.8347 4.99988 12.0699 4.99988L12.07 4.99999Z" fill="#734A08"/>
<path d="M10.5979 0L8.00024 1.5L10.5979 3V1.998C11.3842 2.05136 11.9951 2.70406 11.9963 3.4921C11.9959 3.66529 11.9655 3.8371 11.9065 3.99991H12.9417C12.9772 3.83295 12.9955 3.66279 12.9964 3.4921C12.9954 2.1516 11.9373 1.0505 10.598 0.996L10.5979 0Z" fill="#734A08"/>
<path d="M3.00005 4e-05V1.02934C2.57938 1.05855 2.17909 1.11578 1.81845 1.23051C1.33459 1.38442 0.96491 1.6116 0.71295 1.9102C0.46102 2.20571 0.336 2.52359 0.336 2.86528C0.336 3.17619 0.4387 3.45856 0.64264 3.71098C0.85058 3.96032 1.16417 4.16863 1.58405 4.33793C1.86378 4.45224 2.35947 4.57508 3.00005 4.70316V7.14846C2.76892 7.11539 2.55064 7.06589 2.34575 6.99807C1.94586 6.86263 1.64902 6.68621 1.45708 6.47073C1.26913 6.25217 1.14969 5.97536 1.0977 5.63675L0 5.70902C0.015995 6.16153 0.17656 6.56956 0.48047 6.92972C0.78838 7.2868 1.21025 7.55391 1.74607 7.73245C2.10197 7.85015 2.53284 7.915 2.99997 7.95511V9.00001H3.99997V7.98051C4.52387 7.95927 5.01197 7.88711 5.44137 7.73637C5.94523 7.55783 6.3297 7.31125 6.59757 6.99418C6.86549 6.67404 6.99991 6.33285 6.99991 5.97268C6.99991 5.60944 6.87861 5.28879 6.63468 5.01174C6.39075 4.73162 6.01177 4.50195 5.49988 4.32033C5.21388 4.22026 4.67945 4.10309 3.99988 3.97658V1.83788C4.40908 1.88313 4.76449 1.96261 5.00768 2.11718C5.35558 2.33574 5.56098 2.66 5.62096 3.08788L6.73616 3.02147C6.71617 2.62437 6.57244 2.26905 6.30452 1.95507C6.0366 1.64109 5.65203 1.4042 5.15222 1.24413C4.80986 1.13149 4.41658 1.07197 3.99992 1.0371V0L3.00005 4e-05ZM3.00005 1.82814V3.77154C2.415 3.64701 1.96895 3.52551 1.79885 3.40631C1.57092 3.24932 1.45705 3.04793 1.45705 2.80475C1.45705 2.52463 1.61761 2.28692 1.93752 2.08991C2.17648 1.9423 2.55431 1.86691 3.00002 1.82819L3.00005 1.82814ZM4.00005 4.91404C4.29473 4.97481 4.7182 5.0535 4.84575 5.09177C5.21364 5.19951 5.47876 5.33209 5.63872 5.49216C5.79867 5.64915 5.87895 5.83445 5.87895 6.04685C5.87895 6.25617 5.79495 6.45034 5.627 6.62888C5.46305 6.80434 5.21104 6.94331 4.87114 7.0449C4.61384 7.1218 4.31692 7.15903 4.00005 7.17771V4.91404Z" fill="#734A08"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 3.4 KiB

Wyświetl plik

@ -0,0 +1,11 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M7 0.461914C5.79459 0.471454 4.16017 0.812646 3.47852 1.09668C2.78709 1.38478 2.32762 1.67136 2.18359 2.3916L1.66406 6.38574V11.8877H2.55859V12.749C2.55859 13.801 4.0957 13.801 4.0957 12.749V11.8877H6.93945H6.94725H9.90233V12.749C9.90233 13.801 11.4414 13.801 11.4414 12.749V11.8877H12.3359V6.38574L11.8164 2.3916C11.6723 1.67136 11.2129 1.38478 10.5215 1.09668C9.83976 0.81262 8.20544 0.471404 7 0.461914ZM4.80469 1.46973H6.94727H9.19531C9.62747 1.46973 9.62747 2.11816 9.19531 2.11816H6.94336H4.80469C4.37253 2.11816 4.37253 1.46973 4.80469 1.46973ZM3.63867 2.77246H6.94336H10.3594C10.8159 2.77246 10.9368 3.00654 10.9922 3.3584L11.3945 6.25488C11.4321 6.53246 11.3523 6.80566 10.9687 6.80566H6.94727H3.03125C2.64776 6.80566 2.56783 6.53246 2.60547 6.25488L3.00781 3.3584C3.06323 3.00654 3.18217 2.77246 3.63867 2.77246V2.77246ZM3.32812 8.68652C3.73593 8.68652 4.06641 9.01698 4.06641 9.4248C4.06641 9.83263 3.73593 10.1611 3.32812 10.1611C2.92031 10.1611 2.58984 9.83263 2.58984 9.4248C2.58984 9.01698 2.92031 8.68652 3.32812 8.68652V8.68652ZM10.6719 8.68652C11.0797 8.68652 11.4102 9.01698 11.4102 9.4248C11.4102 9.83263 11.0797 10.1611 10.6719 10.1611C10.2641 10.1611 9.93359 9.83263 9.93359 9.4248C9.93359 9.01698 10.2641 8.68652 10.6719 8.68652V8.68652Z" fill="white"/>
<path d="M1.56778 0.00154089C0.563898 0.00154089 0 0.518574 0 1.57723V12.4911C0 13.4814 0.507871 14 1.51081 14H12.4892C13.4924 14 14 13.5073 14 12.4911V1.57723C14 0.544371 13.4923 0.00154089 12.4578 0.00154089C12.4577 0.00154089 1.56433 -0.00192611 1.56778 0.00154089V0.00154089ZM7 0.46128C8.20543 0.47077 9.83891 0.811817 10.5206 1.09588C11.2121 1.38398 11.6732 1.67037 11.8173 2.39061L12.336 6.38484V11.886H11.442V12.7485C11.442 13.8005 9.90177 13.8005 9.90177 12.7485V11.886H6.94696H6.9391H4.09627V12.7485C4.09627 13.8005 2.55796 13.8005 2.55796 12.7485V11.886H1.66405V6.38484L2.18271 2.39061C2.32674 1.67037 2.78795 1.38398 3.47937 1.09588C4.16103 0.811843 5.79459 0.470823 7 0.46128ZM4.8055 1.46917C4.37334 1.46917 4.37334 2.11752 4.8055 2.11752H6.94303H9.1945C9.62666 2.11752 9.62666 1.46918 9.1945 1.46917H6.94696H4.8055ZM3.63851 2.77176C3.182 2.77176 3.06328 3.00538 3.00786 3.35724L2.60511 6.2532C2.56747 6.53078 2.64794 6.80528 3.03143 6.80528H6.94696H10.9686C11.3521 6.80528 11.4325 6.53078 11.3949 6.2532L10.9921 3.35724C10.9367 3.00538 10.816 2.77176 10.3595 2.77176H6.94303H3.63851ZM3.32809 8.6855C2.92028 8.6855 2.58939 9.0164 2.58939 9.42422C2.58939 9.83205 2.92028 10.161 3.32809 10.161C3.7359 10.161 4.0668 9.83205 4.0668 9.42422C4.0668 9.0164 3.7359 8.6855 3.32809 8.6855ZM10.6719 8.6855C10.2641 8.6855 9.9332 9.0164 9.9332 9.42422C9.9332 9.83205 10.2641 10.161 10.6719 10.161C11.0797 10.161 11.4106 9.83205 11.4106 9.42422C11.4106 9.0164 11.0797 8.6855 10.6719 8.6855Z" fill="#0092DA"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 3.0 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 1L2 2V10H2.65625C2.65625 10 2.7574 11 3.469 11C4.15813 11 4.25 10 4.25 10H7.75C7.75 10 7.86434 11 8.531 11C9.34747 11 9.34375 10 9.34375 10H10V2L9 1H3ZM4 2H8V3H4V2ZM3 4H9V7H3V4ZM3 8H4V9H3V8ZM8 8H9V9H8V8Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 337 B

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 0C6.46957 0 5.96086 0.210714 5.58579 0.585786C5.21071 0.960859 5 1.46957 5 2C5 2.53043 5.21071 3.03914 5.58579 3.41421C5.96086 3.78929 6.46957 4 7 4C7.53043 4 8.03914 3.78929 8.41421 3.41421C8.78929 3.03914 9 2.53043 9 2C9 1.46957 8.78929 0.960859 8.41421 0.585786C8.03914 0.210714 7.53043 0 7 0V0ZM6.95703 4.68164C5.29028 4.68508 3.63758 5.21686 2 6.26758C3.35301 7.1709 4.46236 8.25342 4.43555 9.77539H9.54102C9.4719 8.23527 10.815 7.115 12 6.26758C10.3046 5.2031 8.62378 4.6782 6.95703 4.68164ZM5 11V12H9V11H5ZM3 13V14H11V13H3Z" fill="#734A08"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 830 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.26776 9.86821C6.26776 9.86821 5.2317 8.65538 4.15442 6.89108C3.29968 5.49133 2.50917 3.64761 2.43677 3.45172C3.02027 3.02819 5.99798 1.68951 6.60171 1.55832C6.77726 2.23532 7.05208 3.56108 7.63275 4.84907C8.23266 6.17979 8.95481 7.21724 9.22359 7.56785C8.58041 8.1735 6.26776 9.86821 6.26776 9.86821ZM8.29682 9.12635C8.37168 9.74654 10.4653 12.6302 11.1731 13.1532C11.4464 13.355 11.6374 13.1903 12.1014 12.8631C12.5655 12.5356 12.7402 12.2567 12.5711 11.8625C12.224 11.0532 10.7057 8.14772 9.99287 7.68209C9.30703 6.68551 8.73235 5.93203 8.16719 4.55031C7.58245 3.12076 7.20925 1.66853 6.98549 0.815369C6.18946 1.04594 4.87124 1.60367 4.06024 1.97704C3.15665 2.39298 2.51027 2.79909 1.79224 3.18353C2.01936 3.84281 2.56241 5.46664 3.6965 7.22087C4.59261 8.60701 5.34599 9.71063 6.19553 10.5503L8.29682 9.12635ZM5.14857 3.35807C5.14857 3.0374 5.42358 2.77727 5.76283 2.77727C6.10208 2.77727 6.37709 3.0374 6.37709 3.35807C6.37709 3.67896 6.10208 3.9391 5.76283 3.9391C5.42358 3.9391 5.14857 3.67896 5.14857 3.35807Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1V7C1 9 3 10 5.5 10C8 10 10 9 10 7H12C13 7 14 6 14 5V4C14 3 13 2 12 2H10V1H1ZM10 3.25H11.75C12.4178 3.25 12.75 3.81284 12.75 4.5C12.75 5.18716 12.3618 5.75 11.75 5.75H10V3.25ZM0 11C0 12 1 13 2 13H9C10 13 11 12 11 11H0Z" fill="#C77400"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 352 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 14L8 3L9 0H8L7 2L6 0H5L6 3L0 14H14ZM7 7L10 13H4L7 7Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 187 B

Wyświetl plik

@ -0,0 +1,6 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 9.5C0 9.89782 0.158035 10.2794 0.43934 10.5607C0.720644 10.842 1.10218 11 1.5 11H12.5C12.8978 11 13.2794 10.842 13.5607 10.5607C13.842 10.2794 14 9.89782 14 9.5V6.5C14 6.10218 13.842 5.72064 13.5607 5.43934C13.2794 5.15804 12.8978 5 12.5 5H1.5C1.10218 5 0.720644 5.15804 0.43934 5.43934C0.158035 5.72064 0 6.10218 0 6.5V9.5ZM1.6 7.5C1.60132 7.26174 1.69707 7.03373 1.86625 6.86596C2.03542 6.69818 2.26423 6.60434 2.50249 6.605C2.74075 6.60567 2.96902 6.70078 3.13727 6.86949C3.30551 7.0382 3.39999 7.26674 3.39999 7.505C3.39999 7.74326 3.30551 7.9718 3.13727 8.14051C2.96902 8.30922 2.74075 8.40434 2.50249 8.405C2.26423 8.40566 2.03542 8.31182 1.86625 8.14404C1.69707 7.97627 1.60132 7.74826 1.6 7.51V7.5ZM10.6 7.5C10.6013 7.26174 10.6971 7.03373 10.8662 6.86596C11.0354 6.69818 11.2642 6.60434 11.5025 6.605C11.7407 6.60567 11.969 6.70078 12.1373 6.86949C12.3055 7.0382 12.4 7.26674 12.4 7.505C12.4 7.74326 12.3055 7.9718 12.1373 8.14051C11.969 8.30922 11.7407 8.40434 11.5025 8.405C11.2642 8.40566 11.0354 8.31182 10.8662 8.14404C10.6971 7.97627 10.6013 7.74826 10.6 7.51V7.5Z" fill="#0092DA"/>
<path d="M3 10H1V13H3V10Z" fill="#0092DA"/>
<path d="M13 10H11V13H13V10Z" fill="#0092DA"/>
<path d="M2 5V2.5C2 2.10218 2.15804 1.72064 2.43934 1.43934C2.72064 1.15804 3.10218 1 3.5 1H10.5C10.8978 1 11.2794 1.15804 11.5607 1.43934C11.842 1.72064 12 2.10218 12 2.5V5H10.5V3.5C10.5 3.23478 10.3946 2.98043 10.2071 2.79289C10.0196 2.60536 9.76522 2.5 9.5 2.5H4.5C4.23478 2.5 3.98043 2.60536 3.79289 2.79289C3.60536 2.98043 3.5 3.23478 3.5 3.5V5H2Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.7 KiB

Wyświetl plik

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14"
id="svg2">
<defs
id="defs3053" />
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="m 9,3 0,-2 3,0 0,2 z M 2,3 2,1 5,1 5,3 z M 0,3 0,13 14,13 14,3 z M 3.4455611,5 5,5 l 0,2 2,0 0,1.5778894 -2,0 L 5,10.60134 3.4370847,10.634261 3.4615242,8.5300029 1.3911725,8.5459664 1.4221106,7 3.4295976,7 z M 9,7 13,7 13,8.6108059 9,8.5948424 z"
id="path2991"
style="fill:#ac39ac;fill-opacity:1;fill-rule:evenodd;stroke:none" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.74414 0C2.03388 0.0003935 1.37403 0.411708 1 1H3.36914L3.99219 2L3.36914 3H1.00195C1.37563 3.58774 2.03455 3.99897 2.74414 4C3.50238 4 4.15626 3.59577 4.51172 3H9.17773C9.53316 3.59592 10.1889 4 10.9473 4C12.081 4 13 3.10457 13 2C13 0.89543 12.081 -2e-07 10.9473 0C10.1889 -2.67571e-07 9.53316 0.404077 9.17773 1H4.51172C4.15626 0.404234 3.50238 6.68821e-08 2.74414 0ZM10.3223 1H11.5723L12.1953 2L11.5723 3H10.3223L9.69922 2L10.3223 1ZM4 6L3 9C2.52734 9 2 9.38429 2 10V13H3C3 13 3.00002 14 4 14C4.99998 14 5 13 5 13H9C9 13 9.00002 14 10 14C11 14 11 13 11 13H12V10C12 9.47939 11.5446 9 11 9L10 6H4ZM5 7H9L9.625 9H4.375L5 7ZM4 10.25C4.41421 10.25 4.75 10.5858 4.75 11C4.75 11.4142 4.41421 11.75 4 11.75C3.58579 11.75 3.25 11.4142 3.25 11C3.25 10.5858 3.58579 10.25 4 10.25ZM10 10.25C10.4142 10.25 10.75 10.5858 10.75 11C10.75 11.4142 10.4142 11.75 10 11.75C9.58579 11.75 9.25 11.4142 9.25 11C9.25 10.5858 9.58579 10.25 10 10.25Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.0 KiB

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 2L3 5H2L4 2H5ZM9 2L11 5H12L10 2H9ZM6.5 2H7.5V5H6.5V2ZM6 0L4 1H10L8 0H6ZM4 6L3 9C2.52733 9 2 9.3843 2 10V13H3C3 13 3 14 4 14C5 14 5 13 5 13H9C9 13 9 14 10 14C11 14 11 13 11 13H12V10C12 9.47939 11.5446 9 11 9L10 6H4ZM5 7H9L9.625 9H4.375L5 7ZM4 10.25C4.41421 10.25 4.75 10.5858 4.75 11C4.75 11.4142 4.41421 11.75 4 11.75C3.58579 11.75 3.25 11.4142 3.25 11C3.25 10.5858 3.58579 10.25 4 10.25ZM10 10.25C10.4142 10.25 10.75 10.5858 10.75 11C10.75 11.4142 10.4142 11.75 10 11.75C9.58579 11.75 9.25 11.4142 9.25 11C9.25 10.5858 9.58579 10.25 10 10.25Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 717 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2C1 2 0 3 0 4V8C0 9 1 10 2 10H3.0625C3.29562 8.86079 4.29188 8 5.5 8C6.70812 8 7.70438 8.86079 7.9375 10H14C14 10 14 9 13 9H11.5V4C11.5 3.03934 10.4757 2 9.5 2H2ZM2.84375 4C2.9375 3.98438 3 4 3 4H5C5 4 6 4 6 5C6 6 5 6 5 6H3C3 6 2 6 2 5C2 4.25 2.5625 4.04688 2.84375 4ZM8 4H8.5C8.5 4 9.5 4 9.5 5C9.5 6 8.5 6 8.5 6H8C8 6 7 6 7 5C7 4 8 4 8 4ZM5.5 9C4.67157 9 4 9.67157 4 10.5C4 11.3284 4.67157 12 5.5 12C6.32843 12 7 11.3284 7 10.5C7 9.67157 6.32843 9 5.5 9Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 589 B

Wyświetl plik

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14"
id="svg2">
<defs
id="defs3053" />
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="rect822"
d="M 12 0 C 10.892 0 10 0.892 10 2 L 10 12 C 10 13.108 10.892 14 12 14 C 13.108 14 14 13.108 14 12 L 14 2 C 14 0.892 13.108 0 12 0 z M 0 2 L 0 3 L 1 3 L 1 4.1992188 L 0 4.1992188 L 0 5.1992188 L 1 5.1992188 L 1 6.4003906 L 0 6.4003906 L 0 7.4003906 L 1 7.4003906 L 1 8.5996094 L 0 8.5996094 L 0 9.5996094 L 1 9.5996094 L 1 10.800781 L 0 10.800781 L 0 11.800781 L 1 11.800781 L 1 13 L 0 13 L 0 14 L 9 14 L 9 2 L 0 2 z M 2 3 L 4 4 L 6 3 L 8 4 L 8 5 L 6 4 L 4 5 L 2 4 L 2 3 z M 2 5.6660156 L 4 6.6660156 L 6 5.6660156 L 8 6.6660156 L 8 7.6660156 L 6 6.6660156 L 4 7.6660156 L 2 6.6660156 L 2 5.6660156 z M 2 8.3339844 L 4 9.3339844 L 6 8.3339844 L 8 9.3339844 L 8 10.333984 L 6 9.3339844 L 4 10.333984 L 2 9.3339844 L 2 8.3339844 z M 2 11 L 4 12 L 6 11 L 8 12 L 8 13 L 6 12 L 4 13 L 2 12 L 2 11 z M 12 11 C 12.552285 11 13 11.447715 13 12 C 13 12.552285 12.552285 13 12 13 C 11.447715 13 11 12.552285 11 12 C 11 11.447715 11.447715 11 12 11 z "
style="fill:#ac39ac;fill-opacity:1;stroke:none;stroke-width:0.96609181" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.7 KiB

Wyświetl plik

@ -0,0 +1,4 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.89839 4.9696C6.79044 4.9696 5.89844 5.86156 5.89844 6.96956V10.9694C5.89844 12.0774 6.7904 12.9694 7.89839 12.9694H11.8982C13.0062 12.9694 13.8982 12.0774 13.8982 10.9694V6.96956C13.8982 5.8616 13.0062 4.9696 11.8982 4.9696H7.89839ZM11.8982 5.71961C12.2297 5.71961 12.5477 5.8513 12.7821 6.08571C13.0165 6.32012 13.1482 6.63805 13.1482 6.96956C13.1482 7.30107 13.0165 7.619 12.7821 7.85341C12.5477 8.08782 12.2297 8.21951 11.8982 8.21951C11.5667 8.21951 11.2488 8.08782 11.0144 7.85341C10.78 7.619 10.6483 7.30107 10.6483 6.96956C10.6483 6.63805 10.78 6.32012 11.0144 6.08571C11.2488 5.8513 11.5667 5.71961 11.8982 5.71961V5.71961ZM7.89839 9.71945C8.2299 9.71945 8.54783 9.85114 8.78225 10.0855C9.01666 10.32 9.14835 10.6379 9.14835 10.9694C9.14835 11.3009 9.01666 11.6188 8.78225 11.8532C8.54783 12.0877 8.2299 12.2194 7.89839 12.2194C7.56689 12.2194 7.24896 12.0877 7.01454 11.8532C6.78013 11.6188 6.64844 11.3009 6.64844 10.9694C6.64844 10.6379 6.78013 10.32 7.01454 10.0855C7.24896 9.85114 7.56689 9.71945 7.89839 9.71945V9.71945Z" fill="#734A08"/>
<path d="M3.86715 1.06347C3.22721 1.10845 2.61969 1.46364 2.27338 2.06345L0.273419 5.53219C-0.280579 6.49177 0.0326125 7.69675 0.992165 8.25093L4.46091 10.2509C4.60202 10.3318 4.74902 10.4254 4.89839 10.4696V6.96971C4.89839 5.32507 6.25367 3.96978 7.89832 3.96978H9.11709C8.95186 3.72335 8.73616 3.5038 8.46086 3.3448L4.99212 1.34484C4.63229 1.13698 4.25111 1.03677 3.86715 1.0636V1.06347ZM4.17183 1.77243C4.7329 1.77778 5.22163 2.15631 5.3671 2.69818C5.54605 3.36477 5.15086 4.05025 4.48432 4.22933C3.81773 4.40827 3.13225 4.01308 2.95317 3.34655C2.77423 2.67996 3.16942 1.99447 3.83595 1.8154C3.94546 1.78591 4.05848 1.77145 4.17188 1.77243L4.17183 1.77243ZM2.05078 5.44613C2.61238 5.45172 3.10126 5.83119 3.24605 6.37385C3.42361 7.0404 3.02766 7.72483 2.36131 7.90311C1.69536 8.08081 1.01123 7.68588 0.832047 7.02033C0.653099 6.35374 1.04829 5.66825 1.71482 5.48918C1.82433 5.4597 1.93735 5.44523 2.05076 5.44621L2.05078 5.44613Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.1 KiB

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M1 0.999756L0 2.49976V2.99976H5V2.49976L4 0.999756H1ZM10 0.999756L9 2.49976V2.99976H14V2.49976L13 0.999756H10ZM0 3.99976V12.9998H5C5 11.9998 5 9.99976 7 9.99976C9 9.99976 9 11.9998 9 12.9998H14V3.99976H9V5.99976H7H5V3.99976H0ZM2 5.99976H3V6.99976L2.5 7.99976L2 6.99976V5.99976ZM11 5.99976H12V6.99976L11.5 7.99976L11 6.99976V5.99976Z" fill="#734A08"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 589 B

Wyświetl plik

@ -0,0 +1,6 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 4.00012H2H2V5.00002H2H12L12 4.00012Z" fill="#3F3F3F"/>
<path d="M12 6.00012H2H2V7.00002H2H12L12 6.00012Z" fill="#3F3F3F"/>
<path d="M12 8H2H2V9.00002H2H12L12 8Z" fill="#3F3F3F"/>
<path d="M12 10H2H2V11H2H12L12 10Z" fill="#3F3F3F"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 348 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 10C3 9 5 6 6.97637 6.00007C9 6 11 9 11 10H7H3ZM7 3C4 3 0 7 0 10H1C1 7 5 4 7 4C9 4 13 7 13 10H14C14 7 10 3 7 3Z" fill="black"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 282 B

Wyświetl plik

@ -0,0 +1,4 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.24219 0.733398L0 4.59277H0.490234V11.2217H3.08594V7.50684H5.39844V10.2471L3.14648 12.835C3.00616 12.9964 3.12011 13.248 3.33398 13.249L13.748 13.2666C13.9268 13.2676 14.0489 13.0861 13.9805 12.9209L10.6055 4.81348C10.566 4.71825 10.4722 4.65698 10.3691 4.65918C10.2986 4.66062 10.2319 4.69184 10.1855 4.74512L7.99414 7.2627V4.59277H8.48438L4.24219 0.733398ZM10.2969 5.37793L13.373 12.7666L3.88281 12.749L5.39844 11.0068V11.2217H7.99414V8.02441L10.2969 5.37793Z" fill="#0092DA"/>
<path d="M10.2969 5.37793L7.99414 8.02441V11.2217H5.39844V11.0068L3.88281 12.749L13.373 12.7666L10.2969 5.37793Z" fill="#0092DA" fill-opacity="0.2"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 744 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 1C0.834472 1 0 1.79552 0 3V14H7V6.125C7 6.125 7.875 6 7.875 7V11C7.875 13 9.7397 13.125 10 13.125C10.2757 13.125 12.125 13 12.125 11V7C12.125 7 13.5126 7.01738 13.5 4.03125H12.75V2.03125C12.75 1.46409 12 1.46751 12 2V4H11V2C11 1.45382 10.25 1.45481 10.25 2V4H9.5C9.51252 6.98639 10.875 7 10.875 7V11C10.875 11.8742 10.1079 11.875 10 11.875C9.89214 11.875 9.125 11.8322 9.125 11V7C9.125 5.71909 8 4.875 7 4.875V3C7 1.77754 6.1835 1 5 1H2ZM2.96875 3H5.71875L4 5.66667H6.0625L2.28125 11H1.59375L2.96875 7H1.25L2.96875 3Z" fill="#0092DA"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 651 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 0C4 0 4 0 4 1L4.00977 4H1V13C1 14 1 14 2 14H12C13 14 13 14 13 13V4H10.0391L10 1C10 0 10 0 9 0H5ZM5 1H9V4H5V1ZM5.17773 5.49805C5.69481 5.49519 5.80326 5.55556 6.10742 5.72266C6.47764 5.92604 6.85873 6.68146 6.9375 6.99023L6.98633 7.18164L7.10547 6.91797C7.83742 5.31559 9.94532 4.86901 10.7012 6.63477C10.9106 7.12399 10.9678 8.12535 10.7559 8.69727C10.4794 9.44331 9.9599 10.0132 8.75977 10.8848C7.9727 11.4564 7.08154 12.3199 7.01953 12.4414C6.94755 12.5824 7.01518 12.4637 6.69727 12.1074C6.52964 11.9196 6.11151 11.5547 5.76758 11.2949C4.74854 10.5254 4.61102 10.4142 4.19727 10.0332C3.43449 9.33083 3.11022 8.62477 3.11133 7.66797C3.11187 7.20089 3.14264 7.02141 3.27344 6.74609C3.49535 6.279 3.82231 5.93103 4.24023 5.71875C4.53624 5.5684 4.68343 5.50078 5.17773 5.49805Z" fill="#AC39AC"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 910 B

Wyświetl plik

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14"
id="svg2">
<defs
id="defs3053" />
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="m 13.515914,13 c 0,-12 0.02345,-10.0477231 0.02345,-12 0,-1 -0.0469,-1 -1.539364,-1 l 0,13.038526 C 12.048052,14.003111 12.000001,14 12.718594,14 c 0.765494,0 0.79732,0 0.79732,-1 z M 2.5075377,11.624791 c 1.9893914,0.633166 3.1278615,0.633166 5.0938024,-0.07035 L 7,4 C 5,4.281407 5,4.3048576 3,4 z M 4.319933,0 5.718593,0 6.2730319,3 c -1,0.3048576 -1.5544389,0.3048576 -2.5544389,0 z m -2.2964824,14 0.2345058,-1 5.4991626,0 0.2579562,1 z m 7.4606365,-14 1.9597989,0 0,0.6097152 -1.9597989,0 z m 0,1 1.9597989,0 0,0.6097152 -1.9597989,0 z m 0,1 1.9597989,0 0,0.6097152 -1.9597989,0 z m 0,1 1.9597989,0 0,0.6097152 -1.9597989,0 z m 0,1 1.9597989,0 0,0.6097152 -1.9597989,0 z"
id="path2988"
style="fill:#ac39ac;fill-opacity:1;fill-rule:evenodd;stroke:none" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.6 KiB

Wyświetl plik

@ -0,0 +1,4 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 4.00001V13.0039L1 14H2H4H5L4 12.9961V4H2V4.00001Z" fill="#666666"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 3C4 2.33333 4.4697 2 6 2C7.9996 2.02193 8.7623 2.97624 10 3C11.5581 3 12 2 13 0C12 1 12 1 10 1C8 1 8 0 6 0C5 0 4 0.76562 3 3Z" fill="#666666"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 419 B

Wyświetl plik

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="14"
height="14"
viewBox="0 0 14 14"
fill="none"
version="1.1"
id="svg29764"
sodipodi:docname="chocolate.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata29770">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs29768" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1265"
inkscape:window-height="714"
id="namedview29766"
showgrid="false"
inkscape:zoom="33.14"
inkscape:cx="-0.18165359"
inkscape:cy="7"
inkscape:window-x="55"
inkscape:window-y="56"
inkscape:window-maximized="0"
inkscape:current-layer="svg29764"
inkscape:pagecheckerboard="true"
inkscape:document-rotation="0" />
<circle
style="fill:#c77400;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;fill-opacity:1"
id="path30353"
cx="6.8497281"
cy="7.0609536"
r="2.6554012" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.8 KiB

Wyświetl plik

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="16"
height="16"
viewBox="0 0 16 16">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 7,0 C 5.999999,0 6.000001,1 6.000001,1 L 6,4 2,4 l 0,2 4,0 1e-6,8 2.000001,0 -1e-6,-8 4,0 0,-2 -4,0 0,-3 c 0,0 0,-1 -1.000001,-1 z"
id="christian" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 543 B

Wyświetl plik

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1C0.446 1 0 1.446 0 2V13C0 13.554 0.446 14 1 14H13C13.554 14 14 13.554 14 13V2C14 1.446 13.554 1 13 1H1ZM1.25 2H1.75C1.8885 2 2 2.1115 2 2.25V2.75C2 2.8885 1.8885 3 1.75 3H1.25C1.1115 3 1 2.8885 1 2.75V2.25C1 2.1115 1.1115 2 1.25 2ZM4 2H10V7H4V2ZM12.25 2H12.75C12.8885 2 13 2.1115 13 2.25V2.75C13 2.8885 12.8885 3 12.75 3H12.25C12.1115 3 12 2.8885 12 2.75V2.25C12 2.1115 12.1115 2 12.25 2ZM1.25 4H1.75C1.8885 4 2 4.1115 2 4.25V4.75C2 4.8885 1.8885 5 1.75 5H1.25C1.1115 5 1 4.8885 1 4.75V4.25C1 4.1115 1.1115 4 1.25 4ZM12.25 4H12.75C12.8885 4 13 4.1115 13 4.25V4.75C13 4.8885 12.8885 5 12.75 5H12.25C12.1115 5 12 4.8885 12 4.75V4.25C12 4.1115 12.1115 4 12.25 4ZM1.25 6H1.75C1.8885 6 2 6.1115 2 6.25V6.75C2 6.8885 1.8885 7 1.75 7H1.25C1.1115 7 1 6.8885 1 6.75V6.25C1 6.1115 1.1115 6 1.25 6ZM12.25 6H12.75C12.8885 6 13 6.1115 13 6.25V6.75C13 6.8885 12.8885 7 12.75 7H12.25C12.1115 7 12 6.8885 12 6.75V6.25C12 6.1115 12.1115 6 12.25 6ZM1.25 8H1.75C1.8885 8 2 8.1115 2 8.25V8.75C2 8.8885 1.8885 9 1.75 9H1.25C1.1115 9 1 8.8885 1 8.75V8.25C1 8.1115 1.1115 8 1.25 8ZM4 8H10V13H4V8ZM12.25 8H12.75C12.8885 8 13 8.1115 13 8.25V8.75C13 8.8885 12.8885 9 12.75 9H12.25C12.1115 9 12 8.8885 12 8.75V8.25C12 8.1115 12.1115 8 12.25 8ZM1.25 10H1.75C1.8885 10 2 10.1115 2 10.25V10.75C2 10.8885 1.8885 11 1.75 11H1.25C1.1115 11 1 10.8885 1 10.75V10.25C1 10.1115 1.1115 10 1.25 10ZM12.25 10H12.75C12.8885 10 13 10.1115 13 10.25V10.75C13 10.8885 12.8885 11 12.75 11H12.25C12.1115 11 12 10.8885 12 10.75V10.25C12 10.1115 12.1115 10 12.25 10ZM1.25 12H1.75C1.8885 12 2 12.1115 2 12.25V12.75C2 12.8885 1.8885 13 1.75 13H1.25C1.1115 13 1 12.8885 1 12.75V12.25C1 12.1115 1.1115 12 1.25 12ZM12.25 12H12.75C12.8885 12 13 12.1115 13 12.25V12.75C13 12.8885 12.8885 13 12.75 13H12.25C12.1115 13 12 12.8885 12 12.75V12.25C12 12.1115 12.1115 12 12.25 12Z" fill="#734A08"/>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.9 KiB

Wyświetl plik

@ -0,0 +1,10 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M0 0.999756V3.99976H14V0.999756H12V2.99976H10V0.999756H8V2.99976H6V0.999756H4V2.99976H2V0.999756H0ZM0 4.99976V12.9998H2.5C2.5 9.99976 3.48765 6.49976 7 6.49976C10.4045 6.47279 11.5 9.99976 11.5 12.9998H14V4.99976H0ZM7 7.99976C5 7.99976 4 9.99976 4 12.9998H10C10 9.99976 9 7.99976 7 7.99976Z" fill="#734A08"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 547 B

Wyświetl plik

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
height="7"
width="15">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-9)"
id="layer1">
<path
id="path2988"
d="m 8.33331e-6,12 c 0,0.75 -3.749991e-5,0.25 0,1 L 6,13 l 1,3 1,0 1,-3 6,0 0,-1 z"
style="fill:#999999;fill-opacity:1;stroke:none" />
<path
style="fill:none;fill-opacity:1;stroke:none"
d="M 6,12 7,9 8,9 9,12 Z"
id="path3417" />
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.0 KiB

Some files were not shown because too many files have changed in this diff Show More