Compare commits
1 Commits
generate-2
...
x7z4w-grap
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c8ff9c22e |
@@ -5,10 +5,10 @@ on:
|
||||
jobs:
|
||||
description: 'Which job(s) to run right now?'
|
||||
required: true
|
||||
default: 'all-except-upload'
|
||||
default: 'all'
|
||||
type: choice
|
||||
options:
|
||||
- all-except-upload
|
||||
- all
|
||||
- copy-coasts
|
||||
- planet
|
||||
- wiki
|
||||
@@ -16,82 +16,30 @@ on:
|
||||
- subways
|
||||
- tiger
|
||||
- maps
|
||||
- upload
|
||||
map-generator-continue:
|
||||
description: 'Continue previous map generation?'
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
map-generator-countries:
|
||||
description: 'Generate specific MWMs? (i.e. "US_New York_*, foo")'
|
||||
required: false
|
||||
type: string
|
||||
reset:
|
||||
description: 'Reset part of the system?'
|
||||
required: false
|
||||
default: 'no'
|
||||
type: choice
|
||||
options:
|
||||
- 'no'
|
||||
- wiki-ratelimit
|
||||
|
||||
## RCLONE_CONF is multi-line text containing keys and credentials for us2,ru1,fi1,de1 servers
|
||||
|
||||
env:
|
||||
RCLONE_CONF: ${{ secrets.RCLONE_CONF }}
|
||||
WIKIMEDIA_USERNAME: ${{ secrets.WIKIMEDIA_USERNAME }}
|
||||
WIKIMEDIA_PASSWORD: ${{ secrets.WIKIMEDIA_PASSWORD }}
|
||||
ZULIP_BOT_EMAIL: ${{ secrets.ZULIP_BOT_EMAIL }}
|
||||
ZULIP_API_KEY: ${{ secrets.ZULIP_API_KEY }}
|
||||
MWMCONTINUE: ${{ inputs.map-generator-continue }}
|
||||
MWMCOUNTRIES: ${{ inputs.map-generator-countries }}
|
||||
S3_KEY_ID: ${{ secrets.S3_KEY_ID }}
|
||||
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
|
||||
S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
|
||||
S3_BUCKET: ${{ secrets.S3_BUCKET }}
|
||||
SFTP_USER: ${{ secrets.SFTP_USER }}
|
||||
SFTP_PASSWORD: ${{ secrets.SFTP_PASSWORD }}
|
||||
SFTP_HOST: ${{ secrets.SFTP_HOST }}
|
||||
SFTP_PATH: ${{ secrets.SFTP_PATH }}
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
TZ: Etc/UTC
|
||||
|
||||
jobs:
|
||||
clone-repos:
|
||||
name: Clone Git Repos
|
||||
runs-on: mapfilemaker
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
volumes:
|
||||
- /mnt/4tbexternal:/mnt/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: "~"
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
- name: Checkout main repo
|
||||
shell: bash
|
||||
run: |
|
||||
echo "Cloning $FORGEJO_SERVER_URL/$FORGEJO_REPOSITORY branch $FORGEJO_REF_NAME"
|
||||
cd ~
|
||||
git clone --recurse-submodules --shallow-submodules -b $FORGEJO_REF_NAME --single-branch $FORGEJO_SERVER_URL/$FORGEJO_REPOSITORY.git comaps
|
||||
- name: Checkout wikiparser repo
|
||||
shell: bash
|
||||
run: |
|
||||
cd ~
|
||||
git clone https://codeberg.org/comaps/wikiparser.git
|
||||
- name: Checkout subways repo
|
||||
shell: bash
|
||||
run: |
|
||||
cd ~
|
||||
git clone https://codeberg.org/comaps/subways.git
|
||||
|
||||
copy-coasts:
|
||||
if: inputs.jobs == 'copy-coasts' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'copy-coasts' || inputs.jobs == 'all'
|
||||
name: Copy Previously Generated Coasts
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
@@ -99,403 +47,336 @@ jobs:
|
||||
- name: Copy Coasts
|
||||
shell: bash
|
||||
run: |
|
||||
echo "WorldCoasts available:"
|
||||
ls -al /mnt/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.*
|
||||
|
||||
if [ -f /mnt/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.geom ]; then
|
||||
|
||||
echo "Before:"
|
||||
ls -al /home/planet/latest_coasts*
|
||||
|
||||
cp -p /mnt/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.geom /home/planet/latest_coasts.geom
|
||||
cp -p /mnt/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.rawgeom /home/planet/latest_coasts.rawgeom
|
||||
|
||||
echo "After:"
|
||||
ls -al /home/planet/latest_coasts*
|
||||
|
||||
else
|
||||
|
||||
echo "No WorldCoasts found."
|
||||
|
||||
if [ -f /media/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.geom ]; then
|
||||
cp /media/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.geom /media/4tbexternal/osm-planet/latest_coasts.geom
|
||||
cp /media/4tbexternal/osm-maps/*/intermediate_data/WorldCoasts.rawgeom /media/4tbexternal/osm-planet/latest_coasts.rawgeom
|
||||
fi
|
||||
|
||||
update-planet:
|
||||
if: inputs.jobs == 'planet' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'planet' || inputs.jobs == 'all'
|
||||
name: Update Planet
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
apt-get update -y
|
||||
apt-get install -y pyosmium osmium-tool python3-venv python3-pip wget2
|
||||
rm -f /usr/lib/python*/EXTERNALLY-MANAGED
|
||||
pip3 install "protobuf<4"
|
||||
- name: Download Planet File if Absent
|
||||
shell: bash
|
||||
# TODO: replace wget2 with curl -Z
|
||||
run: |
|
||||
if [ ! -d /home/planet/planet/ ]; then
|
||||
mkdir -p /home/planet/planet/
|
||||
if [ ! -d /media/4tbexternal/osm-planet/planet/ ]; then
|
||||
mkdir -p /media/4tbexternal/osm-planet/planet/
|
||||
fi
|
||||
if [ ! -f /home/planet/planet/planet-latest.osm.pbf ]; then
|
||||
cd /home/planet/planet/
|
||||
wget2 --verbose --progress=bar --continue https://ftpmirror.your.org/pub/openstreetmap/pbf/planet-latest.osm.pbf
|
||||
else
|
||||
echo "planet-latest.osm.pbf was found, raw download not required."
|
||||
if [ ! -f /media/4tbexternal/osm-planet/planet/planet-latest.osm.pbf ]; then
|
||||
cd /media/4tbexternal/osm-planet/planet/
|
||||
wget2 --verbose --progress=bar --continue --debug https://ftpmirror.your.org/pub/openstreetmap/pbf/planet-latest.osm.pbf
|
||||
fi
|
||||
- name: Update Planet
|
||||
shell: bash
|
||||
run: |
|
||||
cd /home/planet/planet/
|
||||
rm -f planet-latest-new.osm.pbf
|
||||
pyosmium-up-to-date planet-latest.osm.pbf -o planet-latest-new.osm.pbf -v --size 16384
|
||||
cd /media/4tbexternal/osm-planet/planet/
|
||||
pyosmium-up-to-date planet-latest.osm.pbf -o planet-latest-new.osm.pbf -vv --size 16384
|
||||
mv planet-latest-new.osm.pbf planet-latest.osm.pbf
|
||||
- name: Converting planet-latest.osm.pbf to planet.o5m
|
||||
# TODO: better to run osmupdate (not convert) just before starting the maps jobs - for max fresh data.
|
||||
run: |
|
||||
echo "Starting..."
|
||||
cd /home/planet/planet/
|
||||
osmconvert -v --drop-author --drop-version --hash-memory=4000 planet-latest.osm.pbf -o=planet.o5m
|
||||
echo "Done."
|
||||
- name: Notify Zulip
|
||||
run: |
|
||||
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||
--data-urlencode type=stream \
|
||||
--data-urlencode 'to="DevOps"' \
|
||||
--data-urlencode topic=codeberg-bot \
|
||||
--data-urlencode 'content=Planet update is done!'
|
||||
run: /root/OM/osmctools/osmconvert planet-latest.osm.pbf -o=planet.o5m
|
||||
|
||||
wiki-update:
|
||||
if: inputs.jobs == 'wiki' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'wiki' || inputs.jobs == 'all'
|
||||
name: Update Wikipedia
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: "~"
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
apt-get update -y
|
||||
apt-get install -y jq curl wget2 rustc cargo git ca-certificates
|
||||
- name: Clone wikiparser if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /media/4tbexternal/wikiparser ]; then
|
||||
cd /media/4tbexternal
|
||||
git clone https://codeberg.org/comaps/wikiparser.git
|
||||
fi
|
||||
- name: Check for planet file
|
||||
shell: bash
|
||||
# TODO: remove debug output
|
||||
run: |
|
||||
if [ ! -f /home/planet/planet/planet-latest.osm.pbf ]; then
|
||||
echo "ERROR: No file at /home/planet/planet/planet-latest.osm.pbf"
|
||||
ls -al /home/planet/
|
||||
ls -al /home/planet/planet/
|
||||
exit 1
|
||||
fi
|
||||
- name: Only get new dumps once per 30 days
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ '${{ inputs.reset }}' == 'wiki-ratelimit' ]]; then
|
||||
echo "Bypassing wiki rate limit upon request."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
datediff() {
|
||||
d1=$(date -d "$1" +%s)
|
||||
d2=$(date -d "$2" +%s)
|
||||
echo $(( (d1 - d2) / 86400 ))
|
||||
}
|
||||
RECENTDUMPDATE=$(find /home/planet/wikipedia/dumps/ -mindepth 1 -maxdepth 1 -iname "2*" -type d | sort -n -r | head -1 | cut -d/ -f6)
|
||||
TODAY=$(date +%Y%m%d)
|
||||
DATEDIFF=$(datediff $TODAY $RECENTDUMPDATE)
|
||||
if [ $DATEDIFF -lt 30 ]; then
|
||||
echo "ERROR: The most recent wiki dump is from $RECENTDUMPDATE, $DATEDIFF days ago. Wikimedia limits users to 15 snapshot requests per month."
|
||||
echo "Set the 'reset' option to 'wiki-ratelimit' to bypass this."
|
||||
ls -al /home/planet/wikipedia/dumps/
|
||||
if [ ! -f /media/4tbexternal/osm-planet/planet/planet-latest.osm.pbf ]; then
|
||||
echo "ERROR: No file at /media/4tbexternal/osm-planet/planet/planet-latest.osm.pbf"
|
||||
ls -al /media/4tbexternal/
|
||||
ls -al /media/4tbexternal/osm-planet/
|
||||
ls -al /media/4tbexternal/osm-planet/planet/
|
||||
exit 1
|
||||
fi
|
||||
- name: Update Wikipedia from Enterprise API
|
||||
shell: bash
|
||||
run: |
|
||||
#todo: curl in download.sh can fail when rate limited and even save error messages to the output. need to validate.
|
||||
#downloading all languages can also trigger rate limits or fail as well. needs work.
|
||||
#also: a failure to download means a failure to build, and could result in no wiki descriptions etc.
|
||||
#also-also: do we want to remove old wiki data in planet between builds? pastk: no need, its being updated / augmented
|
||||
mkdir -p /home/planet/wikipedia/dumps
|
||||
mkdir -p /home/planet/wikipedia/build
|
||||
cd ~/wikiparser
|
||||
mkdir -p /media/4tbexternal/osm-planet/wikipedia/dumps
|
||||
mkdir -p /media/4tbexternal/osm-planet/wikipedia/build
|
||||
cd /media/4tbexternal/wikiparser
|
||||
ls -al
|
||||
echo "Downloading ..."
|
||||
./download.sh /home/planet/wikipedia/dumps
|
||||
ls -al /home/planet/wikipedia/dumps/*
|
||||
./download.sh /media/4tbexternal/osm-planet/wikipedia/dumps
|
||||
echo "Running ..."
|
||||
./run.sh /home/planet/wikipedia/build \
|
||||
/home/planet/planet/planet-latest.osm.pbf \
|
||||
/home/planet/wikipedia/dumps/latest/*.tar.gz
|
||||
./run.sh /media/4tbexternal/osm-planet/wikipedia/build \
|
||||
/media/4tbexternal/osm-planet/planet/planet-latest.osm.pbf \
|
||||
/media/4tbexternal/osm-planet/wikipedia/dumps/latest/*.tar.gz
|
||||
echo "DONE"
|
||||
- name: Check that the latest dumps are present, recent, and not super tiny
|
||||
shell: bash
|
||||
run: |
|
||||
FAILCHECK=0
|
||||
|
||||
# Check all .tar.gz files in /home/planet/wikipedia/dumps/latest/
|
||||
for file in /home/planet/wikipedia/dumps/latest/*.tar.gz; do
|
||||
# Check if file exists (handles case where glob doesn't match)
|
||||
[ -e "$file" ] || continue
|
||||
|
||||
# Get file size in MB and modification time in days
|
||||
size_mb=$(stat -f%z "$file" 2>/dev/null | awk '{print int($1/1024/1024)}' || stat -c%s "$file" | awk
|
||||
'{print int($1/1024/1024)}')
|
||||
days_old=$(find "$file" -mtime -7 | wc -l)
|
||||
|
||||
# Verify conditions
|
||||
if [ "$size_mb" -lt 100 ]; then
|
||||
echo "FAIL: $file is only ${size_mb}MB (< 100MB)"
|
||||
FAILCHECK=1
|
||||
elif [ "$days_old" -eq 0 ]; then
|
||||
echo "FAIL: $file is older than 7 days"
|
||||
ls -al $file
|
||||
FAILCHECK=1
|
||||
else
|
||||
echo "PASS: $file (${size_mb}MB, modified within 7 days)"
|
||||
fi
|
||||
done
|
||||
|
||||
exit $FAILCHECK
|
||||
- name: Notify Zulip
|
||||
run: |
|
||||
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||
--data-urlencode type=stream \
|
||||
--data-urlencode 'to="DevOps"' \
|
||||
--data-urlencode topic=codeberg-bot \
|
||||
--data-urlencode 'content=Wiki update is done!'
|
||||
|
||||
update-isolines:
|
||||
if: inputs.jobs == 'isolines' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'isolines' || inputs.jobs == 'all'
|
||||
name: Update Isolines
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: "~"
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
# TODO: we only need to update these if our SRTM or countries change
|
||||
# TODO: after update, verify that sizable files exist: /home/planet/isolines/*.isolines
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
apt-get update -qq \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
curl \
|
||||
osmctools \
|
||||
rclone \
|
||||
git \
|
||||
ca-certificates \
|
||||
openssh-client \
|
||||
sshpass \
|
||||
vim \
|
||||
wget \
|
||||
build-essential \
|
||||
clang \
|
||||
cmake \
|
||||
python3 \
|
||||
python3-pip \
|
||||
python3.12-venv \
|
||||
qt6-base-dev \
|
||||
qt6-positioning-dev \
|
||||
libc++-dev \
|
||||
libfreetype-dev \
|
||||
libglvnd-dev \
|
||||
libgl1-mesa-dev \
|
||||
libharfbuzz-dev \
|
||||
libicu-dev \
|
||||
libqt6svg6-dev \
|
||||
libqt6positioning6-plugins \
|
||||
libqt6positioning6 \
|
||||
libsqlite3-dev \
|
||||
libxrandr-dev \
|
||||
libxinerama-dev \
|
||||
libxcursor-dev \
|
||||
libxi-dev \
|
||||
zlib1g-dev
|
||||
rm -f /usr/lib/python*/EXTERNALLY-MANAGED
|
||||
pip3 install "protobuf<4"
|
||||
- name: Clone main repo if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /media/4tbexternal/comaps-init ]; then
|
||||
apt-get update -qq && apt-get install -y --no-install-recommends git
|
||||
cd /media/4tbexternal
|
||||
git clone --recurse-submodules --shallow-submodules -b rebase-generator-pastk-wb251014 --single-branch https://codeberg.org/comaps/comaps.git comaps-init
|
||||
fi
|
||||
- name: Update Isolines
|
||||
shell: bash
|
||||
# TODO: preserve previous isolines version?
|
||||
# TODO: cleanup the tmp-tiles dir after completion
|
||||
run: |
|
||||
cd ~/comaps/
|
||||
./tools/unix/build_omim.sh -p ~ -R topography_generator_tool
|
||||
rm -rf /home/planet/isolines/
|
||||
mkdir /home/planet/isolines/
|
||||
~/omim-build-relwithdebinfo/topography_generator_tool \
|
||||
cd /media/4tbexternal/comaps-init/
|
||||
./tools/unix/build_omim.sh -R topography_generator_tool
|
||||
rm -rf ../osm-planet/isolines/
|
||||
mkdir ../osm-planet/isolines/
|
||||
../omim-build-relwithdebinfo/topography_generator_tool \
|
||||
--profiles_path=./data/conf/isolines/isolines-profiles.json \
|
||||
--countries_to_generate_path=./data/conf/isolines/countries-to-generate.json \
|
||||
--tiles_isolines_out_dir=/home/planet/isolines/tmp-tiles/ \
|
||||
--countries_isolines_out_dir=/home/planet/isolines/ \
|
||||
--tiles_isolines_out_dir=../osm-planet/isolines/tmp-tiles/ \
|
||||
--countries_isolines_out_dir=../osm-planet/isolines/ \
|
||||
--data_dir=./data/ \
|
||||
--srtm_path=/home/planet/SRTM-patched-europe/ \
|
||||
--threads=96
|
||||
- name: Check isolines
|
||||
shell: bash
|
||||
run: |
|
||||
NUMISO=$(ls -al /home/planet/isolines/*.isolines | wc -l)
|
||||
echo "Found $NUMISO isolines"
|
||||
if [ $NUMISO -lt 10 ]; then
|
||||
echo "ERROR: Did generation fail?"
|
||||
exit 1
|
||||
fi
|
||||
- name: Notify Zulip
|
||||
run: |
|
||||
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||
--data-urlencode type=stream \
|
||||
--data-urlencode 'to="DevOps"' \
|
||||
--data-urlencode topic=codeberg-bot \
|
||||
--data-urlencode 'content=Isolines are done!'
|
||||
--srtm_path=../osm-planet/SRTM-patched-europe/ \
|
||||
--threads=22
|
||||
|
||||
update-subways:
|
||||
if: inputs.jobs == 'subways' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'subways' || inputs.jobs == 'all'
|
||||
name: Update Subways
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: "~"
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
apt-get update -qq && apt-get install -y --no-install-recommends curl osmctools osmium-tool python3-venv ca-certificates git python3-pip
|
||||
rm -f /usr/lib/python*/EXTERNALLY-MANAGED
|
||||
pip3 install "protobuf<4"
|
||||
- name: Clone subways if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /media/4tbexternal/subways ]; then
|
||||
cd /media/4tbexternal
|
||||
git clone https://codeberg.org/comaps/subways.git
|
||||
fi
|
||||
- name: Clone main repo if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /media/4tbexternal/comaps-init ]; then
|
||||
cd /media/4tbexternal
|
||||
git clone --recurse-submodules --shallow-submodules -b rebase-generator-pastk-wb251014 --single-branch https://codeberg.org/comaps/comaps.git comaps-init
|
||||
fi
|
||||
- name: Update Subways
|
||||
shell: bash
|
||||
run: |
|
||||
cd ~/comaps/
|
||||
cd /media/4tbexternal/comaps-init/
|
||||
cp tools/unix/maps/settings.sh.prod tools/unix/maps/settings.sh
|
||||
./tools/unix/maps/generate_subways.sh
|
||||
- name: Notify Zulip
|
||||
run: |
|
||||
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||
--data-urlencode type=stream \
|
||||
--data-urlencode 'to="DevOps"' \
|
||||
--data-urlencode topic=codeberg-bot \
|
||||
--data-urlencode 'content=Subways are done!'
|
||||
|
||||
update-tiger:
|
||||
if: inputs.jobs == 'tiger' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'tiger' || inputs.jobs == 'all'
|
||||
name: Update TIGER
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: "~"
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
apt-get update -qq && apt-get install -y --no-install-recommends \
|
||||
build-essential \
|
||||
clang \
|
||||
cmake \
|
||||
ninja-build \
|
||||
ca-certificates \
|
||||
git \
|
||||
wget2
|
||||
- name: Clone main repo if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /media/4tbexternal/comaps-init ]; then
|
||||
cd /media/4tbexternal
|
||||
git clone --recurse-submodules --shallow-submodules -b rebase-generator-pastk-wb251014 --single-branch https://codeberg.org/comaps/comaps.git comaps-init
|
||||
fi
|
||||
- name: Build address_parser
|
||||
shell: bash
|
||||
run: |
|
||||
cd ~/comaps
|
||||
#rm -rf ~/omim-build-relwithdebinfo/CMakeCache.txt
|
||||
#rm -rf ~/omim-build-relwithdebinfo/CMakeFiles
|
||||
./tools/unix/build_omim.sh -p ~ -R address_parser_tool
|
||||
cd /media/4tbexternal/comaps-init
|
||||
rm -rf ../omim-build-relwithdebinfo/CMakeCache.txt
|
||||
rm -rf ../omim-build-relwithdebinfo/CMakeFiles
|
||||
./tools/unix/build_omim.sh -R address_parser_tool
|
||||
- name: Update TIGER from Nominatim
|
||||
shell: bash
|
||||
# TODO: use curl instead of wget2
|
||||
run: |
|
||||
# TODO: maybe remove old osm-planet/tiger first?
|
||||
cd /home/planet/
|
||||
mkdir -p tiger
|
||||
cd /media/4tbexternal/osm-planet/
|
||||
wget2 https://nominatim.org/data/tiger-nominatim-preprocessed-latest.csv.tar.gz
|
||||
cd ~/comaps
|
||||
tar -xOzf /home/planet/tiger-nominatim-preprocessed-latest.csv.tar.gz | ~/omim-build-relwithdebinfo/address_parser_tool --output_path=/home/planet/tiger
|
||||
tar -xOzf tiger-nominatim-preprocessed-latest.csv.tar.gz | /media/4tbexternal/omim-build-relwithdebinfo/address_parser_tool --output_path=./tiger
|
||||
|
||||
generate-maps:
|
||||
if: inputs.jobs == 'maps' || inputs.jobs == 'all-except-upload'
|
||||
if: inputs.jobs == 'maps' || inputs.jobs == 'all'
|
||||
name: Generate Maps
|
||||
runs-on: mapfilemaker
|
||||
needs:
|
||||
- clone-repos
|
||||
timeout-minutes: 40320
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
image: ubuntu:latest
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
- /media/4tbexternal:/media/4tbexternal
|
||||
options: --ulimit nofile=262144:262144
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: "~"
|
||||
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
apt-get update -qq \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
curl \
|
||||
osmctools \
|
||||
rclone \
|
||||
git \
|
||||
ca-certificates \
|
||||
openssh-client \
|
||||
sshpass \
|
||||
vim \
|
||||
wget \
|
||||
build-essential \
|
||||
clang \
|
||||
cmake \
|
||||
ninja-build \
|
||||
python3 \
|
||||
python3-pip \
|
||||
python3.12-venv \
|
||||
qt6-base-dev \
|
||||
qt6-positioning-dev \
|
||||
libc++-dev \
|
||||
libfreetype-dev \
|
||||
libglvnd-dev \
|
||||
libgl1-mesa-dev \
|
||||
libharfbuzz-dev \
|
||||
libicu-dev \
|
||||
libqt6svg6-dev \
|
||||
libqt6positioning6-plugins \
|
||||
libqt6positioning6 \
|
||||
libsqlite3-dev \
|
||||
libxrandr-dev \
|
||||
libxinerama-dev \
|
||||
libxcursor-dev \
|
||||
libxi-dev \
|
||||
zlib1g-dev
|
||||
- name: Clone repo if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /media/4tbexternal/comaps-init ]; then
|
||||
cd /media/4tbexternal
|
||||
git clone --recurse-submodules --shallow-submodules -b rebase-generator-pastk-wb251014 --single-branch https://codeberg.org/comaps/comaps.git comaps-init
|
||||
fi
|
||||
- name: Make output folders if necessary
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /mnt/4tbexternal/osm-maps ]; then
|
||||
mkdir -p /mnt/4tbexternal/osm-maps
|
||||
if [ ! -d /media/4tbexternal/osm-maps ]; then
|
||||
mkdir -p /media/4tbexternal/osm-maps
|
||||
fi
|
||||
- name: Get SRTM if necessary
|
||||
# TODO: it should be a separate step like Wiki or isolines
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ! -d /home/planet/SRTM-patched-europe/ ]; then
|
||||
if [ ! -d /media/4tbexternal/osm-planet/SRTM-patched-europe/ ]; then
|
||||
echo "ERROR: NO SRTM"
|
||||
exit 1
|
||||
fi
|
||||
- name: Symlink paths for repo scripts
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p /root/OM
|
||||
ln -s /media/4tbexternal/comaps-init /root/OM/organicmaps
|
||||
ln -s /media/4tbexternal/osm-planet /home/planet
|
||||
ln -s /media/4tbexternal/osm-maps /root/OM/maps_build
|
||||
- name: Run docker_maps_generator.sh
|
||||
shell: bash
|
||||
run: |
|
||||
cd ~/comaps
|
||||
bash ./tools/unix/maps/docker_maps_generator.sh
|
||||
- name: Notify Zulip
|
||||
run: |
|
||||
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||
--data-urlencode type=stream \
|
||||
--data-urlencode 'to="DevOps"' \
|
||||
--data-urlencode topic=codeberg-bot \
|
||||
--data-urlencode 'content=Generator is done!'
|
||||
|
||||
upload-maps:
|
||||
if: inputs.jobs == 'upload'
|
||||
name: Upload Maps
|
||||
runs-on: mapfilemaker
|
||||
container:
|
||||
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||
volumes:
|
||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- name: Write config file
|
||||
run: |
|
||||
mkdir -p ~/.config/rclone/
|
||||
echo "${{ secrets.RCLONE_CONF }}" > ~/.config/rclone/rclone.conf
|
||||
- name: Upload map files to CDNs
|
||||
shell: bash
|
||||
run: |
|
||||
shopt -s nullglob
|
||||
buildfolder=$(find /mnt/4tbexternal/osm-maps/ -mindepth 1 -maxdepth 1 -iname "2*" -type d | sort -n -r | head -1 | cut -d/ -f5)
|
||||
builddate=$(find /mnt/4tbexternal/osm-maps/*/ -mindepth 1 -maxdepth 1 -iname "2*" -type d | sort -n -r | head -1 | cut -d/ -f6)
|
||||
mwmfiles=( /mnt/4tbexternal/osm-maps/$buildfolder/$builddate/*.mwm )
|
||||
|
||||
if (( ${#mwmfiles[@]} )); then
|
||||
echo "<$(date +%T)> Uploading maps from $buildfolder/$builddate..."
|
||||
cd ~/comaps/tools/unix/maps
|
||||
./upload_to_cdn.sh /mnt/4tbexternal/osm-maps/$buildfolder/$builddate
|
||||
echo "<$(date +%T)> Finished uploading maps from $buildfolder/$builddate."
|
||||
else
|
||||
echo "<$(date +%T)> No MWM files in /mnt/4tbexternal/osm-maps/$buildfolder/$builddate/*.mwm, not uploading maps."
|
||||
echo "<$(date +%T)> Found top level: $(ls -alt /mnt/4tbexternal/osm-maps/*)"
|
||||
echo "<$(date +%T)> Found second level: $(ls -alt /mnt/4tbexternal/osm-maps/$buildfolder/*)"
|
||||
fi
|
||||
- name: Notify Zulip
|
||||
run: |
|
||||
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||
--data-urlencode type=stream \
|
||||
--data-urlencode 'to="DevOps"' \
|
||||
--data-urlencode topic=codeberg-bot \
|
||||
--data-urlencode 'content=Upload is done!'
|
||||
|
||||
|
||||
cd /root/OM/organicmaps
|
||||
./tools/unix/docker_maps_generator.sh
|
||||
1
.gitignore
vendored
@@ -9,7 +9,6 @@ Makefile.Release
|
||||
object_script.*.Debug
|
||||
object_script.*.Release
|
||||
compile_commands.json
|
||||
*.local.*
|
||||
|
||||
stxxl.errlog
|
||||
stxxl.log
|
||||
|
||||
@@ -175,10 +175,10 @@ if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID)
|
||||
find_package(Qt6 COMPONENTS REQUIRED ${qt_components} PATHS $ENV{QT_PATH} /opt/homebrew/opt/qt@6 /usr/local/opt/qt@6 /usr/lib/x86_64-linux-gnu/qt6)
|
||||
|
||||
set(MINIMUM_REQUIRED_QT_VERSION 6.4.0)
|
||||
if (Qt6_VERSION VERSION_LESS ${MINIMUM_REQUIRED_QT_VERSION})
|
||||
message(FATAL_ERROR "Unsupported Qt version: ${Qt6_VERSION}, the minimum required is ${MINIMUM_REQUIRED_QT_VERSION}")
|
||||
if (Qt6Widgets_VERSION VERSION_LESS ${MINIMUM_REQUIRED_QT_VERSION})
|
||||
message(FATAL_ERROR "Unsupported Qt version: ${Qt6Widgets_VERSION}, the minimum required is ${MINIMUM_REQUIRED_QT_VERSION}")
|
||||
else()
|
||||
message(STATUS "Found Qt version: ${Qt6_VERSION}")
|
||||
message(STATUS "Found Qt version: ${Qt6Widgets_VERSION}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
@@ -32,8 +32,7 @@ public class DrivingOptionsScreen extends BaseMapScreen
|
||||
new DrivingOption(RoadType.Dirty, R.string.avoid_unpaved),
|
||||
new DrivingOption(RoadType.Ferry, R.string.avoid_ferry),
|
||||
new DrivingOption(RoadType.Motorway, R.string.avoid_motorways),
|
||||
new DrivingOption(RoadType.Steps, R.string.avoid_steps),
|
||||
new DrivingOption(RoadType.Paved, R.string.avoid_paved)};
|
||||
new DrivingOption(RoadType.Steps, R.string.avoid_steps)};
|
||||
|
||||
@NonNull
|
||||
private final Map<RoadType, Boolean> mInitialDrivingOptionsState = new HashMap<>();
|
||||
|
||||
@@ -357,7 +357,7 @@ class DownloaderAdapter extends RecyclerView.Adapter<DownloaderAdapter.ViewHolde
|
||||
|
||||
private MenuBottomSheetItem getCancelMenuItem()
|
||||
{
|
||||
return new MenuBottomSheetItem(R.string.cancel, R.drawable.ic_close, () -> onCancelActionSelected(mSelectedItem));
|
||||
return new MenuBottomSheetItem(R.string.cancel, R.drawable.ic_cancel, () -> onCancelActionSelected(mSelectedItem));
|
||||
}
|
||||
|
||||
private class ItemViewHolder extends BaseInnerViewHolder<CountryItem>
|
||||
|
||||
@@ -90,36 +90,28 @@ public class DrivingOptionsFragment extends BaseMwmToolbarFragment
|
||||
{
|
||||
SwitchCompat tollsBtn = root.findViewById(R.id.avoid_tolls_btn);
|
||||
tollsBtn.setChecked(RoutingOptions.hasOption(RoadType.Toll));
|
||||
CompoundButton.OnCheckedChangeListener tollBtnListener = new ToggleRoutingOptionListener(RoadType.Toll, root);
|
||||
CompoundButton.OnCheckedChangeListener tollBtnListener = new ToggleRoutingOptionListener(RoadType.Toll);
|
||||
tollsBtn.setOnCheckedChangeListener(tollBtnListener);
|
||||
|
||||
SwitchCompat motorwaysBtn = root.findViewById(R.id.avoid_motorways_btn);
|
||||
motorwaysBtn.setChecked(RoutingOptions.hasOption(RoadType.Motorway));
|
||||
CompoundButton.OnCheckedChangeListener motorwayBtnListener =
|
||||
new ToggleRoutingOptionListener(RoadType.Motorway, root);
|
||||
CompoundButton.OnCheckedChangeListener motorwayBtnListener = new ToggleRoutingOptionListener(RoadType.Motorway);
|
||||
motorwaysBtn.setOnCheckedChangeListener(motorwayBtnListener);
|
||||
|
||||
SwitchCompat ferriesBtn = root.findViewById(R.id.avoid_ferries_btn);
|
||||
ferriesBtn.setChecked(RoutingOptions.hasOption(RoadType.Ferry));
|
||||
CompoundButton.OnCheckedChangeListener ferryBtnListener = new ToggleRoutingOptionListener(RoadType.Ferry, root);
|
||||
CompoundButton.OnCheckedChangeListener ferryBtnListener = new ToggleRoutingOptionListener(RoadType.Ferry);
|
||||
ferriesBtn.setOnCheckedChangeListener(ferryBtnListener);
|
||||
|
||||
SwitchCompat dirtyRoadsBtn = root.findViewById(R.id.avoid_dirty_roads_btn);
|
||||
dirtyRoadsBtn.setChecked(RoutingOptions.hasOption(RoadType.Dirty));
|
||||
dirtyRoadsBtn.setEnabled(!RoutingOptions.hasOption(RoadType.Paved) || RoutingOptions.hasOption(RoadType.Dirty));
|
||||
CompoundButton.OnCheckedChangeListener dirtyBtnListener = new ToggleRoutingOptionListener(RoadType.Dirty, root);
|
||||
CompoundButton.OnCheckedChangeListener dirtyBtnListener = new ToggleRoutingOptionListener(RoadType.Dirty);
|
||||
dirtyRoadsBtn.setOnCheckedChangeListener(dirtyBtnListener);
|
||||
|
||||
SwitchCompat stepsBtn = root.findViewById(R.id.avoid_steps_btn);
|
||||
stepsBtn.setChecked(RoutingOptions.hasOption(RoadType.Steps));
|
||||
CompoundButton.OnCheckedChangeListener stepsBtnListener = new ToggleRoutingOptionListener(RoadType.Steps, root);
|
||||
CompoundButton.OnCheckedChangeListener stepsBtnListener = new ToggleRoutingOptionListener(RoadType.Steps);
|
||||
stepsBtn.setOnCheckedChangeListener(stepsBtnListener);
|
||||
|
||||
SwitchCompat pavedBtn = root.findViewById(R.id.avoid_paved_roads_btn);
|
||||
pavedBtn.setChecked(RoutingOptions.hasOption(RoadType.Paved));
|
||||
pavedBtn.setEnabled(!RoutingOptions.hasOption(RoadType.Dirty) || RoutingOptions.hasOption(RoadType.Paved));
|
||||
CompoundButton.OnCheckedChangeListener pavedBtnListener = new ToggleRoutingOptionListener(RoadType.Paved, root);
|
||||
pavedBtn.setOnCheckedChangeListener(pavedBtnListener);
|
||||
}
|
||||
|
||||
private static class ToggleRoutingOptionListener implements CompoundButton.OnCheckedChangeListener
|
||||
@@ -127,13 +119,9 @@ public class DrivingOptionsFragment extends BaseMwmToolbarFragment
|
||||
@NonNull
|
||||
private final RoadType mRoadType;
|
||||
|
||||
@NonNull
|
||||
private final View mRoot;
|
||||
|
||||
private ToggleRoutingOptionListener(@NonNull RoadType roadType, @NonNull View root)
|
||||
private ToggleRoutingOptionListener(@NonNull RoadType roadType)
|
||||
{
|
||||
mRoadType = roadType;
|
||||
mRoot = root;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -143,27 +131,6 @@ public class DrivingOptionsFragment extends BaseMwmToolbarFragment
|
||||
RoutingOptions.addOption(mRoadType);
|
||||
else
|
||||
RoutingOptions.removeOption(mRoadType);
|
||||
|
||||
SwitchCompat dirtyRoadsBtn = mRoot.findViewById(R.id.avoid_dirty_roads_btn);
|
||||
SwitchCompat pavedBtn = mRoot.findViewById(R.id.avoid_paved_roads_btn);
|
||||
if (mRoadType == RoadType.Dirty)
|
||||
{
|
||||
pavedBtn.setEnabled(!isChecked);
|
||||
if (isChecked)
|
||||
{
|
||||
pavedBtn.setChecked(false);
|
||||
dirtyRoadsBtn.setEnabled(true);
|
||||
}
|
||||
}
|
||||
else if (mRoadType == RoadType.Paved)
|
||||
{
|
||||
dirtyRoadsBtn.setEnabled(!isChecked);
|
||||
if (isChecked)
|
||||
{
|
||||
dirtyRoadsBtn.setChecked(false);
|
||||
pavedBtn.setEnabled(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
9
android/app/src/main/res/drawable/ic_cancel.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M480,536L284,732Q273,743 256,743Q239,743 228,732Q217,721 217,704Q217,687 228,676L424,480L228,284Q217,273 217,256Q217,239 228,228Q239,217 256,217Q273,217 284,228L480,424L676,228Q687,217 704,217Q721,217 732,228Q743,239 743,256Q743,273 732,284L536,480L732,676Q743,687 743,704Q743,721 732,732Q721,743 704,743Q687,743 676,732L480,536Z"/>
|
||||
</vector>
|
||||
@@ -1,10 +1,5 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:tint="#FFFFFF"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M480,536L284,732Q273,743 256,743Q239,743 228,732Q217,721 217,704Q217,687 228,676L424,480L228,284Q217,273 217,256Q217,239 228,228Q239,217 256,217Q273,217 284,228L480,424L676,228Q687,217 704,217Q721,217 732,228Q743,239 743,256Q743,273 732,284L536,480L732,676Q743,687 743,704Q743,721 732,732Q721,743 704,743Q687,743 676,732L480,536Z"/>
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
|
||||
</vector>
|
||||
|
||||
@@ -3,13 +3,7 @@
|
||||
android:height="20dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<group
|
||||
android:pivotX="370"
|
||||
android:pivotY="480"
|
||||
android:scaleX="2.2"
|
||||
android:scaleY="1.7">
|
||||
<path
|
||||
android:pathData="M640,760 L200,480l440,-280v560Z"
|
||||
android:fillColor="#FFFFFF"/>
|
||||
</group>
|
||||
android:pathData="M420,652q-8,0 -14,-5.5t-6,-14.5v-304q0,-9 6,-14.5t14,-5.5q2,0 14,6l145,145q5,5 7,10t2,11q0,6 -2,11t-7,10L434,646q-3,3 -6.5,4.5T420,652Z"
|
||||
android:fillColor="#1f1f1f"/>
|
||||
</vector>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
android:clipChildren="false">
|
||||
<com.google.android.material.imageview.ShapeableImageView
|
||||
android:id="@+id/floating_triangle"
|
||||
android:layout_width="@dimen/margin_half"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:elevation="@dimen/margin_eighth"
|
||||
android:layout_centerVertical="true"
|
||||
app:tint="@android:color/white"
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
android:layout_height="match_parent"
|
||||
android:padding="@dimen/margin_half_double_plus"/>
|
||||
</LinearLayout>
|
||||
<include layout="@layout/item_divider"/>
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:minHeight="@dimen/height_block_base"
|
||||
@@ -57,27 +58,7 @@
|
||||
android:layout_height="match_parent"
|
||||
android:padding="@dimen/margin_half_double_plus"/>
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:minHeight="@dimen/height_block_base"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingEnd="@dimen/margin_base"
|
||||
android:paddingStart="@dimen/margin_base">
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:text="@string/avoid_paved"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:textColor="?android:attr/textColorPrimary"/>
|
||||
<androidx.appcompat.widget.SwitchCompat
|
||||
android:id="@+id/avoid_paved_roads_btn"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:padding="@dimen/margin_half_double_plus"/>
|
||||
</LinearLayout>
|
||||
<include layout="@layout/item_divider"/>
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:minHeight="@dimen/height_block_base"
|
||||
@@ -99,6 +80,7 @@
|
||||
android:layout_height="match_parent"
|
||||
android:padding="@dimen/margin_half_double_plus"/>
|
||||
</LinearLayout>
|
||||
<include layout="@layout/item_divider"/>
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:minHeight="@dimen/height_block_base"
|
||||
@@ -120,6 +102,7 @@
|
||||
android:padding="@dimen/margin_half_double_plus"
|
||||
android:layout_height="match_parent"/>
|
||||
</LinearLayout>
|
||||
<include layout="@layout/item_divider"/>
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:minHeight="@dimen/height_block_base"
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
style="@style/MwmWidget.TextView.Search"
|
||||
android:text="@string/clear_search"
|
||||
app:drawableStartCompat="@drawable/ic_close"/>
|
||||
app:drawableStartCompat="@drawable/ic_cancel"/>
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:contentDescription="@string/clear_the_search"
|
||||
android:scaleType="center"
|
||||
app:srcCompat="@drawable/ic_close"/>
|
||||
app:srcCompat="@drawable/ic_cancel"/>
|
||||
|
||||
<com.google.android.material.imageview.ShapeableImageView
|
||||
android:id="@+id/voice_input"
|
||||
|
||||
@@ -889,5 +889,4 @@
|
||||
<string name="avoid_steps">Vyhnout se schodům</string>
|
||||
<string name="offline_explanation_title">Offline mapy</string>
|
||||
<string name="list_description_empty">Upravit seznam pro přidání popisu</string>
|
||||
<string name="avoid_paved">Vyhnout se zpevněným cestám</string>
|
||||
</resources>
|
||||
|
||||
@@ -880,5 +880,4 @@
|
||||
<string name="offline_explanation_title">Offline kort</string>
|
||||
<string name="offline_explanation_text">Der skal downloades et kort for at kunne se og navigere i området.\nDownload kort over de områder, du ønsker at rejse i.</string>
|
||||
<string name="list_description_empty">Rediger listen for at tilføje en beskrivelse</string>
|
||||
<string name="avoid_paved">Undgå veje med fast belægning</string>
|
||||
</resources>
|
||||
|
||||
@@ -893,5 +893,4 @@
|
||||
<string name="unknown_count">unbekannt</string>
|
||||
<string name="error_invalid_number">ungültige Zahl</string>
|
||||
<string name="list_description_empty">Liste bearbeiten, um eine Beschreibung hinzuzufügen</string>
|
||||
<string name="avoid_paved">Befst. Straßen vermeiden</string>
|
||||
</resources>
|
||||
|
||||
@@ -898,5 +898,4 @@
|
||||
<string name="offline_explanation_title">Mapas sin conexión</string>
|
||||
<string name="offline_explanation_text">Se debe descargar un mapa para ver y navegar el área\nDescarga mapas de las áreas que quieras navegar.</string>
|
||||
<string name="editor_place_doesnt_exist_description">Describe la situación actual del lugar para enviar una nota de error a la comunidad de OpenStreetMap</string>
|
||||
<string name="avoid_paved">Evitar caminos pavimentados</string>
|
||||
</resources>
|
||||
|
||||
@@ -889,5 +889,4 @@
|
||||
<string name="offline_explanation_title">Ilma võrguühenduseta toimivad kaardid</string>
|
||||
<string name="offline_explanation_text">Selles piirkonnas liikumiseks ja teekonna juhatamiseks pead vajaliku kaardi alla laadima.\nVali allalaaditav kaart selle piirkonna kohta.</string>
|
||||
<string name="list_description_empty">Kirjelduse lisamiseks muuda loendit</string>
|
||||
<string name="avoid_paved">Väldi sillutatud teid</string>
|
||||
</resources>
|
||||
|
||||
@@ -898,5 +898,4 @@
|
||||
<string name="editor_place_doesnt_exist_description">Décrivez le lieu afin de signaler l\'erreur à la communauté OpenStreetMap</string>
|
||||
<string name="offline_explanation_text">Une carte doit être téléchargée pour visualiser et vous déplacer dans une zone.\nTéléchargez les cartes des zones que vous souhaitez visiter.</string>
|
||||
<string name="list_description_empty">Modifier la liste pour ajouter une description</string>
|
||||
<string name="avoid_paved">Éviter les routes goudronnées</string>
|
||||
</resources>
|
||||
|
||||
@@ -844,5 +844,4 @@
|
||||
<string name="backup_interval_every_day">Ik dienu</string>
|
||||
<string name="clear">Notīrīt</string>
|
||||
<string name="closed_now">Šobrīd slēgts</string>
|
||||
<string name="avoid_paved">Izvairīties no ceļiem ar cietu mākslīgo segumu</string>
|
||||
</resources>
|
||||
|
||||
@@ -885,5 +885,4 @@
|
||||
<string name="editor_socket">Rediger kontakt</string>
|
||||
<string name="charge_socket_type1">Type 1</string>
|
||||
<string name="edit_socket_info_tooltip">Opprett nye kontakter eller rediger eksisterende.</string>
|
||||
<string name="avoid_paved">Unngå asfalterte veier</string>
|
||||
</resources>
|
||||
|
||||
@@ -372,7 +372,7 @@
|
||||
<!-- The message when user did not find anything in the search. -->
|
||||
<string name="search_not_found_query">Pobierz region, w którym szukasz lub spróbuj dodać nazwę pobliskiego miasta/wsi.</string>
|
||||
<string name="search_history_title">Historia wyszukiwania</string>
|
||||
<string name="search_history_text">Zobacz swoje ostatnie wyszukiwania</string>
|
||||
<string name="search_history_text">Uzyskaj szybki dostęp do ostatniego hasła wyszukiwania.</string>
|
||||
<string name="clear_search">Wyczyść historię wyszukiwania</string>
|
||||
<!-- Place Page link to Wikipedia article (if map object has it). -->
|
||||
<string name="read_in_wikipedia">Wikipedia</string>
|
||||
|
||||
@@ -870,5 +870,4 @@
|
||||
<string name="offline_explanation_title">Mapas offline</string>
|
||||
<string name="editor_place_doesnt_exist_description">Descreva com detalhes como está o local agora mesmo para enviar uma nota de erro à comunidade do OpenStreetMap</string>
|
||||
<string name="list_description_empty">Edite a lista para adicionar uma descrição</string>
|
||||
<string name="avoid_paved">Evitar vias pavimentadas</string>
|
||||
</resources>
|
||||
|
||||
@@ -890,6 +890,4 @@
|
||||
<string name="offline_explanation_title">Офлајн мапе</string>
|
||||
<string name="editor_place_doesnt_exist_description">Опишите како место сада изгледа та бисте послали поруку о грешци OpenStreetMap заједници</string>
|
||||
<string name="avoid_steps">Избегавај степенице</string>
|
||||
<string name="avoid_paved">Избегавај асфалтиране путеве</string>
|
||||
<string name="list_description_empty">Промените листу да бисте додали опис</string>
|
||||
</resources>
|
||||
|
||||
@@ -36,13 +36,13 @@
|
||||
<string name="try_again">再试一次</string>
|
||||
<string name="about_menu_title">关于 CoMaps</string>
|
||||
<!-- Text in About screen -->
|
||||
<string name="about_headline">由社区驱动的开源项目</string>
|
||||
<string name="about_headline">由社区推动的开放项目</string>
|
||||
<!-- Text in About screen -->
|
||||
<string name="about_proposition_1">• 简单易用,精工细作</string>
|
||||
<string name="about_proposition_1">• 使用方便,外观精美</string>
|
||||
<!-- Text in About screen -->
|
||||
<string name="about_proposition_2">• 专注隐私,绝无广告</string>
|
||||
<string name="about_proposition_2">•注重隐私,毫无广告</string>
|
||||
<!-- Text in About screen -->
|
||||
<string name="about_proposition_3">• 离线、迅捷、轻量</string>
|
||||
<string name="about_proposition_3">• 离线、快速、精简</string>
|
||||
<!-- Text in About screen -->
|
||||
<string name="about_developed_by_enthusiasts">完全开源、决策问责、财务透明的非营利应用。</string>
|
||||
<!-- The button that opens system location settings -->
|
||||
|
||||
@@ -677,7 +677,6 @@
|
||||
<string name="avoid_ferry">Avoid ferries</string>
|
||||
<string name="avoid_motorways">Avoid freeways</string>
|
||||
<string name="avoid_steps">Avoid stairs</string>
|
||||
<string name="avoid_paved">Avoid paved roads</string>
|
||||
<string name="unable_to_calc_alert_title">Unable to calculate route</string>
|
||||
<string name="unable_to_calc_alert_subtitle">A route could not be found. This may be caused by your routing options or incomplete OpenStreetMap data. Please change your routing options and retry.</string>
|
||||
<string name="define_to_avoid_btn">Define roads to avoid</string>
|
||||
|
||||
@@ -7,6 +7,5 @@ public enum RoadType
|
||||
Motorway,
|
||||
Ferry,
|
||||
Dirty,
|
||||
Steps,
|
||||
Paved
|
||||
Steps
|
||||
}
|
||||
|
||||
@@ -1433,10 +1433,4 @@
|
||||
<string name="type.leisure.sports_centre.sport.swimming">Plavecké centrum</string>
|
||||
<string name="type.disusedbusiness">Neobsazený prostor</string>
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Studio jógy</string>
|
||||
<string name="type.amenity.boat_rental">Půjčovna lodí</string>
|
||||
<string name="type.amenity.mobile_money_agent">Mobilní peněžní agent</string>
|
||||
<string name="type.amenity.payment_centre">Platební centrum</string>
|
||||
<string name="type.leisure.indoor_play">Vnitřní herní centrum</string>
|
||||
<string name="type.shop.telecommunication">Telekomunikační obchod</string>
|
||||
<string name="type.amenity.car_pooling">Spolujízda</string>
|
||||
</resources>
|
||||
|
||||
@@ -28,9 +28,9 @@
|
||||
<string name="type.amenity.gambling">Gambling</string>
|
||||
<string name="type.leisure.adult_gaming_centre">Spillehal for voksne</string>
|
||||
<string name="type.leisure.amusement_arcade">Arkadespil</string>
|
||||
<string name="type.amenity.charging_station">Ladestation</string>
|
||||
<string name="type.amenity.charging_station.bicycle">Ladestation til elcykler</string>
|
||||
<string name="type.amenity.charging_station.motorcar">Ladestation til elbiler</string>
|
||||
<string name="type.amenity.charging_station">Ladestander</string>
|
||||
<string name="type.amenity.charging_station.bicycle">Cykelladestander</string>
|
||||
<string name="type.amenity.charging_station.motorcar">Billadestander</string>
|
||||
<string name="type.amenity.childcare">Vuggestue</string>
|
||||
<string name="type.amenity.cinema">Biograf</string>
|
||||
<string name="type.leisure.bowling_alley">Bowlinghal</string>
|
||||
@@ -83,17 +83,17 @@
|
||||
<string name="type.amenity.parking.street_side">Parkeringslomme</string>
|
||||
<string name="type.amenity.parking.street_side.fee">Parkeringslomme</string>
|
||||
<string name="type.amenity.parking.street_side.private">Privat parkeringslomme</string>
|
||||
<string name="type.amenity.parking.lane">Gadeparkering</string>
|
||||
<string name="type.amenity.parking.lane.fee">Gadeparkering</string>
|
||||
<string name="type.amenity.parking.lane.private">Privat gadeparkering</string>
|
||||
<string name="type.amenity.parking_entrance">Indkørsel til parkeringshus</string>
|
||||
<string name="type.amenity.parking_entrance.private">Indkørsel til privat parkeringshus</string>
|
||||
<string name="type.amenity.parking_entrance.permissive">Indkørsel til parkeringshus</string>
|
||||
<string name="type.amenity.parking_space">Parkeringsbås</string>
|
||||
<string name="type.amenity.parking_space.permissive">Parkeringsbås</string>
|
||||
<string name="type.amenity.parking_space.private">Parkeringsbås</string>
|
||||
<string name="type.amenity.parking_space.underground">Parkeringsbås</string>
|
||||
<string name="type.amenity.parking_space.disabled">Handicapparkeringsbås</string>
|
||||
<string name="type.amenity.parking.lane">Parkering i vejside</string>
|
||||
<string name="type.amenity.parking.lane.fee">Parkering i vejside</string>
|
||||
<string name="type.amenity.parking.lane.private">Privat parkering i vejside</string>
|
||||
<string name="type.amenity.parking_entrance">Parkeringsindkørsel</string>
|
||||
<string name="type.amenity.parking_entrance.private">Privat parkeringsindkørsel</string>
|
||||
<string name="type.amenity.parking_entrance.permissive">Parkeringsindkørsel</string>
|
||||
<string name="type.amenity.parking_space">Parkeringsplads</string>
|
||||
<string name="type.amenity.parking_space.permissive">Parkeringsplads</string>
|
||||
<string name="type.amenity.parking_space.private">Parkeringsplads</string>
|
||||
<string name="type.amenity.parking_space.underground">Parkeringsplads</string>
|
||||
<string name="type.amenity.parking_space.disabled">Handicapparkeringsplads</string>
|
||||
<string name="type.amenity.payment_terminal">Betalingsautomat</string>
|
||||
<string name="type.amenity.pharmacy">Apotek</string>
|
||||
<string name="type.amenity.place_of_worship">Tilbedelsessted</string>
|
||||
@@ -393,7 +393,7 @@
|
||||
<string name="type.man_made.bridge">Bro</string>
|
||||
<!-- These translations are used for all type.highway.*.tunnel. -->
|
||||
<string name="type.highway.road.tunnel">Tunnel</string>
|
||||
<string name="type.highway.secondary">Sekundær hovedvej</string>
|
||||
<string name="type.highway.secondary">Sækunder hovedvej</string>
|
||||
<!-- These translations are used for all type.highway.*.bridge. -->
|
||||
<string name="type.highway.secondary.bridge">Bro</string>
|
||||
<!-- These translations are used for all type.highway.*.tunnel. -->
|
||||
@@ -964,7 +964,7 @@
|
||||
<string name="type.shop.curtain">Gardinhandel</string>
|
||||
<string name="type.shop.deli">Delikatessebutik</string>
|
||||
<string name="type.shop.department_store">Stormagasin</string>
|
||||
<string name="type.shop.doityourself">Byggemarked</string>
|
||||
<string name="type.shop.doityourself">Isenkræmmer</string>
|
||||
<string name="type.shop.dry_cleaning">Renseri</string>
|
||||
<string name="type.shop.electronics">Elektronikbutik</string>
|
||||
<string name="type.shop.erotic">Erotikbutik</string>
|
||||
@@ -984,7 +984,7 @@
|
||||
<string name="type.shop.hearing_aids">Høreapparatbutik</string>
|
||||
<string name="type.shop.herbalist">Urtebutik</string>
|
||||
<string name="type.shop.hifi">HiFi lyd</string>
|
||||
<string name="type.shop.houseware">Isenkræmmer</string>
|
||||
<string name="type.shop.houseware">Husholdningsartikler butik</string>
|
||||
<string name="type.shop.jewelry">Smykkebutik</string>
|
||||
<string name="type.shop.kitchen">Køkkenforretning</string>
|
||||
<string name="type.shop.laundry">Vaskeri</string>
|
||||
@@ -993,21 +993,21 @@
|
||||
<string name="type.shop.mobile_phone">Mobiltelefonbutik</string>
|
||||
<string name="type.shop.money_lender">Pengeudlåner</string>
|
||||
<string name="type.shop.motorcycle">Motorcykelforhandler</string>
|
||||
<string name="type.shop.motorcycle_repair">Motorcykelværksted</string>
|
||||
<string name="type.shop.motorcycle_repair">Motorcykel reparation</string>
|
||||
<string name="type.shop.music">Pladebutik</string>
|
||||
<string name="type.shop.musical_instrument">Instrumentbutik</string>
|
||||
<string name="type.shop.musical_instrument">Butik med musikinstrumenter</string>
|
||||
<string name="type.shop.newsagent">Avis-kiosk</string>
|
||||
<string name="type.shop.optician">Optiker</string>
|
||||
<string name="type.shop.outdoor">Friluftsbutik</string>
|
||||
<string name="type.shop.outdoor">Fritidsudstyr</string>
|
||||
<string name="type.shop.outpost">Afhentningssted</string>
|
||||
<string name="type.shop.pasta">Pastabutik</string>
|
||||
<string name="type.shop.pasta">Pasta butik</string>
|
||||
<string name="type.shop.pastry">Bagværk</string>
|
||||
<string name="type.shop.pawnbroker">Pantelåner</string>
|
||||
<string name="type.shop.pet">Dyrehandel</string>
|
||||
<string name="type.shop.pet_grooming">Kæledyrspleje</string>
|
||||
<string name="type.shop.photo">Fotobutik</string>
|
||||
<string name="type.shop.rental">Udlejningsbutik</string>
|
||||
<string name="type.shop.rental.bicycle">Cykeludlejning</string>
|
||||
<string name="type.shop.rental.bicycle">Cykeludlejningsbutik</string>
|
||||
<string name="type.shop.seafood">Fiskehandler</string>
|
||||
<string name="type.shop.second_hand">Genbrugsbutik</string>
|
||||
<string name="type.shop.shoes">Skobutik</string>
|
||||
@@ -1015,7 +1015,7 @@
|
||||
<string name="type.shop.stationery">Kontorartikler</string>
|
||||
<string name="type.shop.supermarket">Supermarked</string>
|
||||
<string name="type.shop.tattoo">Tatovør</string>
|
||||
<string name="type.shop.tea">Tehandel</string>
|
||||
<string name="type.shop.tea">Tebutik</string>
|
||||
<string name="type.shop.ticket">Billetkontor</string>
|
||||
<string name="type.shop.toys">Legetøjsbutik</string>
|
||||
<string name="type.shop.travel_agency">Rejsebureau</string>
|
||||
@@ -1026,7 +1026,7 @@
|
||||
<string name="type.shop.wine">Vinhandel</string>
|
||||
<string name="type.shop.agrarian">Landbrugsbutik</string>
|
||||
<string name="type.shop.antiques">Antikvitetsbutik</string>
|
||||
<string name="type.shop.appliance">Hvidevareforretning</string>
|
||||
<string name="type.shop.appliance">Hvidevarer butik</string>
|
||||
<!-- maybe change to Art Gallery for en-US when supported -->
|
||||
<string name="type.shop.art">Kunstbutik</string>
|
||||
<string name="type.shop.baby_goods">Børnebutik</string>
|
||||
@@ -1036,8 +1036,8 @@
|
||||
<string name="type.shop.charity">Velgørenhedsbutik</string>
|
||||
<string name="type.shop.cheese">Ostebutik</string>
|
||||
<string name="type.shop.craft">Kunst og kunsthåndværk</string>
|
||||
<string name="type.shop.dairy">Mejeributik</string>
|
||||
<string name="type.shop.electrical">Elektrikerbutik</string>
|
||||
<string name="type.shop.dairy">Mejeriprodukter</string>
|
||||
<string name="type.shop.electrical">El-butik</string>
|
||||
<string name="type.shop.fishing">Fiskeributik</string>
|
||||
<string name="type.shop.interior_decoration">Brugskunsthandel</string>
|
||||
<string name="type.shop.lottery">Lottobutik</string>
|
||||
@@ -1058,7 +1058,7 @@
|
||||
<string name="type.sport.australian_football">Australsk fodbold</string>
|
||||
<string name="type.sport.baseball">Baseball</string>
|
||||
<string name="type.sport.basketball">Basketball</string>
|
||||
<string name="type.sport.beachvolleyball">Strandvolley</string>
|
||||
<string name="type.sport.beachvolleyball">Beachvolley</string>
|
||||
<string name="type.sport.chess">Skak</string>
|
||||
<string name="type.sport.curling">Curling</string>
|
||||
<string name="type.sport.equestrian">Ridesport</string>
|
||||
@@ -1163,7 +1163,7 @@
|
||||
<string name="type.highway.bridleway">Ridesti</string>
|
||||
<string name="type.highway.elevator">Elevator</string>
|
||||
<string name="type.highway.bridleway.permissive">Ridesti</string>
|
||||
<string name="type.amenity.biergarten">Biergarten</string>
|
||||
<string name="type.amenity.biergarten">Traktørsted</string>
|
||||
<string name="type.aerialway">Svævebane</string>
|
||||
<string name="type.aerialway.cable_car">Kabinelift</string>
|
||||
<string name="type.aerialway.drag_lift">Træklift</string>
|
||||
@@ -1220,7 +1220,7 @@
|
||||
<string name="type.cuisine.bubble_tea">Boblete</string>
|
||||
<string name="type.barrier.wall">Mur</string>
|
||||
<string name="type.cuisine.fish_and_chips">Fish and Chips</string>
|
||||
<string name="type.highway">Vej</string>
|
||||
<string name="type.highway">Hovedvej</string>
|
||||
<string name="type.highway.services">Rasteplads</string>
|
||||
<string name="type.internet_access">Internet</string>
|
||||
<string name="type.internet_access.wlan">Trådløst internet</string>
|
||||
@@ -1305,7 +1305,7 @@
|
||||
<string name="type.railway.subway">Metrolinje</string>
|
||||
<string name="type.public_transport.platform">Stoppested</string>
|
||||
<string name="type.railway.subway.tunnel">Metrolinjetunnel</string>
|
||||
<string name="type.shop.hardware">Isenkræmmer</string>
|
||||
<string name="type.shop.hardware">Byggemarked</string>
|
||||
<string name="type.aerialway.t.bar">Ankerlift</string>
|
||||
<string name="type.traffic_calming.bump">Vejbump</string>
|
||||
<string name="type.route.ferry">Færgerute</string>
|
||||
@@ -1389,32 +1389,8 @@
|
||||
<string name="type.barrier.wicket_gate">Portlåge</string>
|
||||
<string name="type.natural.wetland.reedbed">Rørskov</string>
|
||||
<string name="type.shop.lighting">Lysbutik</string>
|
||||
<string name="type.amenity.bench.backless">Bænk</string>
|
||||
<string name="type.amenity.charging_station.motorcar.small">Ladestander til biler</string>
|
||||
<string name="type.leisure.sports_centre.sport.multi">Idrætscenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.american_football">Idrætscenter</string>
|
||||
<string name="type.amenity.car_pooling">Samkørsel</string>
|
||||
<string name="type.shop.telecommunication">Telefonibutik</string>
|
||||
<string name="type.disusedbusiness">Ledig forretning</string>
|
||||
<string name="type.amenity.boat_rental">Bådudlejning</string>
|
||||
<string name="type.man_made.observatory">Observatorium</string>
|
||||
<string name="type.amenity.lounger">Solseng</string>
|
||||
<string name="type.leisure.bandstand">Scenepavillon</string>
|
||||
<string name="type.leisure.indoor_play">Legeland</string>
|
||||
<string name="type.leisure.sports_centre.sport.archery">Bueskydningscenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.athletics">Atletikcenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.baseball">Baseballcenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.badminton">Badmintoncenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.basketball">Basketballcenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.golf">Golfcenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.gymnastics">Gymnastikcenter</string>
|
||||
<string name="type.man_made.telescope">Teleskop</string>
|
||||
<string name="type.man_made.telescope.optical">Teleskop (Optisk)</string>
|
||||
<string name="type.man_made.telescope.radio">Teleskop (Radio)</string>
|
||||
<string name="type.man_made.telescope.gamma">Teleskop (Gamma)</string>
|
||||
<string name="type.leisure.sports_centre.sport.swimming">Svømmehal</string>
|
||||
<string name="type.amenity.food_bank">Fødevarebank</string>
|
||||
<string name="type.amenity.soup_kitchen">Suppekøkken</string>
|
||||
<string name="type.amenity.food_sharing">Fødevarerdeling</string>
|
||||
<string name="type.amenity.give_box">Donationsbøsse</string>
|
||||
<string name="type.amenity.bench.backless">Rygløs bænk</string>
|
||||
<string name="type.amenity.charging_station.motorcar.small">Opladningspunkt til biler</string>
|
||||
<string name="type.leisure.sports_centre.sport.multi">Sportscenter</string>
|
||||
<string name="type.leisure.sports_centre.sport.american_football">Sportscenter</string>
|
||||
</resources>
|
||||
|
||||
@@ -349,12 +349,7 @@
|
||||
<string name="type.entrance">Eingang</string>
|
||||
<!-- This is for main/primary entrances, for secondary entrances see type.entrance -->
|
||||
<string name="type.entrance.main">Haupteingang</string>
|
||||
<string name="type.entrance.house">Hauseingang</string>
|
||||
<string name="type.entrance.garage">Garageneingang</string>
|
||||
<string name="type.entrance.service">Serviceeingang</string>
|
||||
<string name="type.entrance.entry">(Nur) Eingang</string>
|
||||
<string name="type.entrance.exit">(Nur) Ausgang</string>
|
||||
<string name="type.entrance.emergency">Notausgang</string>
|
||||
<string name="type.entrance.exit">Ausgang</string>
|
||||
<string name="type.fee.no">Kostenlos</string>
|
||||
<string name="type.healthcare.laboratory">Medizinisches Labor</string>
|
||||
<string name="type.healthcare.physiotherapist">Physiotherapie</string>
|
||||
@@ -753,7 +748,6 @@
|
||||
<string name="type.natural.spring">Quelle</string>
|
||||
<string name="type.natural.spring.drinking_water_no">Quelle</string>
|
||||
<string name="type.natural.strait">Meerenge</string>
|
||||
<string name="type.natural.tree">Baum</string>
|
||||
<string name="type.natural.tree_row">Baumreihe</string>
|
||||
<string name="type.natural.vineyard">Weinberg</string>
|
||||
<string name="type.natural.volcano">Vulkan</string>
|
||||
@@ -1444,15 +1438,4 @@
|
||||
<string name="type.power.portal">Abspannportal</string>
|
||||
<string name="type.shop.lighting">Lampenladen</string>
|
||||
<string name="type.disusedbusiness">Leerstehendes Geschäft</string>
|
||||
<string name="type.leisure.indoor_play">Indoor-Spielplatz</string>
|
||||
<string name="type.amenity.car_pooling">Fahrgemeinschaften</string>
|
||||
<string name="type.shop.telecommunication">Telekommunikationsgeschäft</string>
|
||||
<string name="type.man_made.telescope">Teleskop</string>
|
||||
<string name="type.man_made.telescope.optical">Teleskop (Optisch)</string>
|
||||
<string name="type.man_made.telescope.radio">Teleskop (Radio)</string>
|
||||
<string name="type.man_made.telescope.gamma">Teleskop (Gamma)</string>
|
||||
<string name="type.man_made.observatory">Observatorium</string>
|
||||
<string name="type.amenity.payment_centre">Zahlungszentrum</string>
|
||||
<string name="type.amenity.soup_kitchen">Suppenküche</string>
|
||||
<string name="type.amenity.food_bank">Tafel</string>
|
||||
</resources>
|
||||
|
||||
@@ -1437,13 +1437,4 @@
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Estudio de yoga</string>
|
||||
<string name="type.disusedbusiness">Local comercial vacante</string>
|
||||
<string name="type.amenity.lounger">Tumbona</string>
|
||||
<string name="type.amenity.boat_rental">Alquiler de botes</string>
|
||||
<string name="type.man_made.telescope">Telescopio</string>
|
||||
<string name="type.man_made.telescope.optical">Telescopio (óptico)</string>
|
||||
<string name="type.man_made.telescope.radio">Radiotelescopio</string>
|
||||
<string name="type.man_made.telescope.gamma">Telescopio Fermi</string>
|
||||
<string name="type.man_made.observatory">Observatorio</string>
|
||||
<string name="type.amenity.mobile_money_agent">Agencia de efectivo móvil</string>
|
||||
<string name="type.amenity.car_pooling">Punto de Vehículo Compartido</string>
|
||||
<string name="type.amenity.payment_centre">Centro de pagos</string>
|
||||
</resources>
|
||||
|
||||
@@ -1436,19 +1436,4 @@
|
||||
<string name="type.leisure.sports_centre.sport.yoga">Joogakeskus</string>
|
||||
<string name="type.disusedbusiness">Vaba äripind</string>
|
||||
<string name="type.amenity.lounger">Rannatool</string>
|
||||
<string name="type.amenity.boat_rental">Paadirent</string>
|
||||
<string name="type.man_made.telescope">Teleskoop</string>
|
||||
<string name="type.man_made.telescope.optical">Optiline teleskoop</string>
|
||||
<string name="type.man_made.telescope.radio">Raadioteleskoop</string>
|
||||
<string name="type.man_made.telescope.gamma">Gammateleskoop</string>
|
||||
<string name="type.man_made.observatory">Observatoorium</string>
|
||||
<string name="type.amenity.mobile_money_agent">Nutiraha müüja</string>
|
||||
<string name="type.amenity.car_pooling">Ühiskasutusautode peatus</string>
|
||||
<string name="type.amenity.payment_centre">Maksekeskus</string>
|
||||
<string name="type.leisure.indoor_play">Mängusaal/Mängutuba</string>
|
||||
<string name="type.shop.telecommunication">Sideteenuste pood</string>
|
||||
<string name="type.amenity.soup_kitchen">Supiköök</string>
|
||||
<string name="type.amenity.food_bank">Toidupank</string>
|
||||
<string name="type.amenity.food_sharing">Toidujagamine</string>
|
||||
<string name="type.amenity.give_box">Annetuskast</string>
|
||||
</resources>
|
||||
|
||||
@@ -1434,21 +1434,6 @@
|
||||
<string name="type.leisure.sports_centre.sport.volleyball">Complexe sportif</string>
|
||||
<string name="type.leisure.sports_centre.sport.yoga">Complexe sportif</string>
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Salle de yoga</string>
|
||||
<string name="type.disusedbusiness">Magasin vacant</string>
|
||||
<string name="type.disusedbusiness">Locaux commerciaux libres</string>
|
||||
<string name="type.amenity.lounger">Chaise longue</string>
|
||||
<string name="type.amenity.boat_rental">Vente de bateau</string>
|
||||
<string name="type.amenity.payment_centre">Centre de paiement</string>
|
||||
<string name="type.amenity.mobile_money_agent">Agent d\'argent liquide</string>
|
||||
<string name="type.leisure.indoor_play">Complexe de jeux intérieurs</string>
|
||||
<string name="type.shop.telecommunication">Boutique télécom</string>
|
||||
<string name="type.man_made.telescope.optical">Télescope (optique)</string>
|
||||
<string name="type.man_made.telescope.radio">Télescope (radio)</string>
|
||||
<string name="type.man_made.observatory">Observatoire</string>
|
||||
<string name="type.amenity.food_bank">Banque alimentaire</string>
|
||||
<string name="type.amenity.food_sharing">Repas partagé</string>
|
||||
<string name="type.man_made.telescope.gamma">Télescope (Gamma)</string>
|
||||
<string name="type.amenity.car_pooling">Covoiturage</string>
|
||||
<string name="type.amenity.soup_kitchen">Soupe populaire</string>
|
||||
<string name="type.amenity.give_box">Boîte à don</string>
|
||||
<string name="type.man_made.telescope">Télescope</string>
|
||||
</resources>
|
||||
|
||||
@@ -1400,5 +1400,4 @@
|
||||
<string name="type.shop.lighting">Negozio di illuminazione</string>
|
||||
<string name="type.amenity.bench.backless">Panchina senza schienale</string>
|
||||
<string name="type.amenity.charging_station.motorcar.small">Colonnina di ricarica</string>
|
||||
<string name="type.man_made.observatory">Osservatorio</string>
|
||||
</resources>
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
<string name="type.place.sea">Jūra</string>
|
||||
<string name="type.amenity.bar">Bārs</string>
|
||||
<string name="type.amenity.bicycle_parking">Divriteņu novietne</string>
|
||||
<string name="type.amenity.bicycle_rental">Velosipēdu noma</string>
|
||||
<string name="type.amenity.bicycle_rental">Velosipēdu īre</string>
|
||||
<string name="type.amenity.biergarten">Alus dārzs</string>
|
||||
<string name="type.amenity.bureau_de_change">Valūtas maiņa</string>
|
||||
<string name="type.amenity.bus_station">Autoosta</string>
|
||||
@@ -136,23 +136,4 @@
|
||||
<string name="type.sport.climbing">Kāpšana</string>
|
||||
<string name="type.sport.scuba_diving">Niršana</string>
|
||||
<string name="type.sport.cricket">Krikets</string>
|
||||
<string name="type.shop.telecommunication">Tālsaziņas preču veikals</string>
|
||||
<string name="type.shop.ticket">Biļešu tirdzniecības vieta</string>
|
||||
<string name="type.shop.toys">Rotaļlietu veikals</string>
|
||||
<string name="type.shop.travel_agency">Ceļojumu aģentūra</string>
|
||||
<string name="type.shop.tyres">Riepu veikals</string>
|
||||
<string name="type.amenity.payment_centre">Maksājumu centrs</string>
|
||||
<string name="type.amenity.pharmacy">Aptieka</string>
|
||||
<string name="type.amenity.place_of_worship">Pielūgsmes vieta</string>
|
||||
<string name="type.amenity.place_of_worship.buddhist">Budistu templis</string>
|
||||
<string name="type.amenity.place_of_worship.christian">Baznīca</string>
|
||||
<string name="type.amenity.boat_rental">Laivu noma</string>
|
||||
<string name="type.amenity.bicycle_repair_station">Divriteņu darbnīca</string>
|
||||
<string name="type.man_made.telescope.gamma">Teleskops (Gamma)</string>
|
||||
<string name="type.man_made.observatory">Observatorija</string>
|
||||
<string name="type.man_made.telescope">Teleskops</string>
|
||||
<string name="type.man_made.telescope.optical">Teleskops (optiskais)</string>
|
||||
<string name="type.man_made.telescope.radio">Teleskops (radio)</string>
|
||||
<string name="type.amenity.soup_kitchen">Zupas virtuve</string>
|
||||
<string name="type.amenity.food_sharing">Ēdiena kopīgošana</string>
|
||||
</resources>
|
||||
|
||||
@@ -1363,13 +1363,4 @@
|
||||
<string name="type.railway.funicular.tunnel">Kabelbanetunnel</string>
|
||||
<string name="type.military">Militært</string>
|
||||
<string name="type.landuse.education">Utdanningsinstitusjon</string>
|
||||
<string name="type.man_made.telescope">Teleskop</string>
|
||||
<string name="type.amenity.food_bank">Matsentral</string>
|
||||
<string name="type.man_made.telescope.gamma">Teleskop (Gamma)</string>
|
||||
<string name="type.man_made.telescope.radio">Teleskop (Radio)</string>
|
||||
<string name="type.amenity.soup_kitchen">Suppekjøkken</string>
|
||||
<string name="type.amenity.car_pooling">Samkjøring</string>
|
||||
<string name="type.shop.telecommunication">Telekommunikasjonsbutikk</string>
|
||||
<string name="type.amenity.boat_rental">Båtutleie</string>
|
||||
<string name="type.man_made.observatory">Observatorium</string>
|
||||
</resources>
|
||||
|
||||
@@ -1435,15 +1435,4 @@
|
||||
<string name="type.leisure.sports_centre.sport.yoga">Centrum sportowe</string>
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Studio Jogi</string>
|
||||
<string name="type.disusedbusiness">Pusty lokal</string>
|
||||
<string name="type.amenity.boat_rental">Wypożyczalnia łodzi</string>
|
||||
<string name="type.man_made.telescope">Teleskop</string>
|
||||
<string name="type.man_made.telescope.optical">Teleskop optyczny</string>
|
||||
<string name="type.man_made.telescope.radio">Radioteleskop</string>
|
||||
<string name="type.man_made.telescope.gamma">Teleskop (prom. gamma)</string>
|
||||
<string name="type.man_made.observatory">Obserwatorium</string>
|
||||
<string name="type.amenity.car_pooling">Car Pooling</string>
|
||||
<string name="type.shop.telecommunication">Sklep dostawcy usług telekomunikacyjnych</string>
|
||||
<string name="type.amenity.food_bank">Bank żywności</string>
|
||||
<string name="type.amenity.soup_kitchen">Jadłodajnia</string>
|
||||
<string name="type.amenity.food_sharing">Jadłodzielnia</string>
|
||||
</resources>
|
||||
|
||||
@@ -1425,19 +1425,4 @@
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Academia de ioga</string>
|
||||
<string name="type.disusedbusiness">Estabelecimento vazio</string>
|
||||
<string name="type.amenity.lounger">Espreguiçadeira</string>
|
||||
<string name="type.amenity.boat_rental">Aluguel de barco</string>
|
||||
<string name="type.man_made.telescope">Telescópio</string>
|
||||
<string name="type.man_made.telescope.optical">Telescópio (óptico)</string>
|
||||
<string name="type.man_made.telescope.radio">Telescópio (rádio)</string>
|
||||
<string name="type.man_made.telescope.gamma">Telescópio (gama)</string>
|
||||
<string name="type.man_made.observatory">Observatório</string>
|
||||
<string name="type.amenity.mobile_money_agent">Agente de Mobile Money</string>
|
||||
<string name="type.amenity.car_pooling">Carona</string>
|
||||
<string name="type.amenity.payment_centre">Centro de pagamentos</string>
|
||||
<string name="type.leisure.indoor_play">Centro de recreação interno</string>
|
||||
<string name="type.shop.telecommunication">Loja de Telecomunicação</string>
|
||||
<string name="type.amenity.soup_kitchen">Restaurante popular</string>
|
||||
<string name="type.amenity.food_bank">Banco de alimentos</string>
|
||||
<string name="type.amenity.food_sharing">Compartilhamento de alimentos</string>
|
||||
<string name="type.amenity.give_box">Caixa de doação</string>
|
||||
</resources>
|
||||
|
||||
@@ -652,8 +652,8 @@
|
||||
<string name="type.leisure.sauna">Сауна</string>
|
||||
<string name="type.leisure.slipway">Лодочный спуск</string>
|
||||
<string name="type.leisure.sports_centre">Спорткомплекс</string>
|
||||
<string name="type.sport.climbing">Скалолазание</string>
|
||||
<string name="type.sport.yoga">Йога</string>
|
||||
<string name="type.sport.climbing">Скалодром</string>
|
||||
<string name="type.sport.yoga">Йога-центр</string>
|
||||
<string name="type.leisure.stadium">Стадион</string>
|
||||
<string name="type.leisure.swimming_pool">Плавательный бассейн</string>
|
||||
<string name="type.leisure.swimming_pool.private">Плавательный бассейн</string>
|
||||
@@ -1131,7 +1131,7 @@
|
||||
<string name="type.shop.chemist">Бытовая химия</string>
|
||||
<string name="type.shop.chocolate">Магазин шоколада</string>
|
||||
<string name="type.shop.clothes">Магазин одежды</string>
|
||||
<string name="type.shop.coffee">Продавец кофе</string>
|
||||
<string name="type.shop.coffee">Магазин кофе</string>
|
||||
<string name="type.shop.computer">Компьютерный магазин</string>
|
||||
<string name="type.shop.confectionery">Кондитерская</string>
|
||||
<string name="type.shop.convenience">Продуктовый магазин</string>
|
||||
@@ -1248,7 +1248,7 @@
|
||||
<string name="type.sport.handball">Гандбол</string>
|
||||
<string name="type.sport.multi">Различные виды спорта</string>
|
||||
<!-- Used to tag a scuba diving site. -->
|
||||
<string name="type.sport.scuba_diving">Подводное плавание с аквалангом</string>
|
||||
<string name="type.sport.scuba_diving">Место для ныряния с аквалангом</string>
|
||||
<string name="type.sport.shooting">Стрельба</string>
|
||||
<string name="type.sport.skateboard">Скейтбординг</string>
|
||||
<string name="type.sport.skiing">Лыжи</string>
|
||||
@@ -1383,7 +1383,7 @@
|
||||
<string name="type.fee.yes">$</string>
|
||||
<string name="type.barrier.guard_rail">Дорожное ограждение (отбойник)</string>
|
||||
<string name="type.landuse.plant_nursery">Садовый питомник</string>
|
||||
<string name="type.amenity.studio">Медиа-студия</string>
|
||||
<string name="type.amenity.studio">Студия</string>
|
||||
<string name="type.leisure.firepit">Кострище</string>
|
||||
<string name="type.highway.ladder">Лестница-лаз</string>
|
||||
<string name="type.sport.diving">Высотные прыжки в воду</string>
|
||||
@@ -1399,57 +1399,4 @@
|
||||
<string name="type.office.security">Офис охранника</string>
|
||||
<string name="type.building.guardhouse">Будка безопасности</string>
|
||||
<string name="type.power.portal">Портальная опора</string>
|
||||
<string name="type.amenity.boat_rental">Прокат лодок</string>
|
||||
<string name="type.man_made.telescope">Телескоп</string>
|
||||
<string name="type.man_made.telescope.optical">Телескоп (оптический)</string>
|
||||
<string name="type.man_made.telescope.radio">Телескоп (радио)</string>
|
||||
<string name="type.man_made.telescope.gamma">Телескоп (Гамма)</string>
|
||||
<string name="type.man_made.observatory">Обсерватория</string>
|
||||
<string name="type.amenity.charging_station.motorcar.small">Пункт зарядки автомобиля</string>
|
||||
<string name="type.amenity.lounger">Шезлонг</string>
|
||||
<string name="type.amenity.car_pooling">Совместное использование авто</string>
|
||||
<string name="type.amenity.payment_centre">Платежный центр</string>
|
||||
<string name="type.leisure.bandstand">Эстрада</string>
|
||||
<string name="type.leisure.indoor_play">Крытый игровой центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.multi">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.american_football">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.archery">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.athletics">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.australian_football">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.badminton">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.baseball">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.basketball">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.beachvolleyball">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.bowls">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.climbing">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.cricket">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.curling">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.equestrian">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.field_hockey">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.futsal">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.golf">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.gymnastics">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.handball">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.ice_hockey">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.padel">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.pelota">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.scuba_diving">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.shooting">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.skateboard">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.skiing">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.soccer">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.swimming">Плавательный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.table_tennis">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.tennis">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.volleyball">Спортивный центр</string>
|
||||
<string name="type.leisure.sports_centre.sport.yoga">Спортивный центр</string>
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Студия Йоги</string>
|
||||
<string name="type.shop.telecommunication">Телекоммуникационный магазин</string>
|
||||
<string name="type.disusedbusiness">Вакантный бизнес</string>
|
||||
<string name="type.amenity.soup_kitchen">Бесплатная столовая</string>
|
||||
<string name="type.amenity.food_bank">Продовольственный банк</string>
|
||||
<string name="type.amenity.food_sharing">Обмен едой</string>
|
||||
<string name="type.amenity.give_box">Подарить коробку</string>
|
||||
<string name="type.amenity.bench.backless">Скамья без спинки</string>
|
||||
<string name="type.amenity.mobile_money_agent">Агент мобильных платежей</string>
|
||||
</resources>
|
||||
|
||||
@@ -154,10 +154,4 @@
|
||||
<string name="type.amenity.charging_station.motorcar.small">Polnilno mesto za avtomobile</string>
|
||||
<string name="type.amenity.childcare">Vrtec</string>
|
||||
<string name="type.amenity.cinema">Kino</string>
|
||||
<string name="type.amenity.boat_rental">Izposoja čolnov</string>
|
||||
<string name="type.man_made.telescope">Teleskop</string>
|
||||
<string name="type.man_made.telescope.optical">Teleskop (svetlobni)</string>
|
||||
<string name="type.man_made.telescope.radio">Teleskop (radijski)</string>
|
||||
<string name="type.man_made.telescope.gamma">Teleskop (gama žarki)</string>
|
||||
<string name="type.man_made.observatory">Zvezdarna</string>
|
||||
</resources>
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
<string name="type.amenity.bbq">Грил</string>
|
||||
<string name="type.amenity.bench">Клупа</string>
|
||||
<string name="type.amenity.bicycle_parking">Паркинг за бицикле</string>
|
||||
<string name="type.amenity.bicycle_rental">Изнајмљивање бицикала</string>
|
||||
<string name="type.amenity.bicycle_rental">Рентирање бицикли</string>
|
||||
<string name="type.amenity.bicycle_repair_station">Станица за поправку бицикала</string>
|
||||
<string name="type.amenity.biergarten">Пивска башта</string>
|
||||
<string name="type.amenity.brothel">Јавна кућа</string>
|
||||
@@ -648,7 +648,7 @@
|
||||
<string name="type.leisure.slipway">Навоз</string>
|
||||
<string name="type.leisure.sports_centre">Спортски центар</string>
|
||||
<string name="type.sport.climbing">Вештачка стена</string>
|
||||
<string name="type.sport.yoga">Јога</string>
|
||||
<string name="type.sport.yoga">Јога студио</string>
|
||||
<string name="type.leisure.stadium">Стадион</string>
|
||||
<string name="type.leisure.swimming_pool">Базен</string>
|
||||
<string name="type.leisure.swimming_pool.private">Приватни базен</string>
|
||||
@@ -1161,7 +1161,7 @@
|
||||
<string name="type.shop.pet_grooming">Грумер</string>
|
||||
<string name="type.shop.photo">Фотограф</string>
|
||||
<string name="type.shop.rental">Центар за изнајмљивање</string>
|
||||
<string name="type.shop.rental.bicycle">Центар за изнајмљивање бицикала</string>
|
||||
<string name="type.shop.rental.bicycle">Изнајмљивање бицикала</string>
|
||||
<string name="type.shop.seafood">Рибарница</string>
|
||||
<string name="type.shop.second_hand">Половна одећа</string>
|
||||
<string name="type.shop.shoes">Обућа</string>
|
||||
@@ -1230,7 +1230,7 @@
|
||||
<string name="type.sport.soccer">Фудбал</string>
|
||||
<string name="type.sport.swimming">Пливање</string>
|
||||
<string name="type.sport.table_tennis">Стони тенис</string>
|
||||
<string name="type.sport.tennis">Тениски терен</string>
|
||||
<string name="type.sport.tennis">Тенис</string>
|
||||
<string name="type.sport.volleyball">Одбојка</string>
|
||||
<string name="type.sport.10pin">Куглање</string>
|
||||
<string name="type.sport.9pin">Куглање</string>
|
||||
@@ -1375,7 +1375,7 @@
|
||||
<string name="type.leisure.firepit">Огњиште</string>
|
||||
<string name="type.landuse.plant_nursery">Расадник</string>
|
||||
<string name="type.barrier.guard_rail">Заштитна ограда</string>
|
||||
<string name="type.amenity.studio">Медијски студио</string>
|
||||
<string name="type.amenity.studio">Студио</string>
|
||||
<string name="type.highway.ladder">Мердевине</string>
|
||||
<string name="type.man_made.crane">Кран</string>
|
||||
<string name="type.railway.station.subway.qingdao">Метро станица</string>
|
||||
@@ -1398,57 +1398,4 @@
|
||||
<string name="type.building.guardhouse">Кућица обезбеђења</string>
|
||||
<string name="type.power.portal">Носач електричних водова</string>
|
||||
<string name="type.shop.lighting">Продавница расвете</string>
|
||||
<string name="type.amenity.give_box">Кутија за поклоне</string>
|
||||
<string name="type.amenity.food_sharing">Дељење хране</string>
|
||||
<string name="type.amenity.food_bank">Банка хране</string>
|
||||
<string name="type.amenity.soup_kitchen">Народна кухиња</string>
|
||||
<string name="type.man_made.observatory">Опсерваторија</string>
|
||||
<string name="type.man_made.telescope">Телескоп</string>
|
||||
<string name="type.man_made.telescope.optical">Телескоп (оптички)</string>
|
||||
<string name="type.man_made.telescope.radio">Телескоп (радио)</string>
|
||||
<string name="type.man_made.telescope.gamma">Телескоп (гама)</string>
|
||||
<string name="type.amenity.car_pooling">Заједничка вожња</string>
|
||||
<string name="type.amenity.payment_centre">Плаћање рачуна</string>
|
||||
<string name="type.amenity.bench.backless">Клупа без наслона</string>
|
||||
<string name="type.amenity.boat_rental">Изнајмљивање чамаца</string>
|
||||
<string name="type.amenity.charging_station.motorcar.small">Место за пуњење аутомобила</string>
|
||||
<string name="type.amenity.lounger">Лежаљка</string>
|
||||
<string name="type.amenity.mobile_money_agent">Посредник за мобилно плаћање</string>
|
||||
<string name="type.leisure.bandstand">Бина</string>
|
||||
<string name="type.leisure.indoor_play">Играоница</string>
|
||||
<string name="type.leisure.sports_centre.sport.multi">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.american_football">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.archery">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.athletics">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.australian_football">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.badminton">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.baseball">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.basketball">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.beachvolleyball">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.bowls">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.climbing">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.cricket">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.curling">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.equestrian">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.field_hockey">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.futsal">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.golf">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.gymnastics">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.handball">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.ice_hockey">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.padel">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.pelota">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.scuba_diving">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.shooting">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.skateboard">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.skiing">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.soccer">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.swimming">Пливачки центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.table_tennis">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.tennis">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.volleyball">Спортски центар</string>
|
||||
<string name="type.leisure.sports_centre.sport.yoga">Спортски центар</string>
|
||||
<string name="type.leisure.fitness_centre.sport.yoga">Јога студио</string>
|
||||
<string name="type.shop.telecommunication">Продавница мобилног оператера</string>
|
||||
<string name="type.disusedbusiness">Некоришћен пословни простор</string>
|
||||
</resources>
|
||||
|
||||
@@ -43,11 +43,6 @@
|
||||
<string name="type.amenity.motorcycle_rental">Motorcycle Rental</string>
|
||||
<string name="type.amenity.car_sharing">Car Sharing</string>
|
||||
<string name="type.amenity.car_wash">Car Wash</string>
|
||||
<string name="type.man_made.telescope">Telescope</string>
|
||||
<string name="type.man_made.telescope.optical">Telescope (Optical)</string>
|
||||
<string name="type.man_made.telescope.radio">Telescope (Radio)</string>
|
||||
<string name="type.man_made.telescope.gamma">Telescope (Gamma)</string>
|
||||
<string name="type.man_made.observatory">Observatory</string>
|
||||
<string name="type.amenity.casino">Casino</string>
|
||||
<string name="type.amenity.gambling">Gambling</string>
|
||||
<string name="type.leisure.adult_gaming_centre">Adult Gaming Centre</string>
|
||||
@@ -128,7 +123,6 @@
|
||||
<string name="type.amenity.parking_space.private">Parking Space</string>
|
||||
<string name="type.amenity.parking_space.underground">Parking Space</string>
|
||||
<string name="type.amenity.parking_space.disabled">Disabled Parking Space</string>
|
||||
<string name="type.amenity.car_pooling">Car Pooling</string>
|
||||
<string name="type.amenity.payment_centre">Payment Centre</string>
|
||||
<string name="type.amenity.payment_terminal">Payment Terminal</string>
|
||||
<string name="type.amenity.pharmacy">Pharmacy</string>
|
||||
@@ -383,12 +377,7 @@
|
||||
<string name="type.entrance">Entrance</string>
|
||||
<!-- This is for main/primary entrances, for secondary entrances see type.entrance -->
|
||||
<string name="type.entrance.main">Main Entrance</string>
|
||||
<string name="type.entrance.house">House Entrance</string>
|
||||
<string name="type.entrance.garage">Garage Entrance</string>
|
||||
<string name="type.entrance.service">Service Entrance</string>
|
||||
<string name="type.entrance.entry">Entry (Only)</string>
|
||||
<string name="type.entrance.exit">Exit (Only)</string>
|
||||
<string name="type.entrance.emergency">Emergency Exit</string>
|
||||
<string name="type.entrance.exit">Exit</string>
|
||||
<string name="type.fee.yes">$</string>
|
||||
<string name="type.fee.no">Free</string>
|
||||
<string name="type.healthcare.laboratory">Medical Laboratory</string>
|
||||
@@ -781,7 +770,6 @@
|
||||
<string name="type.man_made.embankment">Embankment</string>
|
||||
<string name="type.natural.coastline">Coastline</string>
|
||||
<string name="type.natural.desert">Desert</string>
|
||||
<string name="type.natural.sand">Sand</string>
|
||||
<string name="type.natural.geyser">Geyser</string>
|
||||
<string name="type.natural.glacier">Glacier</string>
|
||||
<string name="type.natural.grassland">Grassland</string>
|
||||
@@ -803,7 +791,6 @@
|
||||
<string name="type.natural.spring">Natural Spring</string>
|
||||
<string name="type.natural.spring.drinking_water_no">Natural Spring</string>
|
||||
<string name="type.natural.strait">Strait</string>
|
||||
<string name="type.natural.tree">Tree</string>
|
||||
<string name="type.natural.tree_row">Tree Row</string>
|
||||
<string name="type.natural.vineyard">Vineyard</string>
|
||||
<string name="type.natural.volcano">Volcano</string>
|
||||
@@ -1453,10 +1440,6 @@
|
||||
<string name="type.self_service.no">No self-service</string>
|
||||
<!-- https://wiki.openstreetmap.org/wiki/Key:social_facility -->
|
||||
<string name="type.amenity.social_facility">Social Facility</string>
|
||||
<string name="type.amenity.soup_kitchen">Soup Kitchen</string>
|
||||
<string name="type.amenity.food_bank">Food Bank</string>
|
||||
<string name="type.amenity.food_sharing">Food Sharing</string>
|
||||
<string name="type.amenity.give_box">Give Box</string>
|
||||
<!-- https://wiki.openstreetmap.org/wiki/Tag:emergency=emergency_ward_entrance -->
|
||||
<string name="type.emergency.emergency_ward_entrance">Emergency Ward Entrance</string>
|
||||
<!-- https://wiki.openstreetmap.org/wiki/Tag:amenity=dojo -->
|
||||
|
||||
@@ -119,7 +119,7 @@ echo "Generating search categories / synonyms..."
|
||||
if [ -z "$SKIP_GENERATE_SYMBOLS" ]; then
|
||||
if Diff data/symbols_hash data/styles/*/*/symbols/* || [ ! -z "$SYMBOLS_NOT_GENERATED" ]; then
|
||||
echo "Generating symbols..."
|
||||
bash ./tools/unix/generate_symbols.sh || (rm data/symbols_hash; exit 1)
|
||||
bash ./tools/unix/generate_symbols.sh
|
||||
fi
|
||||
else
|
||||
echo "Skipping generate symbols..."
|
||||
@@ -128,7 +128,7 @@ fi
|
||||
if [ -z "$SKIP_GENERATE_DRULES" ]; then
|
||||
if Diff data/drules_hash data/styles/*/*/*.mapcss data/styles/*/*/*.prio.txt data/mapcss-mapping.csv || [ ! -z "$DRULES_NOT_GENERATED" ]; then
|
||||
echo "Generating drules..."
|
||||
bash ./tools/unix/generate_drules.sh || (rm data/drules_hash; exit 1)
|
||||
bash ./tools/unix/generate_drules.sh
|
||||
fi
|
||||
else
|
||||
echo "Skipping generate drules..."
|
||||
|
||||
@@ -345,8 +345,6 @@
|
||||
"shop-dry_cleaning": "3Dry Cleaner|cleaning",
|
||||
"shop-tyres|@shop": "3Tyre|tyres",
|
||||
"amenity-car_wash": "3Car Wash",
|
||||
"man_made-telescope|man_made-telescope-optical|man_made-telescope-radio|man_made-telescope-gamma": "5Telescope",
|
||||
"man_made-observatory": "4Observatory",
|
||||
"amenity-veterinary": "Veterinary Doctor|4veterinary",
|
||||
"amenity-animal_shelter": "Animal Shelter",
|
||||
"@charging_station": "4Charging Station|charging",
|
||||
@@ -421,7 +419,6 @@
|
||||
"amenity-internet_cafe": "3Internet Cafe",
|
||||
"amenity-motorcycle_parking": "4Motorcycle Parking",
|
||||
"amenity-parking_space-disabled|@category_parking": "Disabled Parking Space",
|
||||
"amenity-car_pooling|@category_parking": "Car Pooling",
|
||||
"amenity-nursing_home": "4Nursing Home",
|
||||
"amenity-payment_terminal": "Payment Terminal",
|
||||
"amenity-payment_centre": "Payment Centre",
|
||||
@@ -496,10 +493,6 @@
|
||||
"man_made-cairn": "4Cairn",
|
||||
"wheelchair-yes": "5Wheelchair",
|
||||
"amenity-social_facility": "Social Facility",
|
||||
"social_facility-soup_kitchen": "4Soup Kitchen|Food",
|
||||
"social_facility-food_bank": "4Food Bank|foodbank|Food",
|
||||
"amenity-food_sharing": "Food Sharing|Food",
|
||||
"amenity-give_box": "Give Box",
|
||||
"leisure-sports_hall": "Sports hall",
|
||||
"amenity-arts_centre|@category_tourism": "Arts Center",
|
||||
"amenity-prison": "prison",
|
||||
|
||||
@@ -498,16 +498,5 @@
|
||||
"sport-9pin": "Bolos",
|
||||
"sport-10pin": "Bolos",
|
||||
"shop-bookmaker|@gambling": "Corredor de apuestas",
|
||||
"leisure-fitness_centre-sport-yoga": "Estudio de yoga",
|
||||
"amenity-mobile_money_agent": "Agencia de efectivo móvil | agente de dinero móvil | agencia de dinero móvil | agente de efectivo móvil",
|
||||
"amenity-boat_rental": "4aquiler de botes|alquiler de barcos|bote|botes|barco|barcos|barca|barcas|lancha|lanchas|embarcación|embarcaciones|velero|veleros|nagegar|3alquiler",
|
||||
"man_made-telescope|man_made-telescope-optical|man_made-telescope-radio|man_made-telescope-gamma": "4Telescopio",
|
||||
"man_made-observatory": "3Observatorio",
|
||||
"amenity-car_pooling|@category_parking": "Car pooling | Vehículo compartido | Blabla Car",
|
||||
"amenity-payment_centre": "Centro de pagos",
|
||||
"leisure-indoor_play": "Parque interior|niños",
|
||||
"shop-telecommunication|@shop": "Telecomunicaciones",
|
||||
"leisure-bandstand": "4Tarima",
|
||||
"social_facility-soup_kitchen": "4Comedor social | Comedor popular | Comedor comunitario | Comida",
|
||||
"social_facility-food_bank": "Banco de alimentos | alimento | comida | voluntariado"
|
||||
"leisure-fitness_centre-sport-yoga": "Estudio de yoga"
|
||||
}
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
{
|
||||
"World": {
|
||||
"languages": ["int_name", "en", "default"]
|
||||
},
|
||||
"WorldCoasts": {
|
||||
"languages": ["int_name", "en", "default"]
|
||||
},
|
||||
"Abkhazia": {
|
||||
"languages": ["ab", "ru"]
|
||||
},
|
||||
|
||||
@@ -386,11 +386,6 @@
|
||||
<include field="operator" />
|
||||
<include field="opening_hours" />
|
||||
</type>
|
||||
<type id="amenity-car_pooling">
|
||||
<include field="name" />
|
||||
<include field="operator" />
|
||||
<include field="opening_hours" />
|
||||
</type>
|
||||
<type id="amenity-pharmacy" group="shop">
|
||||
<include group="poi_internet" />
|
||||
</type>
|
||||
@@ -1194,14 +1189,6 @@
|
||||
<include field="opening_hours" />
|
||||
<include field="level" />
|
||||
</type>
|
||||
<type id="amenity-food_sharing">
|
||||
<include group="poi_internet" />
|
||||
<include field="operator" />
|
||||
</type>
|
||||
<type id="amenity-give_box">
|
||||
<include group="poi_internet" />
|
||||
<include field="operator" />
|
||||
</type>
|
||||
<type id="tourism-picnic_site" />
|
||||
<type id="leisure-picnic_table" />
|
||||
<type id="leisure-park">
|
||||
@@ -1264,15 +1251,6 @@
|
||||
</type>
|
||||
<type id="amenity-social_facility">
|
||||
<include group="poi_internet" />
|
||||
<include field="operator" />
|
||||
</type>
|
||||
<type id="social_facility-soup_kitchen">
|
||||
<include group="poi_internet" />
|
||||
<include field="operator" />
|
||||
</type>
|
||||
<type id="social_facility-food_bank">
|
||||
<include group="poi_internet" />
|
||||
<include field="operator" />
|
||||
</type>
|
||||
<type id="amenity-payment_centre">
|
||||
<include group="poi_internet" />
|
||||
|
||||
@@ -95,7 +95,7 @@ railway|rail;28;
|
||||
highway|service|parking_aisle;[highway=service][service=parking_aisle];;name;int_name;29;
|
||||
place|hamlet;30;
|
||||
moved:highway|road:05.2024;31;highway|road
|
||||
natural|tree;32;
|
||||
deprecated:highway|track|grade2:04.2024;[highway=track][tracktype=grade2];x;name;int_name;32;highway|track
|
||||
# ~1.5M usages w/o a more specific wetland=*
|
||||
natural|wetland;33;
|
||||
deprecated:highway|track|grade3:04.4024;[highway=track][tracktype=grade3];x;name;int_name;34;highway|track
|
||||
@@ -113,7 +113,7 @@ highway|service|driveway;[highway=service][service=driveway];;name;int_name;42;
|
||||
addr:interpolation|even;43;
|
||||
highway|motorway_link;44;
|
||||
waterway|stream|intermittent;[waterway=stream][intermittent=yes];;name;int_name;45;
|
||||
natural|sand;46;
|
||||
deprecated:highway|track|grade4:04.2024;[highway=track][tracktype=grade4];x;name;int_name;46;highway|track
|
||||
natural|water|pond;[natural=water][water=pond];;name;int_name;47;
|
||||
landuse|farmland;48;
|
||||
barrier|fence;49;
|
||||
@@ -462,7 +462,7 @@ place|country;349;
|
||||
deprecated:highway|path|alpine_hiking:04.2024;[highway=path][sac_scale=alpine_hiking];x;name;int_name;350;highway|path|expert
|
||||
tourism|zoo|petting;[tourism=zoo][zoo=petting_zoo];;name;int_name;351;
|
||||
sport|scuba_diving;352;
|
||||
entrance|emergency;[entrance=emergency],[exit=emergency];;name;int_name;353;
|
||||
deprecated:highway|cycleway|permissive:12.2023;[highway=cycleway][access=permissive];x;name;int_name;353;highway|cycleway
|
||||
highway|unclassified|area;[highway=unclassified][area?];;name;int_name;354;
|
||||
natural|volcano;355;
|
||||
amenity|parking|underground|fee;[amenity=parking][location=underground][fee],[amenity=parking][parking=underground][fee];;name;int_name;356;
|
||||
@@ -564,8 +564,8 @@ deprecated:railway|yard:06.2023;447;x
|
||||
natural|water|ditch;[natural=water][water=ditch];;name;int_name;448;
|
||||
natural|water|moat;[natural=water][water=moat];;name;int_name;449;
|
||||
natural|water|wastewater;[natural=water][water=wastewater];;name;int_name;450;
|
||||
entrance|service;451;
|
||||
entrance|entry;[entrance=entrance];;ref;addr:flats;452;
|
||||
deprecated:railway|razed:06.2023;451;x
|
||||
deprecated:highway|footway|demanding_mountain_hiking:04.2024;[highway=footway][sac_scale=demanding_mountain_hiking];x;name;int_name;452;highway|path|difficult
|
||||
amenity|shelter|basic_hut;[amenity=shelter][shelter_type=basic_hut];;name;int_name;453;
|
||||
amenity|shelter|lean_to;[amenity=shelter][shelter_type=lean_to];;name;int_name;454;
|
||||
landuse|orchard;455;
|
||||
@@ -628,17 +628,17 @@ drinking_water|no;505;
|
||||
deprecated|deprecated;506;x
|
||||
deprecated|deprecated;507;x
|
||||
deprecated|deprecated;508;x
|
||||
amenity|car_pooling;509;
|
||||
social_facility|soup_kitchen;510;
|
||||
social_facility|food_bank;511;
|
||||
amenity|food_sharing;512;
|
||||
deprecated:railway|spur|bridge:06.2023;509;x
|
||||
deprecated|deprecated;510;x
|
||||
deprecated|deprecated;511;x
|
||||
deprecated|deprecated;512;x
|
||||
sport|curling;513;
|
||||
amenity|give_box;514;
|
||||
man_made|telescope;515;
|
||||
man_made|telescope|optical;[man_made=telescope][telescope:type=optical];;name;int_name;516;
|
||||
man_made|telescope|radio;[man_made=telescope][telescope:type=radio];;name;int_name;517;
|
||||
man_made|telescope|gamma;[man_made=telescope][telescope:type=gamma];;name;int_name;518;
|
||||
man_made|observatory;519;
|
||||
deprecated|deprecated;514;x
|
||||
deprecated|deprecated;515;x
|
||||
deprecated|deprecated;516;x
|
||||
deprecated|deprecated;517;x
|
||||
deprecated|deprecated;518;x
|
||||
deprecated|deprecated;519;x
|
||||
sport|diving;520;
|
||||
#~270k uses.
|
||||
man_made|utility_pole;521;
|
||||
@@ -1117,8 +1117,8 @@ junction|roundabout;990;
|
||||
highway|speed_camera;991;
|
||||
shop|beauty;992;
|
||||
shop|sports;993;
|
||||
entrance|house;[entrance=home],[entrance=staircase];;ref;addr:flats;994;
|
||||
entrance|garage;[entrance=garage];;ref;addr:flats;995;
|
||||
deprecated:route|ferry|motor_vehicle:09.2021;[route=ferry][motor_vehicle];x;name;int_name;994;route|ferry
|
||||
deprecated:railway|rail|motor_vehicle:06.2023;[railway=rail][motor_vehicle],[railway=rail][motorcar];x;name;int_name;995;railway|rail
|
||||
hwtag|nofoot;996;
|
||||
place|city|capital|2;[place=city][capital=2],[place=city][capital?][admin_level=2];;name;int_name;997;
|
||||
place|city|capital|3;[place=city][capital=3],[place=city][capital?][admin_level=3];;name;int_name;998;
|
||||
@@ -1348,7 +1348,7 @@ railway|subway_entrance|warszawa;[railway=subway_entrance][city=warszawa];;name;
|
||||
shop|bed;1221;
|
||||
shop|outpost;1222;
|
||||
shop|gas;1223;
|
||||
natural|desert;1224;
|
||||
natural|desert;[natural=desert],[natural=sand][desert=erg];;name;int_name;1224;
|
||||
natural|water|tunnel;[natural=water][tunnel?];;name;int_name;1225;
|
||||
place|square;1226;
|
||||
tourism|artwork|architecture;[tourism=artwork][artwork_type=architecture],[tourism=artwork][type=architecture];;name;int_name;1227;
|
||||
|
||||
|
Can't render this file because it contains an unexpected character in line 7 and column 16.
|
@@ -91,6 +91,11 @@ natural=forest : natural=wood
|
||||
natural=shrubbery : natural=scrub
|
||||
cliff=yes : natural=cliff
|
||||
|
||||
desert=sand : desert=erg
|
||||
desert=yes : desert=erg
|
||||
desert=semi_arid : desert=erg
|
||||
desert=dune : desert=erg
|
||||
|
||||
office=notary : office=lawyer
|
||||
office=administrative : office=government
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
<svg height="15" viewBox="0 0 15 15" width="15" xmlns="http://www.w3.org/2000/svg"><g fill="none"><rect fill="#000" height="15" opacity=".6" rx="1.875" width="15"/><rect fill="#2f6499" height="13.5" rx="1.5" width="13.5" x=".75" y=".75"/><path d="m4.30833333 11.4713297c.21052121.0559605.43455474.0861305.66692134.0861305h.66552345l.00088855.3790098c0 .311229-.29836282.56353-.666412.56353-.3680492 0-.666412-.252301-.666412-.56353zm6.38295947.0002346.0003739.4649057c0 .311229-.298278.56353-.6662225.56353-.36794462 0-.66622253-.252301-.66622253-.56353l-.00088834-.3790098h.66711087c.2319755 0 .4556437-.0300857.6658486-.0858959zm-.561486-8.55489763c.829944 0 1.5027466.67280261 1.5027466 1.50274669v5.25961347c0 .82994407-.6728026 1.50274667-1.5027466 1.50274667h-5.25961352c-.82994407 0-1.50274669-.6728026-1.50274669-1.50274667v-5.25961347c0-.82994408.67280262-1.50274669 1.50274669-1.50274669zm-5.24127678 6.38667341c-.31122904 0-.56353002.252301-.56353002.56353 0 .31122912.25230098.56353012.56353002.56353012.31122902 0 .56353001-.252301.56353001-.56353012 0-.311229-.25230099-.56353-.56353001-.56353zm5.21666668 0c-.31122903 0-.56353003.252301-.56353003.56353 0 .31122912.252301.56353012.56353003.56353012.311229 0 .56353-.252301.56353-.56353012 0-.311229-.252301-.56353-.56353-.56353zm.56147-3.84500675h-6.3416667v2.42105266c0 .3565628.31547343.64561401.70462963.64561401h4.93240737c.3891563 0 .7046297-.28905121.7046297-.64561401zm-.7046297-1.58333333h-4.93240737c-.3891562 0-.70462963.3364013-.70462963.75137335v.37568667h6.3416667v-.37568667c0-.41497205-.3154734-.75137335-.7046297-.75137335z" fill="#000" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 6 6" width="6" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m5 0c.55228475 0 1 .44771525 1 1v4c0 .55228475-.44771525 1-1 1h-4c-.55228475 0-1-.44771525-1-1v-4c0-.55228475.44771525-1 1-1z" fill="#000" fill-opacity=".6"/><path d="m1 .5h4c.27614237 0 .5.22385763.5.5v4c0 .27614237-.22385763.5-.5.5h-4c-.27614237 0-.5-.22385763-.5-.5v-4c0-.27614237.22385763-.5.5-.5z" fill="#2f6499" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
@@ -1 +0,0 @@
|
||||
<svg height="5" viewBox="0 0 5 5" width="5" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m4 0c.55228475 0 1 .44771525 1 1v3c0 .55228475-.44771525 1-1 1h-3c-.55228475 0-1-.44771525-1-1v-3c0-.55228475.44771525-1 1-1z" fill="#000" fill-opacity=".6"/><path d="m1 .5h3c.27614237 0 .5.22385763.5.5v3c0 .27614237-.22385763.5-.5.5h-3c-.27614237 0-.5-.22385763-.5-.5v-3c0-.27614237.22385763-.5.5-.5z" fill="#2f6499" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
@@ -1 +0,0 @@
|
||||
<svg height="4" viewBox="0 0 4 4" width="4" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m3 0c.55228475 0 1 .44771525 1 1v2c0 .55228475-.44771525 1-1 1h-2c-.55228475 0-1-.44771525-1-1v-2c0-.55228475.44771525-1 1-1z" fill="#000" fill-opacity=".6"/><path d="m1 .5h2c.27614237 0 .5.22385763.5.5v2c0 .27614237-.22385763.5-.5.5h-2c-.27614237 0-.5-.22385763-.5-.5v-2c0-.27614237.22385763-.5.5-.5z" fill="#2f6499" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
@@ -1 +0,0 @@
|
||||
<svg height="10" viewBox="0 0 8 10" width="8" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m6.45638209 0c.37609148 0 .72425864.1747833.96936352.49369282l.06615442.10027904c.10687134.18244079.16414241.39064697.16414241.60600579l.00033965 7.60002235c0 .08452163-.00881715.16822686-.03378359.28090951l-.0458696.14760544-.06668844.14497209-.07146019.1153718-.06179076.08041635-.07556165.08214374-.10781751.09508139-.10964934.07580657-.12987138.06948085-.07954583.03314166c-.04905188.01754418-.04905188.01754418-.1303233.03957053l-.15920996.02799023-.1287681.00750984h-4.22425693c-.10907652 0-.21669708-.01468463-.35383951-.05390448l-.14047138-.05265064-.10280855-.05337186-.14765925-.09957233-.10159134-.09041744-.10489342-.11895698-.0784479-.11480897-.05509066-.10505725-.06607418-.17129918-.02223491-.08669691c-.01814821-.0826435-.02722855-.16749219-.02722706-.25204115l-.00144536-.591-.00199757-.28322281-.02893303.00146741c-.51942228.01887315-.91865829-.24714738-.98830514-.67658602l-.01042408-.11069391c-.01253177-.43076054.32054599-.82795908.77223753-.84441048l.25542472-.030777c.00229529-.08066906.00229529-.18987309 0-.32761211-.03371432-.00977655-.08956256-.02247896-.1233309-.03714759-.45095098-.19588858-.51469301-.68984012-.30519389-1.15166694l.43196772-.89919451c.00947774-.02096777.00947724-.90442739-.00000149-2.65037885 0-.6627417.5372583-1.2 1.2-1.2z" fill="#000" opacity=".6"/><path d="m6.45638209.5c.22551627 0 .42612467.10664329.55414621.27225087l.04994362.07444573c.06074822.1037037.09557052.22443696.09557052.3533034l.00033965 7.6c0 .05011473-.00526633.09899944-.01527578.1461309l-.02384038.085169-.03771531.08786746-.0419297.07097489-.03740085.05020216-.03821292.04374726-.06347463.05861778-.06028924.04402764-.07874284.044385-.06117341.02581362c-.01766844.00664526-.03607223.01258439-.05479097.01776541l-.09216812.01890871-.0953255.00639017h-4.22425693c-.06480353 0-.12755032-.00880593-.18710905-.02528645l-.09162788-.0324093-.04872236-.02328158-.09538019-.0610859-.05713707-.04808259-.06450448-.06946502-.04937574-.06908366-.02934081-.05219473-.04389022-.10543844-.01765973-.06765121c-.01032579-.04702168-.01559212-.09590639-.01559212-.14602112l-.00144537-.591.66089153-.02540436.09415983-.01277867-.00300941.57818303h4.12374307v-7.499h-4.12374307l-.00049701.60518552c-.30277731.25714038-.49010086.63138619-.49010086 1.05120766l.00555985.11160682-.07728011.00485305c-.0660555.00624911-.12924699.01672474-.18947556.03124346l.00119711-1.85409651c0-.38659932.31340067-.7.7-.7zm-2.256326 3.31599576c.25595671 0 .43735449.1230815.49018767.54084433l.02877808.57142067.62174436.19704693c.31792476.09362657.4520938.24201607.40250712.44516851-.03257321.13344966-.16664108.18318709-.40220364.14921229-.11574123-.01797477-.23380508-.05174093-.31880324-.0684414l-.60646039-.16066363c-.26277038-.06961813-.29780643-.22302452-.30247791-.41885973l-.07592051-.64933479-.16065403.0000192c-.19078646.30319659-.10110927.79611708-.16066363 1.25944922h.29120123c.32132726 0 .83343457.3031966.51210731.90960578l-.48199088.90963778c-.32132726.60639318-.80328614.15159989-.64265452-.1515999l.48199089-.90963778c.0648808-.12244607-.03044986-.14599339-.10942109-.15052172l-.84425517-.00107817-.15426327.28432918-.14131385.24161291c-.14333507.22167486-.22812622.57718916-.61780982.57718916l-1.02876487.03740254c-.68581553.02491902-.53293243-.61986625-.19003789-.63235508l1.0908756-.03994917c.05913462-.0063629.08251176-.03738214.18447811-.22729991.13109959-.24417998.20388236-.45229962.20388236-.59080509 0-.35265986.06565766-1.09536109.16065723-1.51599895h-.48199088l-.09191427.16896043-.3097352.59819487c-.14617965.27634582-.31140187.31036692-.44324586.25309522-.13184399-.05727171-.15972216-.24295654-.05677328-.47029852l.50001914-1.00474529c.02972597-.06576327.08142637-.15159989.32132725-.15159989zm-.965957-1.51599576c.3549322 0 .64265451.27147032.64265451.60639318 0 .33492926-.28771911.60639318-.64265451.60639318-.3549322 0-.64265452-.27147032-.64265452-.60639318 0-.31522754.25486538-.57423664.58076149-.60361755z" fill="#019b41"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 6 9" width="6" xmlns="http://www.w3.org/2000/svg"><path d="m5.05357504.00381365c.38659933 0 .7.31340068.7.7v7.6c0 .38659933-.31340067.7-.7.7h-4.22459658c-.38659933 0-.7-.31340067-.7-.7v-7.6c0-.38659932.31340067-.7.7-.7zm-.05059658.749-4.125.001v7.499h4.125z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 307 B |
4
data/styles/default/dark/symbols/entrance-barrier-s.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="6" height="9" version="1.1" viewBox="0 0 6 9" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0.5 0.5h5v8h-5z" fill="none" stroke="#777777" stroke-width=".75"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 218 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 4 6" width="4" xmlns="http://www.w3.org/2000/svg"><path d="m3.37632615.00381365c.27614238 0 .5.22385763.5.5v4.99618635c0 .27614237-.22385762.5-.5.5h-2.74734769c-.27614238 0-.5-.22385763-.5-.5v-4.99618635c0-.27614237.22385762-.5.5-.5zm-.25034769.75h-2.247v4.496h2.247z" fill="#777" transform="translate(.0041)"/></svg>
|
||||
|
Before Width: | Height: | Size: 346 B |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 11 9" width="11" xmlns="http://www.w3.org/2000/svg"><path d="m10.0493285 0c.3869702 0 .7006715.31340068.7006715.7v7.59309317c0 .38659933-.3137013.7-.7006715.7l-4.17193572-.00009317-.75042427.007-4.17629705-.00690683c-.38697016 0-.70067146-.31340067-.70067146-.7v-7.59309317c0-.38659932.3137013-.7.70067146-.7zm-4.92265514.749-4.12595394.001-.00100096 7.493 4.1269549-.001v-1.748l-.62530437.00082255-.00029515-1.00082255-1.00066408.00082255v-2l1.00066408-.00082255.00029515-.99917745.62530437-.00082255zm4.87166855.001-4.12094913-.001v1.745l.62589466.00082255-.00029515.99917745 1.00125438.00082255v2l-1.00125438-.00082255.00029515 1.00082255-.62589466-.00082255v1.748l4.12094913.001z" fill="#983E44"/></svg>
|
||||
|
Before Width: | Height: | Size: 736 B |
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="11" height="9" version="1.1" viewBox="0 0 11 9" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0.5 0.5v8h10v-8z" fill="none" stroke="#983E44" opacity=".6" stroke-width=".75"/>
|
||||
<path d="m5.5 0.5v8" fill="none" stroke="#983E44" opacity=".6" stroke-width=".75"/>
|
||||
<path d="m7.5834 5.3334h-1.25v1.25c0 0.22916-0.18749 0.41667-0.41667 0.41667h-0.83337c-0.22916 0-0.41667-0.18749-0.41667-0.41667v-1.25h-1.25c-0.22916 0-0.41667-0.18749-0.41667-0.41667v-0.83337c0-0.22917 0.18749-0.41667 0.41667-0.41667h1.25v-1.25c0-0.22916 0.18749-0.41667 0.41667-0.41667h0.83337c0.22917 0 0.41667 0.18749 0.41667 0.41667v1.25h1.25c0.22916 0 0.41667 0.1875 0.41667 0.41667v0.83337c0 0.22916-0.18749 0.41667-0.41667 0.41667z" fill="#983E44" opacity=".6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 812 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 7 6" width="7" xmlns="http://www.w3.org/2000/svg"><path d="m6.49689709-.00309317c.27614237 0 .5.22385762.5.5v4.99618634c0 .27614238-.22385763.5-.5.5l-2.62189709-.00018634-.75.00709317-2.625-.00690683c-.27614237 0-.5-.22385762-.5-.5v-4.99618634c0-.27614238.22385763-.5.5-.5zm-3.37189709.749-2.375.001v4.496h2.375v-.748l-.375.00009317-.001-.75009317-.749.00009317v-1.5l.749-.00009317.001-.74990683.375-.00009317zm3.121 0-2.371-.001v.75l.375.00009317-.001.74990683.751.00009317v1.5l-.751-.00009317.001.75009317-.375-.00009317v.748h2.371z" fill="#983E44"/></svg>
|
||||
|
Before Width: | Height: | Size: 587 B |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 12 9" width="12" xmlns="http://www.w3.org/2000/svg"><path d="m4.50016351 0c-.38659932 0-.7.31340068-.7.7l.00059659 2.55h.751l-.001-2.501 4.125.001v7.499h-4.125l.001-2.499h-.751l-.00059659 2.55c0 .38659932.31340068.7.7.7h4.22459659c.38659932 0 .7-.31340068.7-.7v-7.6c0-.38659932-.31340068-.7-.7-.7zm1.758459 2.50813059 1.99137749 1.99137749-1.99137749 1.99236133-.53033009-.53033009 1.11942967-1.11953932-5.09772209.00011809v-.75l5.03172209-.00011809-1.05342967-1.05353932z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 522 B |
@@ -1 +0,0 @@
|
||||
<svg height="7" viewBox="0 0 9 7" width="9" xmlns="http://www.w3.org/2000/svg"><path d="m3.27575522.00381365c-.27614238 0-.5.22385763-.5.5l.00034769 1.24618635h.751l-.001-.99618635h2.247v4.496h-2.247l.001-.99981365h-.751l-.00034769 1.25c0 .27614237.22385762.5.5.5h2.74734769c.27614238 0 .5-.22385763.5-.5v-4.99618635c0-.27614237-.22385762-.5-.5-.5zm.93313413 1.6162696 1.41421356 1.41421356-1.41421356 1.4151974-.53033009-.53033008.54264244-.54235048-3.1012017.00009318v-.75l3.0352017-.00009318-.47664244-.47640031z" fill="#777" transform="translate(.1946 .4987)"/></svg>
|
||||
|
Before Width: | Height: | Size: 571 B |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 12 9" width="12" xmlns="http://www.w3.org/2000/svg"><path d="m7.49983649 0c.38659932 0 .7.31340068.7.7l-.00059659 2.55h-.751l.001-2.501-4.125.001v7.499h4.125l-.001-2.499h.751l.00059659 2.55c0 .38659932-.31340068.7-.7.7h-4.22459659c-.38659932 0-.7-.31340068-.7-.7v-7.6c0-.38659932.31340068-.7.7-.7zm2.50878601 2.50813059 1.9913775 1.99137749-1.9913775 1.99236133-.53033008-.53033009 1.11942968-1.11953932-5.0977221.00011809v-.75l5.0317221-.00011809-1.05342968-1.05353932z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 520 B |
5
data/styles/default/dark/symbols/entrance-exit-s.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="9" height="9" version="1.1" viewBox="0 0 9 9" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m6.5704 0.1875v1.8427l1.0591 2.0948h-4.6294v0.75h4.6294l-1.0591 2.0948v1.8428l2.1796-4.3125z" fill="#777777"/>
|
||||
<path d="m0.5 0.5h5v8h-5z" fill="none" stroke="#777777" stroke-width=".75"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 339 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 8 6" width="8" xmlns="http://www.w3.org/2000/svg"><path d="m4.74424478.00381365c.27614238 0 .5.22385763.5.5l-.00034769 1.24618635h-.751l.001-.99618635h-2.247v4.496h2.247l-.001-.99981365h.751l.00034769 1.25c0 .27614237-.22385762.5-.5.5h-2.74734769c-.27614238 0-.5-.22385763-.5-.5v-4.99618635c0-.27614237.22385762-.5.5-.5zm1.84154166 1.6162696 1.41421356 1.41421356-1.41421356 1.4151974-.53033009-.53033008.54264244-.54235048-3.1012017.00009318v-.75l3.0352017-.00009318-.47664244-.47640031z" fill="#777" transform="translate(.0081)"/></svg>
|
||||
|
Before Width: | Height: | Size: 567 B |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 6 9" width="6" xmlns="http://www.w3.org/2000/svg"><path d="m5.05092274-.01381365c.38659932 0 .7.31340067.7.7v7.6c0 .38659932-.31340068.7-.7.7h-4.22459659c-.38659932 0-.7-.31340068-.7-.7v-7.6c0-.38659933.31340068-.7.7-.7zm-.05059659.749-4.125.001v7.499h4.125zm-2.75032615 3.01481365c.41421356 0 .75.33578644.75.75s-.33578644.75-.75.75-.75-.33578644-.75-.75.33578644-.75.75-.75z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 426 B |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 11 9" width="11" xmlns="http://www.w3.org/2000/svg"><path d="m10.0510104 0c.3865993 0 .7.31340068.7.7v7.6c0 .38659932-.3134007.7-.7.7h-9.1020208c-.38659933 0-.7-.31340068-.7-.7v-7.6c0-.38659932.31340067-.7.7-.7zm-4.9240208.75h-4.128v7.5h4.128zm4.874 0h-4.124v7.5h4.124zm-2.7509896 3c.41421356 0 .75.33578644.75.75s-.33578644.75-.75.75-.75-.33578644-.75-.75.33578644-.75.75-.75zm-3.5 0c.41421356 0 .75.33578644.75.75s-.33578644.75-.75.75-.75-.33578644-.75-.75.33578644-.75.75-.75z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 529 B |
7
data/styles/default/dark/symbols/entrance-main-s.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="11" height="9" version="1.1" viewBox="0 0 11 9" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0.5 0.5v8h10v-8z" fill="none" stroke="#777777" stroke-width=".75"/>
|
||||
<path d="m5.5 0.5v8" fill="none" stroke="#777777" stroke-width=".75"/>
|
||||
<circle cx="4" cy="4.5" r=".75" fill="#777777"/>
|
||||
<circle cx="7" cy="4.5" r=".75" fill="#777777"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 414 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 7 6" width="7" xmlns="http://www.w3.org/2000/svg"><path d="m6.5.00381365c.27614237 0 .5.22385763.5.5v4.99618635c0 .27614237-.22385763.5-.5.5h-5.99689709c-.27614237 0-.5-.22385763-.5-.5v-4.99618635c0-.27614237.22385763-.5.5-.5zm-3.37189709.749-2.375.001v4.496h2.375zm3.121 0-2.371-.001v4.498h2.371zm-1.62410291 1.77843635c.25888348 0 .46875.20986652.46875.46875s-.20986652.46875-.46875.46875-.46875-.20986652-.46875-.46875.20986652-.46875.46875-.46875zm-2.25 0c.25888348 0 .46875.20986652.46875.46875s-.20986652.46875-.46875.46875-.46875-.20986652-.46875-.46875.20986652-.46875.46875-.46875z" fill="#777" transform="translate(.0041)"/></svg>
|
||||
|
Before Width: | Height: | Size: 669 B |
5
data/styles/default/dark/symbols/entrance-s.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="6" height="9" version="1.1" viewBox="0 0 6 9" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0.5 0.5h5v8h-5z" fill="none" stroke="#777777" stroke-width=".75"/>
|
||||
<circle cx="2" cy="4.5" r=".75" fill="#777777"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 268 B |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 6 9" width="6" xmlns="http://www.w3.org/2000/svg"><path d="m5.05357504.00381365c.38659933 0 .7.31340068.7.7v7.6c0 .38659933-.31340067.7-.7.7h-4.22459658c-.38659933 0-.7-.31340067-.7-.7v-7.6c0-.38659932.31340067-.7.7-.7zm-.05059658.749-4.125.001v7.499h4.125zm-2.06170171 1.99718635c.96649831 0 1.75.78350169 1.75 1.75s-.78350169 1.75-1.75 1.75-1.75-.78350169-1.75-1.75.78350169-1.75 1.75-1.75zm1.16666667 1.3125h-2.33333334v.875h2.33333334z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 489 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 4 6" width="4" xmlns="http://www.w3.org/2000/svg"><path d="m3.37632615.00381365c.27614238 0 .5.22385763.5.5v4.99618635c0 .27614237-.22385762.5-.5.5h-2.74734769c-.27614238 0-.5-.22385763-.5-.5v-4.99618635c0-.27614237.22385762-.5.5-.5zm-.25034769.75h-2.247v4.496h2.247zm-1.1300447 1.24618635c.55228475 0 1 .44771525 1 1s-.44771525 1-1 1-1-.44771525-1-1 .44771525-1 1-1zm.75671854.75190683h-1.5v.5h1.5z" fill="#777" transform="translate(.0041)"/></svg>
|
||||
|
Before Width: | Height: | Size: 478 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 4 6" width="4" xmlns="http://www.w3.org/2000/svg"><path d="m3.37367385 0c.27614237 0 .5.22385763.5.5v4.99618635c0 .27614237-.22385763.5-.5.5h-2.7473477c-.27614237 0-.5-.22385763-.5-.5v-4.99618635c0-.27614237.22385763-.5.5-.5zm-.2503477.75h-2.247v4.496h2.247zm-1.49832615 1.78125c.25888348 0 .46875.20986652.46875.46875s-.20986652.46875-.46875.46875-.46875-.20986652-.46875-.46875.20986652-.46875.46875-.46875z" fill="#777"/></svg>
|
||||
|
Before Width: | Height: | Size: 459 B |
@@ -1 +0,0 @@
|
||||
<svg height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="none"><circle cx="9" cy="9" fill="#000" opacity=".6" r="9"/><circle cx="9" cy="9" fill="#6e4426" r="8.25"/><path d="m5.40439659 10.9208845 1.66497587 2.7936423-1.40439659.7854732-1.66497587-2.7936423zm8.48497961-1.30248563c.1648759.16547497.1067017.33549981.0697536.38988023l-.4380042.5278054-.6259719.740475-.5369481.6188133c-.326327.369091-.6071716.6702095-.72781.7580936l-.0452585.0257766-.0128471.0043095c-.1930198.0592449-.9966097.0941052-2.41076971.104581l-1.41415344.0028979-.56983671.3962245-1.22668022-2.05836 1.15247826-.8300108c.39709497-.2523366.78419173-.38244764 1.16129028-.39033316l.0364622-.00038156c.38859717 0 .73067579.13023822 1.02623587.39071472h1.72754997c.2369804.0514113.3554706.1871537.3554706.4072272 0 .2200736-.1184902.3663266-.3554706.4387589h-1.86216448c-.07860487.0051388-.11790731.0426001-.11790731.1123837 0 .1046754.05865282.1491799.11790731.1491799l.90691258-.0103822.4942633-.0160402c.2708403-.012161.5027742-.0299189.6065724-.05585.3293242-.0822724 2.110004-1.67235874 2.2125241-1.75200674s.3026137-.12817636.4764018.04624321zm-3.6909669-3.77570294c-.0953136-.29519343-.0969978-.44798224-.0969978-.69213749 0-.60830957-.49315336-1.10142003-1.10142007-1.10142003-.60830957 0-1.10142003.49311046-1.10142003 1.10142003 0 .24414668-.00168624.39692692-.09699782.69213749-.09534354.29519342-.52319594.80943657-.52319594 1.43566029 0 .95082119.77082259 1.72164378 1.72164379 1.72164378.95082119 0 1.72160097-.77077973 1.72160097-1.72164378 0-.56356277-.3465674-1.03645253-.4853801-1.34062523zm-.35982581-2.77957701c-.00037908-.02303239-.01293243-.04310709-.03149545-.05412282l-.03584588-.0089961-.07532111.00360309c-.13534339.01138062-.41475604.05828767-.60648789.24999351-.12874614.12876329-.19222565.29576342-.22343826.43281093-.02675465-.08282078-.07076517-.17207866-.14346746-.24480239-.13454896-.13456502-.32770192-.1711184-.42926654-.18098477l-.06882538-.00359276c-.03450959.00067646-.06248952.02854864-.06305951.06307666l.00159083.04631626c.00635078.09321555.03708217.30583386.18300631.45172273.13458752.1345811.3277212.17113608.42927376.18100226l.12801359.00359241c.04385109 0 .43525377-.00712751.68185185-.25361374.20610698-.20621669.24487627-.51045136.25198392-.63278334z" fill="#000" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="12" viewBox="0 0 10 12" width="10" xmlns="http://www.w3.org/2000/svg"><path d="m1.40439659 7.9208845 1.66497587 2.7936423-1.40439659.7854732-1.66497587-2.79364231zm8.4849796-1.30248563c.16487591.16547497.10670169.33549981.06975361.38988026l-.43800423.52780539-.62597187.74047497-.53694807.61881334c-.32632701.36909096-.60717167.67020945-.72780998.75809352l-.04525857.02577662-.01284708.00430951c-.19301982.05924488-.99660972.09410524-2.41076971.10458107l-1.41415344.0028978-.56983671.39622455-1.22668022-2.05836003 1.15247826-.83001081c.39709497-.25233656.78419173-.3824476 1.16129028-.39033312l.0364622-.00038156c.38859717 0 .73067579.13023823 1.02623587.39071468h1.72754994c.23698041.05141129.35547062.18715372.35547062.40722729 0 .22007356-.11849021.3663265-.35547062.43875883h-1.86216445c-.07860487.00513887-.11790731.04260011-.11790731.11238372 0 .10467541.05865282.14917992.11790731.14917992l.90691261-.01038221.49426323-.01604024c.27084037-.01216092.50277426-.0299189.60657246-.05584997.32932419-.08227242 2.11000399-1.67235874 2.21252409-1.75200674.10252009-.079648.3026137-.12817636.47640178.04624321zm-3.69096692-3.77570294c-.09531354-.29519343-.09699782-.44798224-.09699782-.69213749 0-.60830957-.49315331-1.10142003-1.10142002-1.10142003-.60830957 0-1.10142003.49311046-1.10142003 1.10142003 0 .24414668-.00168624.39692692-.09699782.69213749-.09534354.29519342-.52319594.80943657-.52319594 1.43566029 0 .95082119.77082259 1.72164378 1.72164379 1.72164378.95082119 0 1.72160093-.77077973 1.72160093-1.72164378 0-.56356277-.34656739-1.03645253-.48538006-1.34062523zm-.35982578-2.77957701c-.00037908-.02303239-.01293243-.04310709-.03149545-.05412282l-.03584588-.0089961-.07532111.00360309c-.13534339.01138062-.41475604.05828767-.60648789.24999351-.12874614.12876329-.19222565.29576342-.22343826.43281093-.02675465-.08282078-.07076517-.17207866-.14346746-.24480238-.13454896-.13456503-.32770192-.17111841-.42926654-.18098478l-.06882538-.00359276c-.03450959.00067646-.06248952.02854864-.06305951.06307666l.00159083.04631626c.00635078.09321555.03708217.30583386.18300631.45172273.13458752.1345811.3277212.17113608.42927376.18100226l.12801359.00359241c.04385109 0 .43525377-.00712751.68185185-.25361374.20610698-.20621669.24487627-.51045135.25198392-.63278334z" fill="#777" fill-rule="evenodd"/></svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="11" viewBox="0 0 10 11" width="10" xmlns="http://www.w3.org/2000/svg"><path d="m1.40439659 6.9208845 1.66497587 2.79364231-1.40439659.78547319-1.66497587-2.79364231zm8.4849796-1.30248563c.16487591.16547497.10670169.33549981.06975361.38988026l-.43800423.52780539-.62597187.74047497-.53694807.61881334-.30691719.3410534-.1751764.18625299c-.10683664.11054758-.19209936.19172754-.24571639.23078713l-.04525857.02577662-.01284708.00430951c-.19301982.05924488-.99660972.09410524-2.41076971.10458107l-1.41415344.0028978-.56983671.3962246-1.22668022-2.05836008 1.15247826-.83001081c.39709497-.25233656.78419173-.3824476 1.16129028-.39033312l.0364622-.00038156c.38859717 0 .73067579.13023823 1.02623587.39071468h1.72754994c.23698041.05141129.35547062.18715372.35547062.40722729 0 .22007356-.11849021.3663265-.35547062.43875883h-1.86216445c-.07860487.00513887-.11790731.04260011-.11790731.11238372 0 .10467541.05865282.14917992.11790731.14917992l.90691261-.01038221.49426323-.01604024.36592704-.02276118c.1048133-.00920099.18874632-.02012325.24064542-.03308879.32932419-.08227242 2.11000399-1.67235874 2.21252409-1.75200674.10252009-.079648.3026137-.12817636.47640178.04624321zm-2.38737619-4.86878187-.00166678 4.000383h-5.00033322l-.001-3.997383zm-5.49948258 0-.00045062 1.65580113-.42167958.90580112-.63441545-.29583278zm5.99572437 0 1.05654565 2.26576947-.63441545.29583278-.42167957-.90580112z" fill="#777" fill-rule="evenodd"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="none"><circle cx="9" cy="9" fill="#000" opacity=".6" r="9"/><circle cx="9" cy="9" fill="#51585E" r="8.25"/><path d="m11.9788057 9.45701798v4.46417412h-2.48216516v-1.9344754c0-.5341906-.43304708-.9672377-.96723771-.9672377-.51282301 0-.93243211.3990962-.96518032.9036416l-.00205739.0635961v1.9344754h-2.48216512v-4.46417412zm-3.44940287-4.1392834c1.90503617 0 3.44940287 1.54436664 3.44940287 3.44940283h-6.8988057c0-1.90503619 1.54436664-3.44940283 3.44940283-3.44940283zm4.47021307-1.83773458.6985699.69856997-1.0498311 1.04983111c.2863445.33051154.5419599.68947967.7623009 1.07107475l-.8568598.49403817c-.520321-.90122443-1.2678995-1.64880299-2.169124-2.16912399l.4940382-.8568598c.3815951.22034103.7405632.47595638 1.0710748.7623009z" fill="#000"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 853 B |
@@ -1 +0,0 @@
|
||||
<svg height="19" viewBox="0 0 29 19" width="29" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m6.185075.4995c1.777125 0 3.382725.375525 4.56885 1.3638 1.2542475 1.043175 1.74465 2.530875 1.74465 4.202625 0 .70428972-.0885354 1.37740429-.2813988 2.0016737.1097684-.01288087.2224325-.01884789.3364903-.01884789 1.0018875 0 1.8962402.46041088 2.4830213 1.18119574.5702976-1.00377388 1.6501558-1.68022155 2.8880068-1.68022155 1.2250215 0 2.2953081.66249835 2.872122 1.64875713.5861846-.70238108 1.4692751-1.14973132 2.4568499-1.14973132 1.7673849 0 3.2001334 1.43274852 3.2001334 3.20013339 0 .7313317-.245322 1.4053653-.6581629 1.944298l-.074637.0915686.1409174.0845388c1.2235368.7673092 2.0881394 2.0596347 2.2705608 3.570914l.0213847.2173535.0984085 1.2911937h-20.69720984l.09840858-1.2911937c.12227689-1.6043637 1.01014496-2.9844197 2.29194549-3.7882675l.13958437-.0845388-.073304-.0915686c-.37843751-.4940216-.61611258-1.1015656-.65309705-1.7627038l-.00506585-.1815942c-.84977747.3668477-1.81813376.5570547-2.8535331.6031408v3.147975c0 .8284275-.67155 1.5-1.5 1.5h-3.0015c-.8284275 0-1.5-.67155-1.5-1.5v-13.0005c0-.8284275.67155-1.5 1.5-1.5z" fill="#111" opacity=".6"/><path d="m12.5536665 13.8204843c.5404977 0 1.0540327.1154407 1.517294.3230112-.6662367.7508614-1.1159451 1.6987981-1.2504799 2.7493425l-.0344806.3559128h-3.936c.14615915-1.9177167 1.7485089-3.4282665 3.7036665-3.4282665zm10.7 0c1.9551576 0 3.5575073 1.5105498 3.7036665 3.4282665h-3.895333l-.0060809-.0911937-.0216381-.2213141c-.1283466-1.0743203-.5858754-2.0432621-1.2667992-2.806658.4550736-.1987522.9577425-.3091007 1.4861847-.3091007zm-5.3289719-.2138492c2.0771169 0 3.7794184 1.6047752 3.9346947 3.6421157h-7.8693893c.1552763-2.0373405 1.8575778-3.6421157 3.9346946-3.6421157zm-11.7390946-11.6068351c1.57395 0 2.786025.3293925 3.61005 1.01595.81477.677625 1.20435 1.70415 1.20435 3.05055 0 1.391025-.416475 2.4687-1.296075 3.208725-.861075.7311-2.111925 1.08855-3.713625 1.08855h-.989775v4.636425h-3.000525l.000225-12.999975zm6.3680665 7.24895081c1.1046432 0 2.0001334.89549019 2.0001334 2.00013339s-.8954902 2.0001334-2.0001334 2.0001334-2.0001334-.8954902-2.0001334-2.0001334.8954902-2.00013339 2.0001334-2.00013339zm10.7 0c1.1046432 0 2.0001334.89549019 2.0001334 2.00013339s-.8954902 2.0001334-2.0001334 2.0001334-2.0001334-.8954902-2.0001334-2.0001334.8954902-2.00013339 2.0001334-2.00013339zm-5.3289719-.49902581c1.1735489 0 2.1248982.95134932 2.1248982 2.1248982 0 1.1735488-.9513493 2.1248982-2.1248982 2.1248982-1.1735488 0-2.1248981-.9513494-2.1248981-2.1248982 0-1.17354888.9513493-2.1248982 2.1248981-2.1248982zm-11.8500196-4.475475h-1.07415v3.8599125h.7027875c.842625 0 1.481685-.1958625 1.898325-.525765.42591-.338775.611055-.82884.611055-1.4619 0-.650925-.1748925-1.1142-.5267175-1.426275-.342675-.30315-.8706-.4459725-1.6113-.4459725z" fill="#20607c"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="12" viewBox="0 0 18 12" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m3.90636316.31547368c1.12239473 0 2.13645789.23717369 2.88558947.86134737.79215632.65884737 1.10188421 1.59844737 1.10188421 2.65428948 0 .44481455-.05591709.86993955-.17772557 1.26421496.06932743-.00813528.14048371-.01190393.2125202-.01190393.63277103 0 1.19762539.29078582 1.56822398.74601837.36018795-.63396245 1.04220365-1.06119256 1.82400435-1.06119256.7736977 0 1.4496682.41842001 1.8139718 1.04132029.3702218-.4436091.9279632-.7261461 1.5516946-.7261461 1.1162431 0 2.0211369.90489381 2.0211369 2.02113689 0 .46189369-.1549402.88759915-.4156819 1.22797764l-.0471391.05783284.0890005.05339291c.7727601.48461638 1.3188248 1.30082194 1.4340384 2.25531406l.0135061.1372759.0621528.8154908h-13.07192207l.06215279-.8154908c.0772275-1.01328225.63798628-1.88489661 1.44754451-2.39258996l.08815855-.05339291-.04629724-.05783284c-.23901318-.31201361-.38912375-.69572559-.41248237-1.11328658l-.00319948-.11469106c-.53670156.23169325-1.14829501.35182404-1.80223143.38093102v1.98819474c0 .52321737-.42413684.94736839-.94736842.94736839h-1.89568421c-.52321737 0-.94736842-.42413681-.94736842-.94736839v-8.2108421c0-.52321737.42413684-.94736843.94736842-.94736843z" fill="#111" opacity=".6"/><path d="m7.92863147 8.72872693c.34136694 0 .66570485.07290994.95829094.20400705-.42078106.47422827-.70480741 1.07292512-.78977674 1.73642682l-.02177725.2247871h-2.48589474c.09231105-1.21118954 1.10432143-2.16522097 2.33915779-2.16522097zm6.75789473 0c1.2348364 0 2.2468468.95403143 2.3391578 2.16522097h-2.4602103l-.0038406-.0575961-.0136661-.1397773c-.0810611-.6785181-.3700266-1.29048128-.8000838-1.77262609.2874149-.12552769.60489-.19522148.938643-.19522148zm-3.3656664-.13506265c1.3118632 0 2.387001 1.01354223 2.4850703 2.30028362h-4.97014063c.09806925-1.28674139 1.17320703-2.30028362 2.48507033-2.30028362zm-7.41416506-7.3306327c.99407368 0 1.75959473.20803737 2.28003158.64165263.51459157.42797368.7606421 1.07630526.7606421 1.92666316 0 .8785421-.26303684 1.55917895-.81857368 2.02656316-.54383685.46174736-1.33384737.68750526-2.34544737.68750526h-.62512105v2.92826842h-1.89506843l.00014211-8.21051053zm4.02193673 4.57828472c.69766938 0 1.26324215.56557277 1.26324215 1.26324215 0 .69766937-.56557277 1.26324215-1.26324215 1.26324215-.69766937 0-1.26324215-.56557278-1.26324215-1.26324215 0-.69766938.56557278-1.26324215 1.26324215-1.26324215zm6.75789473 0c.6976694 0 1.2632422.56557277 1.2632422 1.26324215 0 .69766937-.5655728 1.26324215-1.2632422 1.26324215s-1.2632421-.56557278-1.2632421-1.26324215c0-.69766938.5655727-1.26324215 1.2632421-1.26324215zm-3.3656664-.31517419c.7411887 0 1.3420409.6008522 1.3420409 1.34204095s-.6008522 1.34204095-1.3420409 1.34204095c-.7411888 0-1.34204098-.6008522-1.34204098-1.34204095s.60085218-1.34204095 1.34204098-1.34204095zm-7.48422296-2.82661579h-.67841052v2.43783947h.44386579c.53218421 0 .93580105-.12370263 1.1989421-.33206211.26899579-.21396315.38592947-.52347789.38592947-.92330526 0-.41111053-.11045842-.70370526-.33266368-.90080526-.21642632-.19146316-.54985263-.28166684-1.01766316-.28166684z" fill="#20607c"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><g fill="none"><circle cx="9" cy="9" fill="#000" opacity=".6" r="9"/><circle cx="9" cy="9" fill="#6e4426" r="8.25"/><path d="m5.40439659 10.9208845 1.66497587 2.7936423-1.40439659.7854732-1.66497587-2.7936423zm8.48497961-1.30248563c.1648759.16547497.1067017.33549981.0697536.38988023l-.4380042.5278054-.6259719.740475-.5369481.6188133c-.326327.369091-.6071716.6702095-.72781.7580936l-.0452585.0257766-.0128471.0043095c-.1930198.0592449-.9966097.0941052-2.41076971.104581l-1.41415344.0028979-.56983671.3962245-1.22668022-2.05836 1.15247826-.8300108c.39709497-.2523366.78419173-.38244764 1.16129028-.39033316l.0364622-.00038156c.38859717 0 .73067579.13023822 1.02623587.39071472h1.72754997c.2369804.0514113.3554706.1871537.3554706.4072272 0 .2200736-.1184902.3663266-.3554706.4387589h-1.86216448c-.07860487.0051388-.11790731.0426001-.11790731.1123837 0 .1046754.05865282.1491799.11790731.1491799l.90691258-.0103822.4942633-.0160402c.2708403-.012161.5027742-.0299189.6065724-.05585.3293242-.0822724 2.110004-1.67235874 2.2125241-1.75200674s.3026137-.12817636.4764018.04624321zm-7.07695726-.61839887-.00064003-.76822841c-.79974138-.64144198-1.31177891-1.6268104-1.31177891-2.73177159h7c0 1.10496119-.5120375 2.09032961-1.3117789 2.73177159l-.00064.76822841z" fill="#000" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
1
data/styles/default/dark/symbols/square-m.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="4" viewBox="0 0 4 4" width="4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="m0 0h4v4h-4z"/></defs><g fill="none" fill-rule="evenodd" xlink:href="#a"><path d="m0 0h4v4h-4z" fill="#000"/><path d="m.67.67h2.67v2.67h-2.67z" fill="#747474"/></g></svg>
|
||||
|
After Width: | Height: | Size: 314 B |
@@ -1 +0,0 @@
|
||||
<svg height="19" viewBox="0 0 14 19" width="14" xmlns="http://www.w3.org/2000/svg"><path d="m13.1340274.00741332-8.49199134 1.21422959 1.21962985 1.21976833 6.55564899-.9357696-.9357696 6.55564895 1.2197683 1.21976832 1.2142296-8.49212981c.0725574-.50887145-.3895117-.8436881-.7815158-.78151578m-10.82601505.83814936c-2.97333242 2.97402475-2.97333242 7.79521825 0 10.76924302 2.97402475 2.9733324 7.79521825 2.9733324 10.76924305 0zm-.84645746 11.86715912v3.902594h-.69234211c-.38355753 0-.69234211.2895375-.69234211.6491399v.0864043c0 .3596025.30878458.64914.69234211.64914h8.30810528c.38355753 0 .69234211-.2895375.69234211-.64914v-.0864043c0-.3596024-.30878458-.6491399-.69234211-.6491399h-.6923421v-1.4278864c-2.47539997.1890094-5.00992596-.6352931-6.92342107-2.4747076" fill="#777" transform="translate(0 .5)"/></svg>
|
||||
|
Before Width: | Height: | Size: 822 B |
@@ -1 +0,0 @@
|
||||
<svg height="15" viewBox="0 0 14 15" width="14" xmlns="http://www.w3.org/2000/svg"><path d="m7.82311911 5.67246657 3.40536139 7.66676663c.1034778.2351768 0 .507982-.244584.6208669-.2351769.1034779-.5079821 0-.620867-.2445839l-1.12884905-2.5399104h-4.40251137l-1.12884907 2.5399104c-.1128849.2445839-.38569009.3480618-.62086698.2445839-.24458397-.1128849-.3480618-.3856901-.24458397-.6208669l3.00085711-6.74487323-1.63683115.76197312-1.1946986-2.54931747 6.38740431-2.98204296 1.19469857 2.54931748zm-.79019435.54561038-1.78734435 4.01682125h3.57468871zm2.59635286-5.02337835 2.55872458-1.1946986 1.5897957 3.41476843-2.5587245 1.1946986zm-9.40707557 5.4278826 2.55872456-1.1946986.79019435 1.70268068-2.55872456 1.1946986z" fill="#777" transform="translate(0 .5)"/></svg>
|
||||
|
Before Width: | Height: | Size: 771 B |
@@ -1 +0,0 @@
|
||||
<svg height="17" viewBox="0 0 18 17" width="18" xmlns="http://www.w3.org/2000/svg"><path d="m16.6801082.00001-1.6419569 1.64195683c-.5169266-.44784856-1.0783599-.84763607-1.6751823-1.19225383l-.7726855 1.34014584c1.409533.81379244 2.5787608 1.98302024 3.3925532 3.39255325l1.3401459-.77268557c-.3446178-.59682233-.7444053-1.15825566-1.1922539-1.6751823l1.6419569-1.64195683zm-8.72593811 2.09165983c-4.26738784 0-7.72685565 3.45946781-7.72685565 7.72685565h15.45371126c0-4.26738784-3.4594678-7.72685565-7.72685561-7.72685565m-7.72685565 9.27222677v4.6361134h15.45371126v-4.6361134z" fill="#777" transform="translate(0 .5)"/></svg>
|
||||
|
Before Width: | Height: | Size: 629 B |
@@ -1 +0,0 @@
|
||||
<svg height="19" viewBox="0 0 14 19" width="14" xmlns="http://www.w3.org/2000/svg"><path d="m7.69225716.00010119c-.93627166-.01384608-.93627166 1.39789983 0 1.3846076 2.68461564 0 4.84612664 2.16151093 4.84612664 4.8461266-.0138461.93627166 1.3978998.93627166 1.3846076 0 0-3.43299608-2.7977382-6.2307342-6.23073424-6.2307342m-5.38432358.84641063c-2.9731679 2.9738602-2.9731679 7.79478695 0 10.76864718 2.97386021 2.9731679 7.79478692 2.9731679 10.76864712 0zm5.38432358 1.92280457c-.93627166-.01384608-.93627166 1.39789983 0 1.3846076 1.15517812 0 2.0769114.92159482 2.0769114 2.0769114-.01384607.93627166 1.39789984.93627166 1.38460764 0 0-1.90355853-1.55796051-3.461519-3.46151904-3.461519m-6.2307342 9.94369791v3.9023781h-.6923038c-.38353631 0-.6923038.2895214-.6923038.649104v.0863996c0 .3595826.30876749.649104.6923038.649104h8.3076456c.38353631 0 .6923038-.2895214.6923038-.649104v-.0863996c0-.3595826-.30876749-.649104-.6923038-.649104h-.6923038v-1.4278074c-2.47526301.188999-5.00964876-.6352579-6.923038-2.4745707" fill="#777" transform="translate(0 .5)"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="18" viewBox="0 0 18 18" width="18" xmlns="http://www.w3.org/2000/svg"><path d="m9.76536686 3.31703659 2.71190694 1.12330864c.4900562.20298791.8794043.59233602 1.0823922 1.0823922l1.1233087 2.71190696c.2029879.49005617.2029879 1.04067755 0 1.53073372l-1.1233087 2.71190699c-.2029879.4900561-.592336.8794043-1.0823922 1.0823922l-2.71190694 1.1233086c-.49005617.2029879-1.04067755.2029879-1.53073372 0l-2.71190696-1.1233086c-.49005618-.2029879-.87940429-.5923361-1.0823922-1.0823922l-1.12330864-2.71190699c-.20298792-.49005617-.20298792-1.04067755 0-1.53073372l1.12330864-2.71190696c.20298791-.49005618.59233602-.87940429 1.0823922-1.0823922l2.71190696-1.12330864c.43560548-.18043371.91906496-.20048189 1.36530467-.06014457z" fill="#202510" fill-rule="evenodd"/></svg>
|
||||
|
Before Width: | Height: | Size: 778 B |
@@ -254,7 +254,6 @@ area|z11-[natural=bare_rock],
|
||||
/* 5.BEACH, GLACIER, DESERT, etc. */
|
||||
|
||||
area|z0-[natural=glacier],
|
||||
area|z0-[natural=sand],
|
||||
area|z10-[natural=beach],
|
||||
area|z0-[natural=desert],
|
||||
area|z10-[leisure=beach_resort],
|
||||
@@ -263,7 +262,6 @@ area|z10-[leisure=beach_resort],
|
||||
area|z0-[natural=glacier]
|
||||
{fill-color: @glacier;}
|
||||
|
||||
area|z0-[natural=sand],
|
||||
area|z10-[natural=beach],
|
||||
area|z10-[leisure=beach_resort],
|
||||
{fill-color: @beach;}
|
||||
@@ -430,7 +428,6 @@ area|z14-[area:highway=living_street],
|
||||
area|z14-[amenity=grave_yard],
|
||||
area|z14-[landuse=cemetery],
|
||||
area|z15-[amenity=parking],
|
||||
area|z15-[amenity=car_pooling],
|
||||
area|z16-[public_transport=platform],
|
||||
area|z16-[railway=platform],
|
||||
{fill-opacity: 1;}
|
||||
@@ -593,7 +590,6 @@ area|z10-[landuse=farmyard],
|
||||
/* Parking */
|
||||
|
||||
area|z15-[amenity=parking],
|
||||
area|z15-[amenity=car_pooling],
|
||||
{fill-color: @parking;}
|
||||
|
||||
area|z15-[amenity=parking][location=underground],
|
||||
|
||||
@@ -468,7 +468,6 @@ area|z17-[landuse=plant_nursery],
|
||||
/* 5.2 Beach, Glacier, Desert, etc. */
|
||||
|
||||
area|z14-[natural=desert],
|
||||
area|z15-[natural=sand],
|
||||
node|z15-[natural=beach],
|
||||
{text: name;font-size: 10;text-color: @poi_label;}
|
||||
|
||||
@@ -666,17 +665,12 @@ node|z16-[addr:housenumber][addr:street]::int_name,
|
||||
|
||||
node|z18-[entrance=main],
|
||||
node|z18-[emergency=emergency_ward_entrance],
|
||||
node|z19-[entrance!=emergency],
|
||||
node|z19-[entrance=entry],
|
||||
node|z19-[entrance],
|
||||
node|z19-[entrance=exit],
|
||||
node|z19-[entrance=house],
|
||||
node|z19-[entrance=service],
|
||||
node|z19-[amenity=loading_dock],
|
||||
node|z20-[entrance=emergency],
|
||||
{text: name; text-color: @building_label;}
|
||||
node|z18-[entrance=main]::flats,
|
||||
node|z19-[entrance!=emergency]::flats,
|
||||
node|z19-[entrance=entry]::flats,
|
||||
node|z19-[entrance]::flats,
|
||||
node|z19-[entrance=exit]::flats,
|
||||
{text: int_name; text-color: @building_label; font-size: 8; text-offset: 1;}
|
||||
|
||||
@@ -711,39 +705,21 @@ node|z18-[addr:housenumber][addr:street],
|
||||
node|z16-[addr:housenumber][addr:street]::int_name,
|
||||
{font-size: 8;}
|
||||
|
||||
node|z17-[entrance],
|
||||
{icon-image: entrance-xs.svg;}
|
||||
node|z17[entrance=entrance],
|
||||
{icon-image: entrance-entry-xs.svg;}
|
||||
node|z17[entrance=exit],
|
||||
{icon-image: entrance-exit-xs.svg;}
|
||||
node|z17-[entrance=main],
|
||||
{icon-image: entrance-main-xs.svg;}
|
||||
node|z16-[emergency=emergency_ward_entrance],
|
||||
{icon-image: entrance-emergency-xs.svg;}
|
||||
node|z17[entrance],
|
||||
node|z18[amenity=loading_dock],
|
||||
node|z16[entrance=main],
|
||||
node|z16[emergency=emergency_ward_entrance],
|
||||
{icon-image: square-m.svg;}
|
||||
|
||||
node|z18-[entrance],
|
||||
{icon-image: entrance-m.svg; font-size: 10; text-offset: 1;}
|
||||
node|z18-[entrance=entrance],
|
||||
{icon-image: entrance-entry-m.svg; font-size: 10; text-offset: 1;}
|
||||
node|z18-[entrance=exit],
|
||||
{icon-image: entrance-exit-m.svg; font-size: 10; text-offset: 1;}
|
||||
node|z18-[entrance=main],
|
||||
{icon-image: entrance-main-m.svg; font-size: 10; text-offset: 1;}
|
||||
node|z18-[emergency=emergency_ward_entrance],
|
||||
{icon-image: entrance-emergency-m.svg; font-size: 10; text-offset: 1;}
|
||||
node|z19-[entrance=service],
|
||||
node|z19-[amenity=loading_dock],
|
||||
{icon-image: entrance-service-m.svg; font-size: 10; text-offset: 1;}
|
||||
node|z20-[entrance=emergency],
|
||||
{icon-image: emergency-exit-m.svg; font-size: 10; text-offset: 1;}
|
||||
|
||||
node|z17[entrance=home],
|
||||
node|z17[entrance=staircase],
|
||||
node|z17-18[entrance=garage],
|
||||
node|z17-18[entrance=service],
|
||||
node|z17-19[entrance=emergency],
|
||||
{icon-image: none;}
|
||||
{icon-image: entrance-s.svg; font-size: 10; text-offset: 1;}
|
||||
node|z18-[entrance=exit],
|
||||
{icon-image: entrance-exit-s.svg; font-size: 10; text-offset: 1;}
|
||||
node|z17-[entrance=main],
|
||||
{icon-image: entrance-main-s.svg; font-size: 10; text-offset: 1;}
|
||||
node|z17-[emergency=emergency_ward_entrance],
|
||||
{icon-image: entrance-emergency-s.svg; font-size: 10; text-offset: 1;}
|
||||
|
||||
/* 8.3 Airports */
|
||||
area|z14-[aeroway=terminal]
|
||||
|
||||
@@ -206,9 +206,6 @@ node|z19-[man_made=water_well][drinking_water=not],
|
||||
node|z19-[amenity=water_point][drinking_water=not],
|
||||
{icon-image: drinking-water-no-m.svg;}
|
||||
|
||||
node|z18-[natural=tree],
|
||||
{icon-image: tree-m.svg;}
|
||||
|
||||
/* 3. TRANSPORT */
|
||||
|
||||
node|z12-[railway=station],
|
||||
@@ -326,14 +323,12 @@ node|z19-[amenity=bus_station],
|
||||
node|z19-[amenity=bus_station]::int_name,
|
||||
{text-offset: 1;font-size: 10;}
|
||||
|
||||
node|z15[highway=bus_stop],
|
||||
{icon-image: bus-xxs.svg;icon-min-distance: 1;}
|
||||
node|z16[highway=bus_stop],
|
||||
{icon-image: bus-xs.svg;icon-min-distance: 1;}
|
||||
{icon-image: bus-m.svg;}
|
||||
node|z17-[highway=bus_stop],
|
||||
{icon-image: bus-sm.svg;text-offset: 1;font-size: 11;}
|
||||
{icon-image: bus-m.svg;text-offset: 1;font-size: 11;}
|
||||
node|z18-19[highway=bus_stop]::int_name,
|
||||
{icon-image: bus-sm.svg;text-offset: 1;font-size: 9;}
|
||||
{icon-image: bus-m.svg;text-offset: 1;font-size: 9;}
|
||||
|
||||
/* 3.5 Ferry terminal */
|
||||
|
||||
@@ -853,8 +848,6 @@ node|z17-[leisure=indoor_play],
|
||||
node|z17-[amenity=courthouse],
|
||||
node|z17-[amenity=nursing_home],
|
||||
node|z17-[amenity=social_facility],
|
||||
node|z17-[social_facility=food_bank],
|
||||
node|z17-[social_facility=soup_kitchen],
|
||||
node|z17-[amenity=animal_shelter],
|
||||
node|z17-[amenity=kindergarten],
|
||||
node|z17-[amenity=childcare],
|
||||
@@ -922,13 +915,6 @@ node|z15-[leisure=sports_centre][sport=swimming],
|
||||
node|z17-[highway=ladder],
|
||||
node|z18-[amenity=dojo],
|
||||
node|z18-[amenity=vending_machine],
|
||||
node|z18-[amenity=food_sharing],
|
||||
node|z18-[amenity=give_box],
|
||||
node|z18-[man_made=telescope],
|
||||
node|z17-[man_made=telescope][telescope:type=optical],
|
||||
node|z17-[man_made=telescope][telescope:type=radio],
|
||||
node|z17-[man_made=telescope][telescope:type=gamma],
|
||||
node|z16-[man_made=observatory],
|
||||
node|z17-[amenity=fire_station],
|
||||
node|z18-[amenity=internet_cafe],
|
||||
node|z18-[emergency=defibrillator],
|
||||
@@ -1366,7 +1352,7 @@ node|z17-[barrier=wicket_gate],
|
||||
{icon-image: dot-m.svg;font-size: 11;}
|
||||
|
||||
node|z16-[barrier=entrance],
|
||||
{icon-image: entrance-barrier-xs.svg; font-size: 11;}
|
||||
{icon-image: entrance-barrier-s.svg; font-size: 11;}
|
||||
|
||||
node|z17-[highway=ladder],
|
||||
{icon-image: ladder-m.svg;font-size: 11;}
|
||||
@@ -1450,12 +1436,6 @@ node|z17-[amenity=nursing_home],
|
||||
node|z17-[amenity=social_facility],
|
||||
{icon-image: social_facility-m.svg;}
|
||||
|
||||
node|z17-[social_facility=soup_kitchen],
|
||||
{icon-image: soup_kitchen-m.svg;}
|
||||
|
||||
node|z17-[social_facility=food_bank],
|
||||
{icon-image: food_bank-m.svg;}
|
||||
|
||||
node|z17-[amenity=cinema],
|
||||
{icon-image: cinema-m.svg;}
|
||||
node|z18-[amenity=cinema],
|
||||
@@ -1547,7 +1527,7 @@ node|z17-[amenity=telephone]
|
||||
{icon-image: phone-m.svg;}
|
||||
|
||||
node|z17-[emergency=phone]
|
||||
{icon-image: emergency-phone-m.svg; text-offset: 1;}
|
||||
{icon-image: emergency-phone-m.svg;}
|
||||
|
||||
|
||||
node|z16-[amenity=recycling][recycling_type=centre],
|
||||
@@ -1596,23 +1576,6 @@ node|z17-[amenity=parcel_locker],
|
||||
node|z18-[amenity=vending_machine][vending=fuel],
|
||||
{icon-image: fuel-dispenser-m.svg;}
|
||||
|
||||
node|z18-[amenity=food_sharing],
|
||||
{icon-image: food_sharing-m.svg;}
|
||||
node|z18-[amenity=give_box],
|
||||
{icon-image: give_box-m.svg;}
|
||||
|
||||
node|z18-[man_made=telescope],
|
||||
{icon-image: telescope-m.svg;}
|
||||
node|z17-[man_made=telescope][telescope:type=optical],
|
||||
{icon-image: telescope-optical-m.svg;}
|
||||
node|z17-[man_made=telescope][telescope:type=radio],
|
||||
{icon-image: telescope-radio-m.svg;}
|
||||
node|z17-[man_made=telescope][telescope:type=gamma],
|
||||
{icon-image: telescope-gamma-m.svg;}
|
||||
|
||||
node|z16-[man_made=observatory],
|
||||
{icon-image: observatory-m.svg;}
|
||||
|
||||
node|z17-[aeroway=gate],
|
||||
{icon-image: airport_gate-m.svg;font-size: 11;}
|
||||
|
||||
@@ -2194,7 +2157,6 @@ node|z17-[amenity=bicycle_parking],
|
||||
node|z17-[amenity=motorcycle_parking],
|
||||
node|z17-[amenity=car_wash],
|
||||
node|z18-[amenity=parking],
|
||||
node|z18-[amenity=car_pooling],
|
||||
node|z18-[amenity=car_rental],
|
||||
node|z18-[amenity=car_sharing],
|
||||
{text: name;text-color: @poi_label;text-offset: 1;font-size: 10;}
|
||||
@@ -2269,11 +2231,6 @@ node|z16-[amenity=parking],
|
||||
node|z17-[amenity=parking],
|
||||
{icon-image: parking-m.svg;font-size: 11;icon-min-distance: 10}
|
||||
|
||||
node|z16-[amenity=car_pooling],
|
||||
{icon-image: parking-pooling-s.svg;icon-min-distance: 5;}
|
||||
node|z17-[amenity=car_pooling],
|
||||
{icon-image: parking-pooling-m.svg;font-size: 11;icon-min-distance: 10}
|
||||
|
||||
node|z16-[amenity=parking][location=underground],
|
||||
{icon-image:parking_underground-m.svg;}
|
||||
|
||||
|
||||
@@ -73,7 +73,6 @@ node[amenity=place_of_worship]
|
||||
node[amenity=social_facility],
|
||||
node[historic=ship],
|
||||
node[leisure=hackerspace],
|
||||
node[social_facility],
|
||||
node[tourism=attraction],
|
||||
node[tourism=gallery],
|
||||
node[tourism=museum],
|
||||
@@ -135,9 +134,6 @@ node[amenity=townhall],
|
||||
node[amenity=university][name],
|
||||
node[barrier=border_control],
|
||||
node[building=guardhouse],
|
||||
node[man_made=communications_tower],
|
||||
node[man_made=lighthouse],
|
||||
node[man_made=observatory],
|
||||
node[office=diplomatic],
|
||||
node[office=security],
|
||||
node[shop=money_lender],
|
||||
|
||||
@@ -140,7 +140,6 @@ railway-platform # area z16- (also has captio
|
||||
|
||||
amenity-bicycle_parking # area z15- (also has icon z17-, caption(optional) z17-)
|
||||
amenity-bicycle_parking-covered # area z15- (also has icon z17-, caption(optional) z17-)
|
||||
amenity-car_pooling # area z15- (also has icon z16-, caption(optional) z18-)
|
||||
amenity-motorcycle_parking # area z15- (also has icon z17-, caption(optional) z17-)
|
||||
amenity-parking # area z15- (also has icon z16-, caption(optional) z18-)
|
||||
amenity-parking-fee # area z15- (also has icon z16-, caption(optional) z18-)
|
||||
@@ -242,7 +241,6 @@ natural-beach-gravel # area z10- (also has captio
|
||||
natural-beach-sand # area z10- (also has caption z15-)
|
||||
natural-desert # area z1- (also has caption z14-)
|
||||
natural-glacier # area z1-
|
||||
natural-sand # area z1- (also has caption z15-)
|
||||
=== 30
|
||||
|
||||
natural-land # area z1-
|
||||
|
||||
@@ -550,7 +550,7 @@ railway-subway_entrance-yokohama # icon z16- (also has captio
|
||||
railway-tram_stop # icon z14- (also has caption(optional) z17-)
|
||||
=== 3650
|
||||
|
||||
highway-bus_stop # icon z14- (also has caption(optional) z17-)
|
||||
highway-bus_stop # icon z16- (also has caption(optional) z17-)
|
||||
=== 3600
|
||||
|
||||
amenity-drinking_water # icon z17- (also has caption(optional) z18-)
|
||||
@@ -574,7 +574,6 @@ natural-beach-gravel # caption z15- (also has are
|
||||
natural-beach-sand # caption z15- (also has area z10-)
|
||||
natural-cape # caption z14-
|
||||
natural-desert # caption z14- (also has area z1-)
|
||||
natural-sand # caption z15- (also has area z1-)
|
||||
=== 3250
|
||||
|
||||
shop-supermarket # icon z16- (also has caption(optional) z16-)
|
||||
@@ -990,7 +989,6 @@ leisure-escape_game # icon z17- (also has captio
|
||||
leisure-fitness_centre # icon z16- (also has caption(optional) z17-)
|
||||
leisure-hackerspace # icon z17- (also has caption(optional) z17-)
|
||||
leisure-sauna # icon z17- (also has caption(optional) z17-)
|
||||
man_made-observatory # icon z16- (also has caption(optional) z16-)
|
||||
office-estate_agent # icon z18- (also has caption(optional) z18-)
|
||||
office-government # icon z18- (also has caption(optional) z18-)
|
||||
office-insurance # icon z18- (also has caption(optional) z18-)
|
||||
@@ -1136,8 +1134,6 @@ amenity-vending_machine-public_transport_tickets # icon z17- (also has captio
|
||||
amenity-water_point-drinking_water_no # icon z18- (also has caption(optional) z18-)
|
||||
highway-elevator # icon z17-
|
||||
leisure-picnic_table # icon z17- (also has caption(optional) z17-)
|
||||
man_made-telescope-gamma # icon z17- (also has caption(optional) z17-)
|
||||
man_made-telescope-radio # icon z17- (also has caption(optional) z17-)
|
||||
man_made-water_tap-drinking_water_no # icon z18- (also has caption(optional) z18-)
|
||||
man_made-water_well-drinking_water_no # icon z18- (also has caption(optional) z18-)
|
||||
natural-spring-drinking_water_no # icon z14- (also has caption(optional) z15-)
|
||||
@@ -1147,10 +1143,6 @@ isoline-step_10 # pathtext z17- (also has li
|
||||
isoline-zero # pathtext z17- (also has line z15-)
|
||||
=== 1000
|
||||
|
||||
social_facility-food_bank # icon z17- (also has caption(optional) z17-)
|
||||
social_facility-soup_kitchen # icon z17- (also has caption(optional) z17-)
|
||||
=== 851
|
||||
|
||||
amenity-grave_yard # icon z17- (also has caption(optional) z17-, area z10-)
|
||||
amenity-grave_yard-christian # icon z17- (also has caption(optional) z17-, area z10-)
|
||||
amenity-nursing_home # icon z17- (also has caption(optional) z17-)
|
||||
@@ -1263,7 +1255,6 @@ power-portal # icon z19-
|
||||
power-tower # icon z19-
|
||||
=== 450
|
||||
|
||||
amenity-car_pooling # icon z16- (also has caption(optional) z18-, area z15-)
|
||||
amenity-parking # icon z16- (also has caption(optional) z18-, area z15-)
|
||||
amenity-parking-fee # icon z16- (also has caption(optional) z18-, area z15-)
|
||||
amenity-parking-multi-storey # icon z16- (also has caption(optional) z18-, area z15-)
|
||||
@@ -1296,15 +1287,9 @@ power-plant-wind # icon z15- (also has captio
|
||||
=== 230
|
||||
|
||||
barrier-entrance # icon z16- (also has caption(optional) z16-)
|
||||
entrance-main # icon z17- (also has caption(optional) z18-)
|
||||
=== 225
|
||||
|
||||
entrance # icon z17- (also has caption(optional) z19-)
|
||||
entrance-entry # icon z17- (also has caption(optional) z19-)
|
||||
entrance-exit # icon z17- (also has caption(optional) z19-)
|
||||
entrance-main # icon z16- (also has caption(optional) z18-)
|
||||
=== 220
|
||||
|
||||
entrance-emergency # icon z20- (also has caption(optional) z20-)
|
||||
highway-traffic_signals # icon z19-
|
||||
=== 215
|
||||
|
||||
@@ -1782,7 +1767,7 @@ leisure-swimming_pool-private # icon z17- (also has captio
|
||||
# railway-tram_stop # caption(optional) z17- (also has icon z14-)
|
||||
# === -6350
|
||||
|
||||
# highway-bus_stop # caption(optional) z17- (also has icon z14-)
|
||||
# highway-bus_stop # caption(optional) z17- (also has icon z16-)
|
||||
# === -6400
|
||||
|
||||
# amenity-drinking_water # caption(optional) z18- (also has icon z17-)
|
||||
@@ -2023,7 +2008,6 @@ leisure-swimming_pool-private # icon z17- (also has captio
|
||||
# leisure-fitness_centre # caption(optional) z17- (also has icon z16-)
|
||||
# leisure-hackerspace # caption(optional) z17- (also has icon z17-)
|
||||
# leisure-sauna # caption(optional) z17- (also has icon z17-)
|
||||
# man_made-observatory # caption(optional) z16- (also has icon z16-)
|
||||
# office-estate_agent # caption(optional) z18- (also has icon z18-)
|
||||
# office-government # caption(optional) z18- (also has icon z18-)
|
||||
# office-insurance # caption(optional) z18- (also has icon z18-)
|
||||
@@ -2164,17 +2148,11 @@ leisure-swimming_pool-private # icon z17- (also has captio
|
||||
# amenity-vending_machine-public_transport_tickets # caption(optional) z17- (also has icon z17-)
|
||||
# amenity-water_point-drinking_water_no # caption(optional) z18- (also has icon z18-)
|
||||
# leisure-picnic_table # caption(optional) z17- (also has icon z17-)
|
||||
# man_made-telescope-gamma # caption(optional) z17- (also has icon z17-)
|
||||
# man_made-telescope-radio # caption(optional) z17- (also has icon z17-)
|
||||
# man_made-water_tap-drinking_water_no # caption(optional) z18- (also has icon z18-)
|
||||
# man_made-water_well-drinking_water_no # caption(optional) z18- (also has icon z18-)
|
||||
# natural-spring-drinking_water_no # caption(optional) z15- (also has icon z14-)
|
||||
# === -8800
|
||||
|
||||
# social_facility-food_bank # caption(optional) z17- (also has icon z17-)
|
||||
# social_facility-soup_kitchen # caption(optional) z17- (also has icon z17-)
|
||||
# === -9149
|
||||
|
||||
# amenity-grave_yard # caption(optional) z17- (also has icon z17-, area z10-)
|
||||
# amenity-grave_yard-christian # caption(optional) z17- (also has icon z17-, area z10-)
|
||||
# amenity-nursing_home # caption(optional) z17- (also has icon z17-)
|
||||
@@ -2268,7 +2246,6 @@ leisure-swimming_pool-private # icon z17- (also has captio
|
||||
# man_made-water_tower # caption(optional) z18- (also has icon z16-)
|
||||
# === -9550
|
||||
|
||||
# amenity-car_pooling # caption(optional) z18- (also has icon z16-, area z15-)
|
||||
# amenity-parking # caption(optional) z18- (also has icon z16-, area z15-)
|
||||
# amenity-parking-fee # caption(optional) z18- (also has icon z16-, area z15-)
|
||||
# amenity-parking-multi-storey # caption(optional) z18- (also has icon z16-, area z15-)
|
||||
@@ -2292,17 +2269,9 @@ leisure-swimming_pool-private # icon z17- (also has captio
|
||||
# === -9770
|
||||
|
||||
# barrier-entrance # caption(optional) z16- (also has icon z16-)
|
||||
# entrance-main # caption(optional) z18- (also has icon z17-)
|
||||
# === -9775
|
||||
|
||||
# entrance # caption(optional) z19- (also has icon z17-)
|
||||
# entrance-entry # caption(optional) z19- (also has icon z17-)
|
||||
# entrance-exit # caption(optional) z19- (also has icon z17-)
|
||||
# entrance-main # caption(optional) z18- (also has icon z16-)
|
||||
# === -9780
|
||||
|
||||
# entrance-emergency # caption(optional) z20- (also has icon z20-)
|
||||
# === -9785
|
||||
|
||||
# historic-anchor # caption(optional) z18- (also has icon z18-)
|
||||
# historic-cannon # caption(optional) z18- (also has icon z18-)
|
||||
# historic-memorial-plaque # caption(optional) z18- (also has icon z18-)
|
||||
@@ -2344,18 +2313,13 @@ tourism-information # icon z16- (also has captio
|
||||
tourism-information-board # icon z16- (also has caption(optional) z16-)
|
||||
tourism-information-guidepost # icon z16- (also has caption(optional) z16-)
|
||||
tourism-information-map # icon z16- (also has caption(optional) z16-)
|
||||
=== -9940
|
||||
=== -9950
|
||||
|
||||
amenity # caption z19-
|
||||
amenity-telephone # icon z17- (also has caption(optional) z19-)
|
||||
entrance-house # icon z19- (also has caption(optional) z19-)
|
||||
=== -9950
|
||||
|
||||
entrance-garage # icon z19- (also has caption(optional) z19-)
|
||||
entrance # icon z17- (also has caption(optional) z19-)
|
||||
=== -9960
|
||||
|
||||
amenity-food_sharing # icon z18- (also has caption(optional) z18-)
|
||||
amenity-give_box # icon z18- (also has caption(optional) z18-)
|
||||
amenity-parking_space # caption z19-
|
||||
amenity-parking_space-disabled # icon z18- (also has caption(optional) z19-)
|
||||
amenity-parking_space-permissive # caption z19-
|
||||
@@ -2371,7 +2335,6 @@ amenity-vending_machine-food # icon z18- (also has captio
|
||||
amenity-vending_machine-newspapers # icon z18- (also has caption(optional) z18-)
|
||||
amenity-vending_machine-sweets # icon z18- (also has caption(optional) z18-)
|
||||
building-address # caption z16-
|
||||
man_made-telescope-optical # icon z17- (also has caption(optional) z17-)
|
||||
=== -9970
|
||||
|
||||
amenity-bench # icon z18- (also has caption(optional) z19-)
|
||||
@@ -2380,8 +2343,7 @@ amenity-lounger # icon z18- (also has captio
|
||||
amenity-waste_disposal # icon z18- (also has caption(optional) z18-)
|
||||
emergency-assembly_point # icon z18- (also has caption(optional) z18-)
|
||||
emergency-defibrillator # icon z18- (also has caption(optional) z18-)
|
||||
emergency-phone # icon z17- (also has caption(optional) z19-)
|
||||
man_made-telescope # icon z18- (also has caption(optional) z18-)
|
||||
emergency-phone # icon z17-
|
||||
=== -9980
|
||||
|
||||
amenity-waste_basket # icon z18- (also has caption(optional) z19-)
|
||||
@@ -2389,15 +2351,10 @@ emergency-fire_hydrant # icon z19- (also has captio
|
||||
power-substation # icon z17- (also has caption(optional) z18-, area z13-)
|
||||
=== -9990
|
||||
|
||||
natural-tree # icon z18-
|
||||
=== -9991
|
||||
|
||||
# amenity-bench # caption(optional) z19- (also has icon z18-)
|
||||
# amenity-bench-backless # caption(optional) z19- (also has icon z18-)
|
||||
# amenity-food_sharing # caption(optional) z18- (also has icon z18-)
|
||||
# amenity-give_box # caption(optional) z18- (also has icon z18-)
|
||||
amenity-loading_dock # icon z19- (also has caption(optional) z19-)
|
||||
# amenity-loading_dock # caption(optional) z19- (also has icon z19-)
|
||||
amenity-loading_dock # icon z18- (also has caption(optional) z19-)
|
||||
# amenity-loading_dock # caption(optional) z19- (also has icon z18-)
|
||||
# amenity-lounger # caption(optional) z19- (also has icon z18-)
|
||||
# amenity-parking_space-disabled # caption(optional) z19- (also has icon z18-)
|
||||
# amenity-telephone # caption(optional) z19- (also has icon z17-)
|
||||
@@ -2415,15 +2372,11 @@ amenity-loading_dock # icon z19- (also has captio
|
||||
# emergency-assembly_point # caption(optional) z18- (also has icon z18-)
|
||||
# emergency-defibrillator # caption(optional) z18- (also has icon z18-)
|
||||
# emergency-fire_hydrant # caption(optional) z19- (also has icon z19-)
|
||||
# emergency-phone # caption(optional) z19- (also has icon z17-)
|
||||
# entrance-garage # caption(optional) z19- (also has icon z19-)
|
||||
# entrance-house # caption(optional) z19- (also has icon z19-)
|
||||
entrance-service # icon z19- (also has caption(optional) z19-)
|
||||
# entrance-service # caption(optional) z19- (also has icon z19-)
|
||||
# entrance # caption(optional) z19- (also has icon z17-)
|
||||
entrance-exit # icon z17- (also has caption(optional) z19-)
|
||||
# entrance-exit # caption(optional) z19- (also has icon z17-)
|
||||
# man_made-cairn # caption(optional) z19- (also has icon z19-)
|
||||
# man_made-survey_point # caption(optional) z18- (also has icon z18-)
|
||||
# man_made-telescope # caption(optional) z18- (also has icon z18-)
|
||||
# man_made-telescope-optical # caption(optional) z17- (also has icon z17-)
|
||||
# power-substation # caption(optional) z18- (also has icon z17-, area z13-)
|
||||
# tourism-information # caption(optional) z16- (also has icon z16-)
|
||||
# tourism-information-board # caption(optional) z16- (also has icon z16-)
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
<svg height="15" viewBox="0 0 15 15" width="15" xmlns="http://www.w3.org/2000/svg"><g fill="none"><rect fill="#fff" height="15" opacity=".6" rx="1.875" width="15"/><rect fill="#2f6499" height="13.5" rx="1.5" width="13.5" x=".75" y=".75"/><path d="m4.30833333 11.4713297c.21052121.0559605.43455474.0861305.66692134.0861305h.66552345l.00088855.3790098c0 .311229-.29836282.56353-.666412.56353-.3680492 0-.666412-.252301-.666412-.56353zm6.38295947.0002346.0003739.4649057c0 .311229-.298278.56353-.6662225.56353-.36794462 0-.66622253-.252301-.66622253-.56353l-.00088834-.3790098h.66711087c.2319755 0 .4556437-.0300857.6658486-.0858959zm-.561486-8.55489763c.829944 0 1.5027466.67280261 1.5027466 1.50274669v5.25961347c0 .82994407-.6728026 1.50274667-1.5027466 1.50274667h-5.25961352c-.82994407 0-1.50274669-.6728026-1.50274669-1.50274667v-5.25961347c0-.82994408.67280262-1.50274669 1.50274669-1.50274669zm-5.24127678 6.38667341c-.31122904 0-.56353002.252301-.56353002.56353 0 .31122912.25230098.56353012.56353002.56353012.31122902 0 .56353001-.252301.56353001-.56353012 0-.311229-.25230099-.56353-.56353001-.56353zm5.21666668 0c-.31122903 0-.56353003.252301-.56353003.56353 0 .31122912.252301.56353012.56353003.56353012.311229 0 .56353-.252301.56353-.56353012 0-.311229-.252301-.56353-.56353-.56353zm.56147-3.84500675h-6.3416667v2.42105266c0 .3565628.31547343.64561401.70462963.64561401h4.93240737c.3891563 0 .7046297-.28905121.7046297-.64561401zm-.7046297-1.58333333h-4.93240737c-.3891562 0-.70462963.3364013-.70462963.75137335v.37568667h6.3416667v-.37568667c0-.41497205-.3154734-.75137335-.7046297-.75137335z" fill="#fff" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 6 6" width="6" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m5 0c.55228475 0 1 .44771525 1 1v4c0 .55228475-.44771525 1-1 1h-4c-.55228475 0-1-.44771525-1-1v-4c0-.55228475.44771525-1 1-1z" fill="#fff" fill-opacity=".6"/><path d="m1 .5h4c.27614237 0 .5.22385763.5.5v4c0 .27614237-.22385763.5-.5.5h-4c-.27614237 0-.5-.22385763-.5-.5v-4c0-.27614237.22385763-.5.5-.5z" fill="#2f6499" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
@@ -1 +0,0 @@
|
||||
<svg height="5" viewBox="0 0 5 5" width="5" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m4 0c.55228475 0 1 .44771525 1 1v3c0 .55228475-.44771525 1-1 1h-3c-.55228475 0-1-.44771525-1-1v-3c0-.55228475.44771525-1 1-1z" fill="#fff" fill-opacity=".6"/><path d="m1 .5h3c.27614237 0 .5.22385763.5.5v3c0 .27614237-.22385763.5-.5.5h-3c-.27614237 0-.5-.22385763-.5-.5v-3c0-.27614237.22385763-.5.5-.5z" fill="#2f6499" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
@@ -1 +0,0 @@
|
||||
<svg height="4" viewBox="0 0 4 4" width="4" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m3 0c.55228475 0 1 .44771525 1 1v2c0 .55228475-.44771525 1-1 1h-2c-.55228475 0-1-.44771525-1-1v-2c0-.55228475.44771525-1 1-1z" fill="#fff" fill-opacity=".6"/><path d="m1 .5h2c.27614237 0 .5.22385763.5.5v2c0 .27614237-.22385763.5-.5.5h-2c-.27614237 0-.5-.22385763-.5-.5v-2c0-.27614237.22385763-.5.5-.5z" fill="#2f6499" fill-rule="evenodd"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
@@ -1 +0,0 @@
|
||||
<svg height="10" viewBox="0 0 8 10" width="8" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m6.45638209 0c.37609148 0 .72425864.1747833.96936352.49369282l.06615442.10027904c.10687134.18244079.16414241.39064697.16414241.60600579l.00033965 7.60002235c0 .08452163-.00881715.16822686-.03378359.28090951l-.0458696.14760544-.06668844.14497209-.07146019.1153718-.06179076.08041635-.07556165.08214374-.10781751.09508139-.10964934.07580657-.12987138.06948085-.07954583.03314166c-.04905188.01754418-.04905188.01754418-.1303233.03957053l-.15920996.02799023-.1287681.00750984h-4.22425693c-.10907652 0-.21669708-.01468463-.35383951-.05390448l-.14047138-.05265064-.10280855-.05337186-.14765925-.09957233-.10159134-.09041744-.10489342-.11895698-.0784479-.11480897-.05509066-.10505725-.06607418-.17129918-.02223491-.08669691c-.01814821-.0826435-.02722855-.16749219-.02722706-.25204115l-.00144536-.591-.00199757-.28322281-.02893303.00146741c-.51942228.01887315-.91865829-.24714738-.98830514-.67658602l-.01042408-.11069391c-.01253177-.43076054.32054599-.82795908.77223753-.84441048l.25542472-.030777c.00229529-.08066906.00229529-.18987309 0-.32761211-.03371432-.00977655-.08956256-.02247896-.1233309-.03714759-.45095098-.19588858-.51469301-.68984012-.30519389-1.15166694l.43196772-.89919451c.00947774-.02096777.00947724-.90442739-.00000149-2.65037885 0-.6627417.5372583-1.2 1.2-1.2z" fill="#fff" opacity=".6"/><path d="m6.45638209.5c.22551627 0 .42612467.10664329.55414621.27225087l.04994362.07444573c.06074822.1037037.09557052.22443696.09557052.3533034l.00033965 7.6c0 .05011473-.00526633.09899944-.01527578.1461309l-.02384038.085169-.03771531.08786746-.0419297.07097489-.03740085.05020216-.03821292.04374726-.06347463.05861778-.06028924.04402764-.07874284.044385-.06117341.02581362c-.01766844.00664526-.03607223.01258439-.05479097.01776541l-.09216812.01890871-.0953255.00639017h-4.22425693c-.06480353 0-.12755032-.00880593-.18710905-.02528645l-.09162788-.0324093-.04872236-.02328158-.09538019-.0610859-.05713707-.04808259-.06450448-.06946502-.04937574-.06908366-.02934081-.05219473-.04389022-.10543844-.01765973-.06765121c-.01032579-.04702168-.01559212-.09590639-.01559212-.14602112l-.00144537-.591.66089153-.02540436.09415983-.01277867-.00300941.57818303h4.12374307v-7.499h-4.12374307l-.00049701.60518552c-.30277731.25714038-.49010086.63138619-.49010086 1.05120766l.00555985.11160682-.07728011.00485305c-.0660555.00624911-.12924699.01672474-.18947556.03124346l.00119711-1.85409651c0-.38659932.31340067-.7.7-.7zm-2.256326 3.31599576c.25595671 0 .43735449.1230815.49018767.54084433l.02877808.57142067.62174436.19704693c.31792476.09362657.4520938.24201607.40250712.44516851-.03257321.13344966-.16664108.18318709-.40220364.14921229-.11574123-.01797477-.23380508-.05174093-.31880324-.0684414l-.60646039-.16066363c-.26277038-.06961813-.29780643-.22302452-.30247791-.41885973l-.07592051-.64933479-.16065403.0000192c-.19078646.30319659-.10110927.79611708-.16066363 1.25944922h.29120123c.32132726 0 .83343457.3031966.51210731.90960578l-.48199088.90963778c-.32132726.60639318-.80328614.15159989-.64265452-.1515999l.48199089-.90963778c.0648808-.12244607-.03044986-.14599339-.10942109-.15052172l-.84425517-.00107817-.15426327.28432918-.14131385.24161291c-.14333507.22167486-.22812622.57718916-.61780982.57718916l-1.02876487.03740254c-.68581553.02491902-.53293243-.61986625-.19003789-.63235508l1.0908756-.03994917c.05913462-.0063629.08251176-.03738214.18447811-.22729991.13109959-.24417998.20388236-.45229962.20388236-.59080509 0-.35265986.06565766-1.09536109.16065723-1.51599895h-.48199088l-.09191427.16896043-.3097352.59819487c-.14617965.27634582-.31140187.31036692-.44324586.25309522-.13184399-.05727171-.15972216-.24295654-.05677328-.47029852l.50001914-1.00474529c.02972597-.06576327.08142637-.15159989.32132725-.15159989zm-.965957-1.51599576c.3549322 0 .64265451.27147032.64265451.60639318 0 .33492926-.28771911.60639318-.64265451.60639318-.3549322 0-.64265452-.27147032-.64265452-.60639318 0-.31522754.25486538-.57423664.58076149-.60361755z" fill="#019b41"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="9" viewBox="0 0 6 9" width="6" xmlns="http://www.w3.org/2000/svg"><path d="m5.05357504.00381365c.38659933 0 .7.31340068.7.7v7.6c0 .38659933-.31340067.7-.7.7h-4.22459658c-.38659933 0-.7-.31340067-.7-.7v-7.6c0-.38659932.31340067-.7.7-.7zm-.05059658.749-4.125.001v7.499h4.125z" fill="#747e86"/></svg>
|
||||
|
Before Width: | Height: | Size: 310 B |
4
data/styles/default/light/symbols/entrance-barrier-s.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="6" height="9" version="1.1" viewBox="0 0 6 9" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0.5 0.5h5v8h-5z" fill="none" stroke="#747E86" stroke-width=".75"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 218 B |
@@ -1 +0,0 @@
|
||||
<svg height="6" viewBox="0 0 4 6" width="4" xmlns="http://www.w3.org/2000/svg"><path d="m3.37632615.00381365c.27614238 0 .5.22385763.5.5v4.99618635c0 .27614237-.22385762.5-.5.5h-2.74734769c-.27614238 0-.5-.22385763-.5-.5v-4.99618635c0-.27614237.22385762-.5.5-.5zm-.25034769.75h-2.247v4.496h2.247z" fill="#747e86" transform="translate(.0041)"/></svg>
|
||||
|
Before Width: | Height: | Size: 349 B |