Compare commits

..

18 Commits

Author SHA1 Message Date
Yannik Bloscheck
327a64eea6 [styles] Add road borders to major roads
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
2026-01-08 19:12:37 +01:00
Yannik Bloscheck
4c5bc5d1e8 [styles] Add road borders to minor roads
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
2026-01-08 19:12:37 +01:00
Jean-Baptiste
fdf698281a [android] Fix tracks description not showed on the place page
Signed-off-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
2026-01-08 18:40:19 +01:00
x7z4w
fd57e71ac4 fix
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
2026-01-08 18:24:08 +01:00
thesupertechie
d86049f6d8 [ui][ux] change bookmarks and tracks to favourites
Signed-off-by: thesupertechie <thesupertechie1@gmail.com>
2026-01-08 18:24:08 +01:00
vikiawv
32bba5bc5e Added T-Road to italy
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
vikiawv
3068a468a3 Fixed italy again
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
vikiawv
267378aa23 Fixed two cases for italy
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
Yannik Bloscheck
0a525b7483 Stop interference with county roads in Bavaria
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
2026-01-08 18:21:08 +01:00
vikiawv
ea4b39ea47 Readding part that hides roadshield letter for some classification types
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
vikiawv
67f27482b8 Found mistake in Germany/Austria implementation
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
vikiawv
b231f2de6e manually corrected formatting of germany and austria part
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
vikiawv
2609dd5588 Update libs/indexer/road_shields_parser.cpp
Corrected albania
2026-01-08 18:21:08 +01:00
vikiawv
08a87c1962 Reverted Austria and Germany to Simpleroadshieldparser and corrected minor things
Signed-off-by: vikiawv <vikiawv@noreply.codeberg.org>
2026-01-08 18:21:08 +01:00
Chris H. Meyer
09b07c2631 [styles] Add railway=turntable
Signed-off-by: Chris H. Meyer <christian.h.meyer@t-online.de>
2026-01-08 18:20:39 +01:00
matheusgomesms
42f5590210 [iOS] Fix display of long addresses in Place Page
Signed-off-by: matheusgomesms <matheusgomesms@noreply.codeberg.org>
2026-01-08 18:19:40 +01:00
matheusgomesms
f7d2e43f09 [iOS] Remove decimals in current speed
Signed-off-by: matheusgomesms <matheusgomesms@noreply.codeberg.org>
2026-01-08 18:19:30 +01:00
Chris H. Meyer
7617f85442 [editor] enable tactile maps
Signed-off-by: Chris H. Meyer <christian.h.meyer@t-online.de>
2026-01-08 18:18:48 +01:00
28 changed files with 1292 additions and 578 deletions

View File

@@ -1 +1 @@
version: 2026.01.08-11-FDroid+26010811
version: 2025.03.02-7-FDroid+25030207

View File

@@ -428,8 +428,9 @@ public class PlacePageView extends Fragment
private void updateBookmarkView()
{
boolean enabled = mMapObject.isBookmark() || mMapObject.isTrack();
updateViewFragment(PlacePageBookmarkFragment.class, BOOKMARK_FRAGMENT_TAG, R.id.place_page_bookmark_fragment,
mMapObject.isBookmark());
enabled);
}
private void updateTrackView()

View File

@@ -23,6 +23,7 @@ import app.organicmaps.R;
import app.organicmaps.sdk.bookmarks.data.Bookmark;
import app.organicmaps.sdk.bookmarks.data.BookmarkManager;
import app.organicmaps.sdk.bookmarks.data.MapObject;
import app.organicmaps.sdk.bookmarks.data.Track;
import app.organicmaps.sdk.util.StringUtils;
import app.organicmaps.util.UiUtils;
import app.organicmaps.util.Utils;
@@ -41,6 +42,7 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
private PlacePageViewModel mViewModel;
private Bookmark currentBookmark;
private Track currentTrack;
@Nullable
@Override
@@ -88,7 +90,15 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
private void updateBookmarkDetails()
{
final String notes = currentBookmark.getBookmarkDescription();
String notes = null;
if (currentBookmark != null)
{
notes = currentBookmark.getBookmarkDescription();
}
if (currentTrack != null)
{
notes = currentTrack.getTrackDescription();
}
if (TextUtils.isEmpty(notes))
{
UiUtils.hide(mTvBookmarkNote);
@@ -120,8 +130,16 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
public void onClick(View v)
{
final FragmentActivity activity = requireActivity();
EditBookmarkFragment.editBookmark(currentBookmark.getCategoryId(), currentBookmark.getBookmarkId(), activity,
getChildFragmentManager(), PlacePageBookmarkFragment.this);
if (currentBookmark != null)
{
EditBookmarkFragment.editBookmark(currentBookmark.getCategoryId(), currentBookmark.getBookmarkId(), activity,
getChildFragmentManager(), PlacePageBookmarkFragment.this);
}
else if (currentTrack != null)
{
EditBookmarkFragment.editBookmark(currentTrack.getCategoryId(), currentTrack.getTrackId(), activity,
getChildFragmentManager(), PlacePageBookmarkFragment.this);
}
}
@Override
@@ -152,6 +170,11 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
currentBookmark = (Bookmark) mapObject;
updateBookmarkDetails();
}
if (mapObject != null && mapObject.isTrack())
{
currentTrack = (Track) mapObject;
updateBookmarkDetails();
}
}
@Override

View File

@@ -19,8 +19,8 @@
<string name="editor_zip_code">Postcode</string>
<string name="error_enter_correct_zip_code">Enter a valid postcode</string>
<plurals name="bookmarks_places">
<item quantity="one">%d bookmark</item>
<item quantity="other">%d bookmarks</item>
<item quantity="one">%d place</item>
<item quantity="other">%d places</item>
</plurals>
<plurals name="bookmarks_detect_message">
<item quantity="one">%d file was found. You can see it after conversion.</item>

View File

@@ -73,11 +73,11 @@
<!-- "Add new bookmark list" dialog title -->
<string name="add_new_set">Add a New List</string>
<!-- Add Bookmark list dialog - hint when the list name is empty -->
<string name="bookmark_set_name">Bookmark List Name</string>
<string name="bookmark_set_name">List Name</string>
<!-- Should be used in the bookmarks-only context, see bookmarks_and_tracks if tracks are also implied. -->
<string name="bookmarks">Bookmarks</string>
<string name="bookmarks">Places</string>
<!-- "Bookmarks and Tracks" dialog title, also sync it with iphone/plist.txt -->
<string name="bookmarks_and_tracks">Bookmarks and Tracks</string>
<string name="bookmarks_and_tracks">Favorites</string>
<!-- Add bookmark dialog - bookmark name -->
<string name="name">Name</string>
<!-- Editor title above street and house number, duplicates [type.building.address] in types_strings.txt -->
@@ -156,18 +156,18 @@
<!-- Notes field in Bookmarks view -->
<string name="description">Notes</string>
<!-- Email Subject when sharing bookmark list -->
<string name="share_bookmarks_email_subject">CoMaps bookmarks were shared with you</string>
<string name="share_bookmarks_email_subject">My CoMaps Favorites</string>
<string name="share_bookmarks_email_body">Hello!
\n
\nAttached are my bookmarks; please open them in CoMaps. If you don\'t have it installed you can download it here: https://www.comaps.app/download/
\nAttached are my favorites; please open them in CoMaps. If you don\'t have it installed you can download it here: https://www.comaps.app/download/
\n
\nEnjoy travelling with CoMaps!</string>
<!-- message title of loading file -->
<string name="load_kmz_title">Loading Bookmarks</string>
<string name="load_kmz_title">Loading Favorites</string>
<!-- Kmz file successful loading -->
<string name="load_kmz_successful">Bookmarks loaded successfully! You can find them on the map or on the Bookmarks Manager screen.</string>
<string name="load_kmz_successful">Favorites loaded successfully! You can find them on the map or on the Favorites Manager screen.</string>
<!-- Kml file loading failed -->
<string name="load_kmz_failed">Failed to load bookmarks. The file may be corrupted or defective.</string>
<string name="load_kmz_failed">Failed to load favorites. The file may be corrupted or defective.</string>
<!-- Failed to recognize the format of a bookmarks or tracks file. -->
<string name="unknown_file_type">The file type is not recognized by the app:
\n%1$s</string>
@@ -541,7 +541,7 @@
<string name="minute">min</string>
<string name="day">d</string>
<string name="placepage_more_button">More</string>
<string name="placepage_edit_bookmark_button">Edit Bookmark</string>
<string name="placepage_edit_bookmark_button">Edit Saved Place</string>
<string name="placepage_personal_notes_hint">Personal notes (text or html)</string>
<string name="editor_reset_edits_message">Discard all local changes?</string>
<string name="editor_reset_edits_button">Discard changes</string>
@@ -635,17 +635,17 @@
<string name="dialog_error_storage_message">External storage is not accessible. The SD card may have been removed, damaged, or the file system is read-only. Please, check your SD card or contact us at support@comaps.app</string>
<string name="setting_emulate_bad_storage">Emulate bad storage</string>
<string name="error_enter_correct_name">Please enter a correct name</string>
<string name="bookmark_lists">Lists</string>
<string name="bookmark_lists">Favorite Lists</string>
<!-- Do not display all bookmark lists on the map -->
<string name="bookmark_lists_hide_all">Hide all</string>
<string name="bookmark_lists_show_all">Show all</string>
<plurals name="bookmarks_places">
<item quantity="one">%d bookmark</item>
<item quantity="other">%d bookmarks</item>
<item quantity="one">%d saved place</item>
<item quantity="other">%d saved places</item>
</plurals>
<string name="bookmarks_create_new_group">Create a new list</string>
<!-- Bookmark categories screen, button that opens folder selection dialog to import KML/KMZ/GPX/KMB files -->
<string name="bookmarks_import">Import Bookmarks and Tracks</string>
<string name="bookmarks_import">Import Favorites</string>
<string name="bookmarks_error_message_share_general">Unable to share due to an application error</string>
<string name="bookmarks_error_title_share_empty">Sharing error</string>
<string name="bookmarks_error_message_share_empty">Cannot share an empty list</string>
@@ -675,7 +675,7 @@
<string name="subway">Subway</string>
<string name="layers_title">Map Styles and Layers</string>
<string name="bookmarks_empty_list_title">This list is empty</string>
<string name="bookmarks_empty_list_message">To add a bookmark, tap a place on the map and then tap the star icon</string>
<string name="bookmarks_empty_list_message">To save a place, tap a place on the map and then tap the star icon</string>
<string name="category_desc_more">…more</string>
<string name="export_file">Export KMZ</string>
<string name="export_file_gpx">Export GPX</string>
@@ -730,7 +730,7 @@
<!-- max. 10 symbols, both iOS and Android -->
<string name="sort">Sort…</string>
<!-- Android, title, max 20-22 symbols -->
<string name="sort_bookmarks">Sort bookmarks</string>
<string name="sort_bookmarks">Sort favorites</string>
<!-- Android -->
<string name="by_default">By default</string>
<!-- Android -->
@@ -811,7 +811,7 @@
<string name="translated_om_site_url">https://comaps.app/</string>
<!-- Link to OSM wiki for Editor, Profile and About pages -->
<string name="osm_wiki_about_url">https://wiki.openstreetmap.org/wiki/About_OpenStreetMap</string>
<!-- A number of bookmarks and a number of tracks, separated by comma, like: 1 bookmark, 5 tracks -->
<!-- A number of bookmarks and a number of tracks, separated by comma, like: 1 saved place, 5 tracks -->
<string name="comma_separated_pair">%1$s, %2$s</string>
<!-- App Tip #00 -->
<string name="app_tip_00">Thank you for using our community-built maps!</string>
@@ -857,7 +857,7 @@
<string name="browser_not_available">Web browser is not available</string>
<string name="volume">Volume</string>
<!-- Bookmark categories screen, button that opens share dialog to export all bookmarks and tracks -->
<string name="bookmarks_export">Export all Bookmarks and Tracks</string>
<string name="bookmarks_export">Export all Places and Tracks</string>
<!-- button in (app) TTS settings, to open the system TTS settings. -->
<string name="pref_tts_open_system_settings">Speech synthesis system settings</string>
<!-- toast displayed when pressing the "Speech synthesis system settings" button, and the system settings aren't found. -->
@@ -889,7 +889,7 @@
<!-- Title for the "Stop Without Saving" action for the alert when saving a track recording. -->
<string name="continue_recording">Continue Recording</string>
<!-- Title for the alert when saving a track recording. -->
<string name="track_recording_alert_title">Save into Bookmarks and Tracks?</string>
<string name="track_recording_alert_title">Save into Favorites?</string>
<!-- Message for the toast when saving the track recording is finished but nothing to save. -->
<string name="track_recording_toast_nothing_to_save">Track is empty - nothing to save</string>
<!-- Error message when there are no File Manager apps installed to select a folder when importing Bookmarks and Tracks -->
@@ -903,13 +903,13 @@
<string name="pref_left_button_disable">Disable</string>
<!-- Settings "Backup" category: "Backup" title -->
<string name="pref_backup_title">Bookmarks and tracks backup</string>
<string name="pref_backup_title">Backup favorites</string>
<string name="pref_backup_summary">Automatically backup to a folder on your device</string>
<string name="pref_backup_now_title">Backup now</string>
<string name="pref_backup_now_summary">Create a backup immediately</string>
<string name="pref_backup_now_summary_progress">Backup in progress…</string>
<string name="pref_backup_now_summary_ok">Backup completed successfully</string>
<string name="pref_backup_now_summary_empty_lists">No bookmarks and tracks to backup</string>
<string name="pref_backup_now_summary_empty_lists">No places and tracks to backup</string>
<string name="pref_backup_now_summary_failed">Backup failed</string>
<string name="pref_backup_now_summary_folder_unavailable">The backup folder is not available</string>
<string name="pref_backup_status_summary_success">Last successful backup</string>
@@ -933,7 +933,7 @@
<string name="pedestrian">Pedestrian</string>
<string name="bicycle">Bicycle</string>
<string name="ruler">Ruler</string>
<string name="bookmark_color">Bookmark color</string>
<string name="bookmark_color">Color for Favorite</string>
<string name="about_help">About &amp; Help</string>
<string name="open_now">Open now</string>
<string name="closed_now">Closed now</string>

View File

@@ -961,6 +961,7 @@
<string name="type.railway.rail.highspeed">High-Speed Railway</string>
<string name="type.railway.rail.tourism">Touristic Railway</string>
<string name="type.railway.rail.main">Railway</string>
<string name="type.railway.turntable">Railway Turntable</string>
<!-- Includes ordinary railway=rail w/o more specific usage= and service= tags. -->
<string name="type.railway.rail.branch">Railway Branch</string>
<!-- Non-passenger utility tracks: industrial, military, test. -->

View File

@@ -1167,6 +1167,9 @@
<type id="tourism-information-map">
<include field="name" />
</type>
<type id="tourism-information-tactile_map">
<include field="name" />
</type>
<type id="tourism-information-guidepost">
</type>
<!-- Too generic to add -->

View File

@@ -351,7 +351,7 @@ sport|basketball;242;
amenity|cinema;243;
amenity|theatre;244;
sport|chess;245;
deprecated:railway|spur:06.2023;246;x
railway|turntable;246;
aerialway|station;247;
landuse|brownfield;248;
aeroway|apron;249;
Can't render this file because it contains an unexpected character in line 7 and column 16.

View File

@@ -162,11 +162,22 @@
@path: #944A12;
@path_expert: #523E33;
@bridleway: #2B2827;
@motorway0_border: #7A4006;
@motorway1_border: #784606;
@trunk0_border: #794D11;
@trunk1_border: #79511D;
@primary0_border: #7A5C2A;
@primary1_border: #7C5E24;
@primary2_border: #7C622F;
@secondary0_border: #7F6730;
@secondary1_border: #7F6B3C;
@minor_road_border: #b2b2b2;
/* 5.2 Bridges */
@bridge_background: #2C2C1A;
@bridge_casing: #505050;
@bridge_minor_road_border: #393928;
/* 5.3 Tunnels */

View File

@@ -35,7 +35,9 @@
8.7 Footway 15-22 ZOOM
8.8 Steps 15-22 ZOOM
8.9 Bridleway 14-22 ZOOM
8.10 Runway 12-22 ZOOM
8.10 Major road borders
8.11 Minor road borders
8.12 Runway 12-22 ZOOM
9.RAIL 11-22 ZOOM
9.1 RAIL 11-22 ZOOM
9.2 Rail tunnel 14-22 ZOOM
@@ -1137,7 +1139,420 @@ line|z15-[highway=bridleway][bridge?]::bridgewhite
line|z17-[highway=bridleway][bridge?]::bridgeblack
{casing-width-add: 1;}
/* 8.10 Runway 12-22 ZOOM */
/* 8.10 Major road borders */
line|z6-9[highway=motorway]::border,
line|z6-9[highway=trunk]::border,
{color: @trunk0_border; opacity: 1;}
line|z10-13[highway=motorway]::border,
line|z10-13[highway=motorway_link]::border,
{color: @motorway0_border; opacity: 1;}
line|z10-13[highway=trunk]::border,
line|z10-13[highway=trunk_link]::border,
{color: @trunk1_border; opacity: 1;}
line|z14-[highway=motorway]::border,
line|z14-[highway=motorway_link]::border,
{color: @motorway1_border; opacity: 1;}
line|z14-[highway=trunk]::border,
line|z14-[highway=trunk_link]::border,
{color: @trunk1_border; opacity: 1;}
line|z8-10[highway=primary]::border,
{color: @primary0_border; opacity: 1;}
line|z11-13[highway=primary]::border,
line|z11-13[highway=primary_link]::border,
{color: @primary1_border; opacity: 1;}
line|z14-[highway=primary]::border,
line|z14-[highway=primary_link]::border,
{color: @primary2_border; opacity: 1;}
line|z10-13[highway=secondary]::border,
line|z13[highway=secondary_link]::border,
{color: @secondary0_border; opacity: 1;}
line|z14-[highway=secondary]::border,
line|z14-[highway=secondary_link]::border,
{color: @secondary1_border; opacity: 1;}
/* Width is like the original road, but increased by 1. Then set everything smaller or equal 2 to 0. Finally subtract 0.5 from everything smaller than 3. */
line|z10[highway=motorway]::border,
{width: 3.6;}
line|z11[highway=motorway]::border,
{width: 4.0;}
line|z12[highway=motorway]::border,
{width: 4.6;}
line|z13[highway=motorway]::border,
{width: 5.0;}
line|z14[highway=motorway]::border,
{width: 5.4;}
line|z15[highway=motorway]::border,
{width: 6.6;}
line|z16[highway=motorway]::border,
{width: 8.8;}
line|z17[highway=motorway]::border,
{width: 10.0;}
line|z18[highway=motorway]::border,
{width: 13.0;}
line|z19-[highway=motorway]::border,
{width: 17.0;}
line|z6[highway=motorway]::border,
line|z6[highway=trunk]::border,
{width: 0;}
line|z7[highway=motorway]::border,
line|z7[highway=trunk]::border,
{width: 0;}
line|z8[highway=motorway]::border,
line|z8[highway=trunk]::border,
{width: 1.7;}
line|z9[highway=motorway]::border,
line|z9[highway=trunk]::border,
{width: 1.8;}
line|z10[highway=trunk]::border,
{width: 3.2;}
line|z11[highway=trunk]::border,
{width: 3.5;}
line|z12[highway=trunk]::border,
{width: 4.0;}
line|z13[highway=trunk]::border,
{width: 4.6;}
line|z14[highway=trunk]::border,
{width: 5.0;}
line|z15[highway=trunk]::border,
{width: 5.8;}
line|z16[highway=trunk]::border,
{width: 7.2;}
line|z17[highway=trunk]::border,
{width: 9.2;}
line|z18[highway=trunk]::border,
{width: 12;}
line|z19-[highway=trunk]::border,
{width: 14.5;}
line|z10[highway=motorway_link]::border,
line|z10[highway=trunk_link]::border,
{width: 0;}
line|z11[highway=motorway_link]::border,
line|z11[highway=trunk_link]::border,
{width: 1.6;}
line|z12[highway=motorway_link]::border,
line|z12[highway=trunk_link]::border,
{width: 1.9;}
line|z13[highway=motorway_link]::border,
line|z13[highway=trunk_link]::border,
{width: 2.4;}
line|z14[highway=motorway_link]::border,
line|z14[highway=trunk_link]::border,
{width: 3.7;}
line|z15[highway=motorway_link]::border,
line|z15[highway=trunk_link]::border,
{width: 4.7;}
line|z16[highway=motorway_link]::border,
line|z16[highway=trunk_link]::border,
{width: 6.1;}
line|z17[highway=motorway_link]::border,
line|z17[highway=trunk_link]::border,
{width: 7.7;}
line|z18[highway=motorway_link]::border,
line|z18[highway=trunk_link]::border,
{width: 10.5;}
line|z19-[highway=motorway_link]::border,
line|z19-[highway=trunk_link]::border,
{width: 12.7;}
line|z8[highway=primary]::border,
{width: 0;}
line|z9[highway=primary]::border,
{width: 0;}
line|z10[highway=primary]::border,
{width: 2.3;}
line|z11[highway=primary]::border,
{width: 3.3;}
line|z12[highway=primary]::border,
{width: 3.7;}
line|z13[highway=primary]::border,
{width: 4.0;}
line|z14[highway=primary]::border,
{width: 4.8;}
line|z15[highway=primary]::border,
{width: 5.4;}
line|z16[highway=primary]::border,
{width: 6.4;}
line|z17[highway=primary]::border,
{width: 8;}
line|z18[highway=primary]::border,
{width: 11;}
line|z19-[highway=primary]::border,
{width: 13;}
line|z11[highway=primary_link]::border,
{width: 0;}
line|z12[highway=primary_link]::border,
{width: 0;}
line|z13[highway=primary_link]::border,
{width: 1.8;}
line|z14[highway=primary_link]::border,
{width: 2.3;}
line|z15[highway=primary_link]::border,
{width: 3.5;}
line|z16[highway=primary_link]::border,
{width: 4.2;}
line|z17[highway=primary_link]::border,
{width: 5.7;}
line|z18[highway=primary_link]::border,
{width: 7.4;}
line|z19-[highway=primary_link]::border,
{width: 9.2;}
line|z10[highway=secondary]::border,
{width: 1.9;}
line|z11[highway=secondary]::border,
{width: 3.2;}
line|z12[highway=secondary]::border,
{width: 3.5;}
line|z13[highway=secondary]::border,
{width: 3.7;}
line|z14[highway=secondary]::border,
{width: 4.2;}
line|z15[highway=secondary]::border,
{width: 4.8;}
line|z16[highway=secondary]::border,
{width: 6;}
line|z17[highway=secondary]::border,
{width: 7.6;}
line|z18[highway=secondary]::border,
{width: 10.4;}
line|z19-[highway=secondary]::border,
{width: 12.6;}
line|z13[highway=secondary_link]::border,
{width: 1.8;}
line|z14[highway=secondary_link]::border,
{width: 2.3;}
line|z15[highway=secondary_link]::border,
{width: 3.5;}
line|z16[highway=secondary_link]::border,
{width: 4.2;}
line|z17[highway=secondary_link]::border,
{width: 5.7;}
line|z18[highway=secondary_link]::border,
{width: 7.4;}
line|z19-[highway=secondary_link]::border,
{width: 9.2;}
/* 8.11 Minor road borders */
line|z11-[highway=tertiary]::border,
line|z14-[highway=tertiary_link]::border,
line|z11-[highway=unclassified]::border,
line|z12-[highway=residential]::border,
line|z12-[highway=road]::border,
line|z12-[highway=living_street]::border,
line|z13-[highway=pedestrian]::border,
line|z13-[highway=ford]::border,
line|z15-[highway=service]::border,
line|z15-[highway=service][service=busway]::border,
line|z15-[highway=busway]::border,
line|z15-[highway=footway]::border,
line|z15-[highway=ladder]::border,
line|z15-[highway=steps]::border,
{color: @minor_road_border; opacity: 0.1;}
line|z11-[highway=tertiary][bridge?]::border,
line|z14-[highway=tertiary_link][bridge?]::border,
line|z11-[highway=unclassified][bridge?]::border,
line|z12-[highway=residential][bridge?]::border,
line|z12-[highway=road][bridge?]::border,
line|z12-[highway=living_street][bridge?]::border,
line|z13-[highway=pedestrian][bridge?]::border,
line|z15-[highway=service][bridge?]::border,
line|z15-[highway=service][service=busway][bridge?]::border,
line|z15-[highway=busway][bridge?]::border,
line|z15-[highway=footway][bridge?]::border,
line|z15-[highway=steps][bridge?]::border,
{color: @bridge_minor_road_border; opacity: 1; linecap: butt}
/* Width is like the original road, but increased by 1. Then set everything smaller or equal 2 to 0. Finally subtract 0.5 from everything smaller than 3. */
line|z11[highway=tertiary]::border,
{width: 1.7;}
line|z12[highway=tertiary]::border,
{width: 2.1;}
line|z13[highway=tertiary]::border,
{width: 2.3;}
line|z14[highway=tertiary]::border,
{width: 3.7;}
line|z15[highway=tertiary]::border,
{width: 4.8;}
line|z16[highway=tertiary]::border,
{width: 6;}
line|z17[highway=tertiary]::border,
{width: 7.6;}
line|z18[highway=tertiary]::border,
{width: 10.4;}
line|z19-[highway=tertiary]::border,
{width: 12.6;}
line|z14[highway=tertiary_link]::border,
{width: 2.3;}
line|z15[highway=tertiary_link]::border,
{width: 3.5;}
line|z16[highway=tertiary_link]::border,
{width: 4.2;}
line|z17[highway=tertiary_link]::border,
{width: 5.7;}
line|z18[highway=tertiary_link]::border,
{width: 7.4;}
line|z19-[highway=tertiary_link]::border,
{width: 9.2;}
line|z11[highway=unclassified]::border,
{width: 0;}
line|z12[highway=unclassified]::border,
{width: 0;}
line|z13[highway=unclassified]::border,
{width: 1.9;}
line|z14[highway=unclassified]::border,
{width: 3.3;}
line|z15[highway=unclassified]::border,
{width: 4.2;}
line|z16[highway=unclassified]::border,
{width: 5.2;}
line|z17[highway=unclassified]::border,
{width: 7;}
line|z18[highway=unclassified]::border,
{width: 9;}
line|z19-[highway=unclassified]::border,
{width: 11;}
line|z12[highway=residential]::border,
line|z12[highway=road]::border,
line|z12[highway=living_street]::border,
{width: 0;}
line|z13[highway=residential]::border,
line|z13[highway=road]::border,
line|z13[highway=living_street]::border,
{width: 0;}
line|z14[highway=residential]::border,
line|z14[highway=road]::border,
line|z14[highway=living_street]::border,
{width: 2.1;}
line|z15[highway=residential]::border,
line|z15[highway=road]::border,
line|z15[highway=living_street]::border,
{width: 3.4;}
line|z16[highway=residential]::border,
line|z16[highway=road]::border,
line|z16[highway=living_street]::border,
{width: 4.2;}
line|z17[highway=residential]::border,
line|z17[highway=road]::border,
line|z17[highway=living_street]::border,
{width: 5.7;}
line|z18[highway=residential]::border,
line|z18[highway=road]::border,
line|z18[highway=living_street]::border,
{width: 7.4;}
line|z19-[highway=residential]::border,
line|z19-[highway=road]::border,
line|z19-[highway=living_street]::border,
{width: 9.2;}
line|z13[highway=pedestrian]::border,
line|z13[highway=ford]::border,
{width: 0;dashes: 4,1;}
line|z14[highway=pedestrian]::border,
line|z14[highway=ford]::border,
{width: 2.1;dashes: 6,1.3;}
line|z15[highway=pedestrian]::border,
line|z15[highway=ford]::border,
{width: 3;dashes: 8,1.5;}
line|z16[highway=pedestrian]::border,
line|z16[highway=ford]::border,
{width: 3.4;dashes: 8,1.5;}
line|z17[highway=pedestrian]::border,
line|z17[highway=ford]::border,
{width: 4;dashes: 9,1.8;}
line|z18[highway=pedestrian]::border,
line|z18[highway=ford]::border,
{width: 5;dashes: 11,2.3;}
line|z19-[highway=pedestrian]::border,
line|z19-[highway=ford]::border,
{width: 6;dashes: 13,2.7;}
line|z15[highway=service]::border,
line|z15[highway=service][service=busway]::border,
line|z15[highway=busway]::border,
{width: 1.7;}
line|z15[highway=service][service=driveway]::border,
{width: 0;}
line|z16[highway=service]::border,
line|z16[highway=service][service=busway]::border,
line|z16[highway=busway]::border,
{width: 2.1;}
line|z17[highway=service]::border,
line|z17[highway=service][service=busway]::border,
line|z17[highway=busway]::border,
{width: 3;}
line|z18[highway=service]::border,
line|z18[highway=service][service=busway]::border,
line|z18[highway=busway]::border,
{width: 4;}
line|z19-[highway=service]::border,
line|z19-[highway=service][service=busway]::border,
line|z19-[highway=busway]::border,
{width: 5;}
line|z15[highway=footway]::border,
{width: 2; dashes: 5,1.5;}
line|z16[highway=footway]::border,
{width: 3; dashes: 5,1.5;}
line|z17[highway=footway]::border,
{width: 3.4; dashes: 6,1.8;}
line|z18[highway=footway]::border,
{width: 4.2; dashes: 8,2.3;}
line|z19-[highway=footway]::border,
{width: 5.2; dashes: 10,2.7;}
line|z15[highway=footway][bicycle=designated]::border,
{width: 2; dashes: 6,9;}
line|z16[highway=footway][bicycle=designated]::border,
{width: 3; dashes: 8,10;}
line|z17[highway=footway][bicycle=designated]::border,
{width: 3.4; dashes: 10,11;}
line|z18[highway=footway][bicycle=designated]::border,
{width: 4.2; dashes: 15,15;}
line|z19-[highway=footway][bicycle=designated]::border,
{width: 5.2; dashes: 20,20;}
/* Don't display sidewalks and pedestrian crossings on z15. */
line|z15[highway=footway][footway=sidewalk]::border,
line|z15[highway=footway][footway=crossing]::border,
{width: 0;}
line|z15[highway=ladder]::border,
line|z15[highway=steps]::border,
{width: 3.4; dashes: 1.5,1.3;}
line|z16[highway=ladder]::border,
line|z16[highway=steps]::border,
{width: 5; dashes: 1.8,1.6;}
line|z17-[highway=ladder]::border,
line|z17-[highway=steps]::border,
{width: 7; dashes: 2.5,2.2;}
line|z18[highway=ladder]::border,
line|z18[highway=steps]::border,
{width: 9; dashes: 3.2,2.8;}
line|z19-[highway=ladder]::border,
line|z19-[highway=steps]::border,
{width: 11; dashes: 4,3.5;}
/* 8.12 Runway 12-22 ZOOM */
line|z12-[aeroway=runway],
line|z14-[aeroway=taxiway],
@@ -1198,6 +1613,7 @@ line|z15-[railway=preserved],
line|z16-[railway=miniature],
line|z16-[railway=disused],
line|z16-[railway=abandoned],
line|z17-[railway=turntable],
{color: @railway; opacity: 0.7;}
line|z13-[railway=light_rail][!tunnel],
@@ -1381,6 +1797,9 @@ line|z15-[railway=construction],
line|z16-[railway=disused],
{width: 1;dashes: 1.8,5.4;}
line|z17-[railway=turntable],
{width: 1.6;}
/* 9.2 Rail tunnel 14-22 ZOOM */
line|z12[railway=rail][tunnel?],

View File

@@ -97,8 +97,8 @@ amenity-recycling-centre # area z15- (also has icon z
amenity-social_facility # area z15- (also has icon z17-, caption(optional) z17-)
amenity-vehicle_inspection # area z15- (also has icon z16-, caption(optional) z16-)
emergency-mountain_rescue # area z13- (also has icon z16-, caption(optional) z16-)
highway-pedestrian-area # area z14- (also has line z13-, pathtext z14-)
highway-pedestrian-square # area z14- (also has line z13-, pathtext z14-)
highway-pedestrian-area # area z14- (also has line z13-, line::border z14-, pathtext z14-)
highway-pedestrian-square # area z14- (also has line z13-, line::border z14-, pathtext z14-)
highway-rest_area # area z13- (also has icon z15-, caption(optional) z15-)
highway-services # area z13- (also has icon z14-, caption(optional) z14-)
landuse-garages # area z13- (also has caption z15-)
@@ -111,7 +111,7 @@ tourism-information-office # area z15- (also has icon z
tourism-information-visitor_centre # area z13- (also has icon z15-, caption(optional) z15-)
=== 170
highway-footway-area # area z14- (also has line z15-, pathtext z15-)
highway-footway-area # area z14- (also has line z15-, line::border z15-, pathtext z15-)
leisure-track-area # area z15- (also has caption z16-)
=== 160

View File

@@ -45,10 +45,10 @@ power-line # line z19- (also has line::
power-line::dash # line::dash z19- (also has line z19-)
=== 340
highway-ladder # line z15- (also has icon z17-, pathtext z17-)
highway-steps # line z15- (also has pathtext z16-)
highway-steps-bridge # line z15- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z16-)
highway-steps-tunnel # line z15- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z16-)
highway-ladder # line z15- (also has line::border z15-, icon z17-, pathtext z17-)
highway-steps # line z15- (also has line::border z15-, pathtext z16-)
highway-steps-bridge # line z15- (also has line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z16-)
highway-steps-tunnel # line z15- (also has line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z16-)
hwtag-oneway::arrows # line::arrows z15-
waterway-weir # line z14- (also has pathtext z15-)
=== 330
@@ -73,23 +73,23 @@ railway-tram-bridge # line z13-
railway-tram-tunnel # line z13-
=== 320
highway-motorway # line z6- (also has pathtext z10-, shield::shield z10-)
highway-motorway-bridge # line z6- (also has line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway-tunnel # line z6- (also has line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-trunk # line z6- (also has pathtext z10-, shield::shield z10-)
highway-trunk-bridge # line z6- (also has line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk-tunnel # line z6- (also has line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-motorway # line z6- (also has line::border z8-, pathtext z10-, shield::shield z10-)
highway-motorway-bridge # line z6- (also has line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway-tunnel # line z6- (also has line::border z8-, line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-trunk # line z6- (also has line::border z8-, pathtext z10-, shield::shield z10-)
highway-trunk-bridge # line z6- (also has line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk-tunnel # line z6- (also has line::border z8-, line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-world_level # line z4-9
highway-world_towns_level # line z6-9
=== 310
# highway-motorway-tunnel # line(casing) z12- (also has line z6-, pathtext z10-, shield::shield z10-)
# highway-trunk-tunnel # line(casing) z12- (also has line z6-, pathtext z10-, shield::shield z10-)
# highway-motorway-tunnel # line(casing) z12- (also has line z6-, line::border z8-, pathtext z10-, shield::shield z10-)
# highway-trunk-tunnel # line(casing) z12- (also has line z6-, line::border z8-, pathtext z10-, shield::shield z10-)
# === 309
highway-primary # line z8- (also has pathtext z10-, shield::shield z10-)
highway-primary-bridge # line z8- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary-tunnel # line z8- (also has line(casing) z14-, pathtext z10-, shield::shield z10-)
highway-primary # line z8- (also has line::border z10-, pathtext z10-, shield::shield z10-)
highway-primary-bridge # line z8- (also has line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary-tunnel # line z8- (also has line::border z10-, line(casing) z14-, pathtext z10-, shield::shield z10-)
railway-rail-branch::dash # line::dash z16- (also has line z11-)
railway-rail-branch-bridge::dash # line::dash z16- (also has line z11-, line::bridgeblack z16-, line::bridgewhite z13-)
railway-rail-branch-tunnel::dash # line::dash z16- (also has line z11-, line(casing) z14-)
@@ -104,7 +104,7 @@ railway-rail-tourism-bridge::dash # line::dash z16- (also has
railway-rail-tourism-tunnel::dash # line::dash z16- (also has line z10-, line(casing) z14-, pathtext z14-)
=== 290
# highway-primary-tunnel # line(casing) z14- (also has line z8-, pathtext z10-, shield::shield z10-)
# highway-primary-tunnel # line(casing) z14- (also has line z8-, line::border z10-, pathtext z10-, shield::shield z10-)
# === 289
railway-rail-branch # line z11- (also has line::dash z16-)
@@ -127,88 +127,88 @@ railway-rail-tourism-tunnel # line z10- (also has line::
# railway-rail-tourism-tunnel # line(casing) z14- (also has line z10-, line::dash z16-, pathtext z14-)
# === 279
highway-secondary # line z10- (also has pathtext z10-, shield::shield z12-)
highway-secondary-bridge # line z10- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary-tunnel # line z10- (also has line(casing) z16-, pathtext z10-, shield::shield z12-)
highway-secondary # line z10- (also has line::border z10-, pathtext z10-, shield::shield z12-)
highway-secondary-bridge # line z10- (also has line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary-tunnel # line z10- (also has line::border z10-, line(casing) z16-, pathtext z10-, shield::shield z12-)
=== 270
# highway-secondary-tunnel # line(casing) z16- (also has line z10-, pathtext z10-, shield::shield z12-)
# highway-secondary-tunnel # line(casing) z16- (also has line z10-, line::border z10-, pathtext z10-, shield::shield z12-)
# === 269
highway-tertiary # line z11- (also has pathtext z12-, shield::shield z13-)
highway-tertiary-bridge # line z11- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary-tunnel # line z11- (also has line(casing) z16-, pathtext z12-, shield::shield z13-)
highway-unclassified # line z11- (also has pathtext z13-)
highway-unclassified-area # line z11- (also has pathtext z13-)
highway-unclassified-bridge # line z11- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-)
highway-unclassified-tunnel # line z11- (also has line(casing) z16-, pathtext z13-)
highway-tertiary # line z11- (also has line::border z11-, pathtext z12-, shield::shield z13-)
highway-tertiary-bridge # line z11- (also has line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary-tunnel # line z11- (also has line::border z11-, line(casing) z16-, pathtext z12-, shield::shield z13-)
highway-unclassified # line z11- (also has line::border z13-, pathtext z13-)
highway-unclassified-area # line z11- (also has line::border z13-, pathtext z13-)
highway-unclassified-bridge # line z11- (also has line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-)
highway-unclassified-tunnel # line z11- (also has line::border z13-, line(casing) z16-, pathtext z13-)
=== 250
# highway-tertiary-tunnel # line(casing) z16- (also has line z11-, pathtext z12-, shield::shield z13-)
# highway-unclassified-tunnel # line(casing) z16- (also has line z11-, pathtext z13-)
# highway-tertiary-tunnel # line(casing) z16- (also has line z11-, line::border z11-, pathtext z12-, shield::shield z13-)
# highway-unclassified-tunnel # line(casing) z16- (also has line z11-, line::border z13-, pathtext z13-)
# === 249
highway-living_street # line z12- (also has pathtext z14-)
highway-living_street-bridge # line z12- (also has pathtext z14-)
highway-living_street-tunnel # line z12- (also has line(casing) z16-, pathtext z14-)
highway-residential # line z12- (also has pathtext z13-, shield::shield z15-)
highway-residential-area # line z12- (also has pathtext z13-, shield::shield z15-)
highway-residential-bridge # line z12- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-residential-tunnel # line z12- (also has line(casing) z16-, pathtext z13-, shield::shield z15-)
highway-road # line z12- (also has pathtext z14-)
highway-road-bridge # line z12- (also has line::bridgeblack z16-, line::bridgewhite z16-, pathtext z14-)
highway-road-tunnel # line z12- (also has pathtext z14-)
highway-living_street # line z12- (also has line::border z14-, pathtext z14-)
highway-living_street-bridge # line z12- (also has line::border z14-, pathtext z14-)
highway-living_street-tunnel # line z12- (also has line::border z14-, line(casing) z16-, pathtext z14-)
highway-residential # line z12- (also has line::border z14-, pathtext z13-, shield::shield z15-)
highway-residential-area # line z12- (also has line::border z14-, pathtext z13-, shield::shield z15-)
highway-residential-bridge # line z12- (also has line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-residential-tunnel # line z12- (also has line::border z14-, line(casing) z16-, pathtext z13-, shield::shield z15-)
highway-road # line z12- (also has line::border z14-, pathtext z14-)
highway-road-bridge # line z12- (also has line::border z14-, line::bridgeblack z16-, line::bridgewhite z16-, pathtext z14-)
highway-road-tunnel # line z12- (also has line::border z14-, pathtext z14-)
=== 230
# highway-living_street-tunnel # line(casing) z16- (also has line z12-, pathtext z14-)
# highway-residential-tunnel # line(casing) z16- (also has line z12-, pathtext z13-, shield::shield z15-)
# highway-living_street-tunnel # line(casing) z16- (also has line z12-, line::border z14-, pathtext z14-)
# highway-residential-tunnel # line(casing) z16- (also has line z12-, line::border z14-, pathtext z13-, shield::shield z15-)
# === 229
highway-motorway_link # line z10- (also has pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge # line z10- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-motorway_link-tunnel # line z10- (also has line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link # line z10- (also has pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge # line z10- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-trunk_link-tunnel # line z10- (also has line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link # line z10- (also has line::border z11-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge # line z10- (also has line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-motorway_link-tunnel # line z10- (also has line::border z11-, line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link # line z10- (also has line::border z11-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge # line z10- (also has line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-trunk_link-tunnel # line z10- (also has line::border z11-, line(casing) z13-, pathtext z10-, shield::shield z10-)
=== 228
# highway-motorway_link-tunnel # line(casing) z13- (also has line z10-, pathtext z10-, shield::shield z10-)
# highway-trunk_link-tunnel # line(casing) z13- (also has line z10-, pathtext z10-, shield::shield z10-)
# highway-motorway_link-tunnel # line(casing) z13- (also has line z10-, line::border z11-, pathtext z10-, shield::shield z10-)
# highway-trunk_link-tunnel # line(casing) z13- (also has line z10-, line::border z11-, pathtext z10-, shield::shield z10-)
# === 227
highway-primary_link # line z11- (also has pathtext z11-, shield::shield z11-)
highway-primary_link-bridge # line z11- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-primary_link-tunnel # line z11- (also has line(casing) z14-, pathtext z11-, shield::shield z11-)
highway-primary_link # line z11- (also has line::border z13-, pathtext z11-, shield::shield z11-)
highway-primary_link-bridge # line z11- (also has line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-primary_link-tunnel # line z11- (also has line::border z13-, line(casing) z14-, pathtext z11-, shield::shield z11-)
=== 226
# highway-primary_link-tunnel # line(casing) z14- (also has line z11-, pathtext z11-, shield::shield z11-)
# highway-primary_link-tunnel # line(casing) z14- (also has line z11-, line::border z13-, pathtext z11-, shield::shield z11-)
# === 225
highway-secondary_link # line z13- (also has pathtext z16-)
highway-secondary_link-bridge # line z13- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z16-)
highway-secondary_link-tunnel # line z13- (also has line(casing) z16-, pathtext z16-)
highway-secondary_link # line z13- (also has line::border z13-, pathtext z16-)
highway-secondary_link-bridge # line z13- (also has line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z16-)
highway-secondary_link-tunnel # line z13- (also has line::border z13-, line(casing) z16-, pathtext z16-)
=== 224
# highway-secondary_link-tunnel # line(casing) z16- (also has line z13-, pathtext z16-)
highway-tertiary_link # line z14- (also has pathtext z18-)
highway-tertiary_link-bridge # line z14- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z18-)
highway-tertiary_link-tunnel # line z14- (also has line(casing) z16-, pathtext z18-)
# highway-secondary_link-tunnel # line(casing) z16- (also has line z13-, line::border z13-, pathtext z16-)
highway-tertiary_link # line z14- (also has line::border z14-, pathtext z18-)
highway-tertiary_link-bridge # line z14- (also has line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z18-)
highway-tertiary_link-tunnel # line z14- (also has line::border z14-, line(casing) z16-, pathtext z18-)
=== 223
highway-busway # line z15- (also has pathtext z16-)
highway-busway-bridge # line z15- (also has line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-busway-tunnel # line z15- (also has line(casing) z15-, pathtext z16-)
highway-service # line z15- (also has pathtext z16-)
highway-service-area # line z15- (also has pathtext z16-)
highway-service-bridge # line z15- (also has line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-service-driveway # line z16- (also has pathtext z16-)
highway-service-parking_aisle # line z15- (also has pathtext z16-)
highway-service-tunnel # line z15- (also has line(casing) z15-, pathtext z16-)
# highway-tertiary_link-tunnel # line(casing) z16- (also has line z14-, pathtext z18-)
highway-busway # line z15- (also has line::border z15-, pathtext z16-)
highway-busway-bridge # line z15- (also has line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-busway-tunnel # line z15- (also has line::border z15-, line(casing) z15-, pathtext z16-)
highway-service # line z15- (also has line::border z15-, pathtext z16-)
highway-service-area # line z15- (also has line::border z15-, pathtext z16-)
highway-service-bridge # line z15- (also has line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-service-driveway # line z16- (also has line::border z16-, pathtext z16-)
highway-service-parking_aisle # line z15- (also has line::border z15-, pathtext z16-)
highway-service-tunnel # line z15- (also has line::border z15-, line(casing) z15-, pathtext z16-)
# highway-tertiary_link-tunnel # line(casing) z16- (also has line z14-, line::border z14-, pathtext z18-)
=== 222
# highway-busway-tunnel # line(casing) z15- (also has line z15-, pathtext z16-)
# highway-service-tunnel # line(casing) z15- (also has line z15-, pathtext z16-)
# highway-busway-tunnel # line(casing) z15- (also has line z15-, line::border z15-, pathtext z16-)
# highway-service-tunnel # line(casing) z15- (also has line z15-, line::border z15-, pathtext z16-)
railway-light_rail::dash # line::dash z16- (also has line z13-)
railway-light_rail-bridge::dash # line::dash z16- (also has line z13-, line::bridgeblack z16-, line::bridgewhite z13-)
railway-rail::dash # line::dash z16- (also has line z11-)
@@ -227,11 +227,11 @@ railway-subway::dash # line::dash z16- (also has
railway-subway-bridge::dash # line::dash z16- (also has line z13-, line::bridgeblack z16-, line::bridgewhite z13-)
=== 221
highway-footway-bicycle # line z15- (also has line::cycleline z15-, pathtext z15-)
highway-footway-bicycle # line z15- (also has line::border z15-, line::cycleline z15-, pathtext z15-)
highway-path-bicycle # line z15- (also has line::cycleline z14-, pathtext z15-)
=== 220
highway-footway-bicycle::cycleline # line::cycleline z15- (also has line z15-, pathtext z15-)
highway-footway-bicycle::cycleline # line::cycleline z15- (also has line z15-, line::border z15-, pathtext z15-)
highway-path-bicycle::cycleline # line::cycleline z14- (also has line z15-, pathtext z15-)
=== 219
@@ -264,23 +264,23 @@ railway-subway-bridge # line z13- (also has line::
# railway-rail-utility-tunnel # line(casing) z14- (also has line z13-, line::dash z17-)
# === 209
highway-ford # line z13- (also has icon z16-, pathtext z16-)
highway-pedestrian # line z13- (also has pathtext z14-)
highway-pedestrian-area # line z13- and area z14- (also has pathtext z14-)
highway-pedestrian-bridge # line z13- (also has line::bridgeblack z14-, line::bridgewhite z13-, pathtext z14-)
highway-pedestrian-square # line z13- and area z14- (also has pathtext z14-)
highway-pedestrian-tunnel # line z13- (also has line(casing) z16-, pathtext z14-)
highway-ford # line z13- (also has line::border z14-, icon z16-, pathtext z16-)
highway-pedestrian # line z13- (also has line::border z14-, pathtext z14-)
highway-pedestrian-area # line z13- and area z14- (also has line::border z14-, pathtext z14-)
highway-pedestrian-bridge # line z13- (also has line::border z14-, line::bridgeblack z14-, line::bridgewhite z13-, pathtext z14-)
highway-pedestrian-square # line z13- and area z14- (also has line::border z14-, pathtext z14-)
highway-pedestrian-tunnel # line z13- (also has line::border z14-, line(casing) z16-, pathtext z14-)
=== 200
# highway-pedestrian-tunnel # line(casing) z16- (also has line z13-, pathtext z14-)
# highway-pedestrian-tunnel # line(casing) z16- (also has line z13-, line::border z14-, pathtext z14-)
# === 199
highway-bridleway # line z14- (also has pathtext z15-)
highway-bridleway-bridge # line z14- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z15-)
highway-bridleway-tunnel # line z14- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z15-)
highway-footway # line z15- (also has pathtext z15-)
highway-footway-area # line z15- and area z14- (also has pathtext z15-)
highway-footway-crossing # line z16-
highway-footway # line z15- (also has line::border z15-, pathtext z15-)
highway-footway-area # line z15- and area z14- (also has line::border z15-, pathtext z15-)
highway-footway-crossing # line z16- (also has line::border z16-)
highway-path # line z15- (also has pathtext z15-)
highway-path-difficult # line z15- (also has pathtext z15-)
highway-path-expert # line z15- (also has pathtext z15-)
@@ -290,7 +290,7 @@ highway-track-area # line z15- (also has pathte
highway-track-bridge # line z15- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z15-)
highway-track-no-access # line z15- (also has pathtext z15-)
highway-track-tunnel # line z15- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z15-)
=== 180
=== 190
highway-construction # line z13- (also has pathtext z15-)
leisure-track # line z15- (also has caption z16-)
@@ -305,54 +305,173 @@ railway-miniature-tunnel # line z16-
railway-preserved # line z15-
railway-preserved-bridge # line z15- (also has line::bridgeblack z16-, line::bridgewhite z15-)
railway-preserved-tunnel # line z15-
=== 160
railway-turntable # line z17-
=== 180
highway-footway-bridge # line z15- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z15-)
highway-footway-sidewalk # line z16-
highway-footway-tunnel # line z15- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z15-)
highway-footway-bridge # line z15- (also has line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z15-)
highway-footway-sidewalk # line z16- (also has line::border z16-)
highway-footway-tunnel # line z15- (also has line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z15-)
highway-path-bridge # line z15- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z15-)
highway-path-horse # line z15- (also has pathtext z15-)
highway-path-tunnel # line z15- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z15-)
=== 155
=== 170
highway-bridleway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z14-, line::tunnelCasing z17-, pathtext z15-)
highway-cycleway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z13-, line::tunnelCasing z17-, pathtext z15-)
highway-footway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z15-, line::tunnelCasing z17-, pathtext z15-)
highway-footway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z15-, line::border z15-, line::tunnelCasing z17-, pathtext z15-)
highway-path-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z15-, line::tunnelCasing z17-, pathtext z15-)
highway-steps-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z15-, line::tunnelCasing z17-, pathtext z16-)
highway-steps-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z15-, line::border z15-, line::tunnelCasing z17-, pathtext z16-)
highway-track-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z15-, line::tunnelCasing z17-, pathtext z15-)
=== 154
=== 169
highway-bridleway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z14-, line::tunnelBackground z17-, pathtext z15-)
highway-cycleway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z13-, line::tunnelBackground z17-, pathtext z15-)
highway-footway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z15-, line::tunnelBackground z17-, pathtext z15-)
highway-footway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z15-, line::border z15-, line::tunnelBackground z17-, pathtext z15-)
highway-path-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z15-, line::tunnelBackground z17-, pathtext z15-)
highway-steps-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z15-, line::tunnelBackground z17-, pathtext z16-)
highway-steps-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z15-, line::border z15-, line::tunnelBackground z17-, pathtext z16-)
highway-track-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z15-, line::tunnelBackground z17-, pathtext z15-)
=== 168
highway-motorway::border # line::border z8- (also has line z6-, pathtext z10-, shield::shield z10-)
highway-trunk::border # line::border z8- (also has line z6-, pathtext z10-, shield::shield z10-)
=== 163
highway-primary::border # line::border z10- (also has line z8-, pathtext z10-, shield::shield z10-)
=== 162
highway-secondary::border # line::border z10- (also has line z10-, pathtext z10-, shield::shield z12-)
=== 161
highway-motorway_link::border # line::border z11- (also has line z10-, pathtext z10-, shield::shield z10-)
highway-trunk_link::border # line::border z11- (also has line z10-, pathtext z10-, shield::shield z10-)
=== 160
highway-primary_link::border # line::border z13- (also has line z11-, pathtext z11-, shield::shield z11-)
=== 159
highway-secondary_link::border # line::border z13- (also has line z13-, pathtext z16-)
=== 158
highway-motorway-bridge::border # line::border z8- (also has line z6-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk-bridge::border # line::border z8- (also has line z6-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
=== 157
highway-primary-bridge::border # line::border z10- (also has line z8-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
=== 156
highway-secondary-bridge::border # line::border z10- (also has line z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
=== 155
highway-motorway_link-bridge::border # line::border z11- (also has line z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::border # line::border z11- (also has line z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
=== 154
highway-primary_link-bridge::border # line::border z13- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
=== 153
highway-secondary_link-bridge::border # line::border z13- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z16-)
=== 152
highway-motorway-tunnel::border # line::border z8- (also has line z6-, line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-trunk-tunnel::border # line::border z8- (also has line z6-, line(casing) z12-, pathtext z10-, shield::shield z10-)
=== 151
highway-primary-tunnel::border # line::border z10- (also has line z8-, line(casing) z14-, pathtext z10-, shield::shield z10-)
=== 150
highway-secondary-tunnel::border # line::border z10- (also has line z10-, line(casing) z16-, pathtext z10-, shield::shield z12-)
=== 149
highway-motorway_link-tunnel::border # line::border z11- (also has line z10-, line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-tunnel::border # line::border z11- (also has line z10-, line(casing) z13-, pathtext z10-, shield::shield z10-)
=== 148
highway-primary_link-tunnel::border # line::border z13- (also has line z11-, line(casing) z14-, pathtext z11-, shield::shield z11-)
=== 147
highway-secondary_link-tunnel::border # line::border z13- (also has line z13-, line(casing) z16-, pathtext z16-)
=== 146
highway-busway::border # line::border z15- (also has line z15-, pathtext z16-)
highway-living_street::border # line::border z14- (also has line z12-, pathtext z14-)
highway-residential::border # line::border z14- (also has line z12-, pathtext z13-, shield::shield z15-)
highway-residential-area::border # line::border z14- (also has line z12-, pathtext z13-, shield::shield z15-)
highway-road::border # line::border z14- (also has line z12-, pathtext z14-)
highway-service::border # line::border z15- (also has line z15-, pathtext z16-)
highway-service-area::border # line::border z15- (also has line z15-, pathtext z16-)
highway-service-driveway::border # line::border z16- (also has line z16-, pathtext z16-)
highway-service-parking_aisle::border # line::border z15- (also has line z15-, pathtext z16-)
highway-tertiary::border # line::border z11- (also has line z11-, pathtext z12-, shield::shield z13-)
highway-tertiary-bridge::border # line::border z11- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link::border # line::border z14- (also has line z14-, pathtext z18-)
highway-unclassified::border # line::border z13- (also has line z11-, pathtext z13-)
highway-unclassified-area::border # line::border z13- (also has line z11-, pathtext z13-)
=== 145
highway-footway::border # line::border z15- (also has line z15-, pathtext z15-)
highway-footway-area::border # line::border z15- (also has line z15-, area z14-, pathtext z15-)
highway-footway-bicycle::border # line::border z15- (also has line z15-, line::cycleline z15-, pathtext z15-)
highway-footway-crossing::border # line::border z16- (also has line z16-)
highway-footway-sidewalk::border # line::border z16- (also has line z16-)
highway-ford::border # line::border z14- (also has line z13-, icon z16-, pathtext z16-)
highway-ladder::border # line::border z15- (also has line z15-, icon z17-, pathtext z17-)
highway-pedestrian::border # line::border z14- (also has line z13-, pathtext z14-)
highway-pedestrian-area::border # line::border z14- (also has line z13-, area z14-, pathtext z14-)
highway-pedestrian-square::border # line::border z14- (also has line z13-, area z14-, pathtext z14-)
highway-steps::border # line::border z15- (also has line z15-, pathtext z16-)
=== 144
highway-busway-bridge::border # line::border z15- (also has line z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-living_street-bridge::border # line::border z14- (also has line z12-, pathtext z14-)
highway-residential-bridge::border # line::border z14- (also has line z12-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::border # line::border z14- (also has line z12-, line::bridgeblack z16-, line::bridgewhite z16-, pathtext z14-)
highway-service-bridge::border # line::border z15- (also has line z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-tertiary_link-bridge::border # line::border z14- (also has line z14-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z18-)
highway-unclassified-bridge::border # line::border z13- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-)
=== 143
highway-footway-bridge::border # line::border z15- (also has line z15-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z15-)
highway-pedestrian-bridge::border # line::border z14- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z13-, pathtext z14-)
highway-steps-bridge::border # line::border z15- (also has line z15-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z16-)
=== 142
highway-busway-tunnel::border # line::border z15- (also has line z15-, line(casing) z15-, pathtext z16-)
highway-living_street-tunnel::border # line::border z14- (also has line z12-, line(casing) z16-, pathtext z14-)
highway-residential-tunnel::border # line::border z14- (also has line z12-, line(casing) z16-, pathtext z13-, shield::shield z15-)
highway-road-tunnel::border # line::border z14- (also has line z12-, pathtext z14-)
highway-service-tunnel::border # line::border z15- (also has line z15-, line(casing) z15-, pathtext z16-)
highway-tertiary-tunnel::border # line::border z11- (also has line z11-, line(casing) z16-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-tunnel::border # line::border z14- (also has line z14-, line(casing) z16-, pathtext z18-)
highway-unclassified-tunnel::border # line::border z13- (also has line z11-, line(casing) z16-, pathtext z13-)
=== 141
highway-footway-tunnel::border # line::border z15- (also has line z15-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z15-)
highway-pedestrian-tunnel::border # line::border z14- (also has line z13-, line(casing) z16-, pathtext z14-)
highway-steps-tunnel::border # line::border z15- (also has line z15-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z16-)
=== 140
highway-bridleway-bridge::bridgewhite # line::bridgewhite z15- (also has line z14-, line::bridgeblack z17-, pathtext z15-)
highway-busway-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z15-, pathtext z16-)
highway-busway-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::border z15-, line::bridgeblack z15-, pathtext z16-)
highway-cycleway-bridge::bridgewhite # line::bridgewhite z15- (also has line z13-, line::bridgeblack z17-, pathtext z15-)
highway-footway-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z17-, pathtext z15-)
highway-motorway-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-footway-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::border z15-, line::bridgeblack z17-, pathtext z15-)
highway-motorway-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::border z8-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::border z11-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-path-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z17-, pathtext z15-)
highway-pedestrian-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z14-, pathtext z14-)
highway-primary-bridge::bridgewhite # line::bridgewhite z14- (also has line z8-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::bridgeblack z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgewhite # line::bridgewhite z14- (also has line z12-, line::bridgeblack z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgewhite # line::bridgewhite z16- (also has line z12-, line::bridgeblack z16-, pathtext z14-)
highway-secondary-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z13-, line::bridgeblack z14-, pathtext z16-)
highway-service-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z15-, pathtext z16-)
highway-steps-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z17-, pathtext z16-)
highway-tertiary-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::bridgeblack z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z14-, line::bridgeblack z14-, pathtext z18-)
highway-pedestrian-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::border z14-, line::bridgeblack z14-, pathtext z14-)
highway-primary-bridge::bridgewhite # line::bridgewhite z14- (also has line z8-, line::border z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::border z13-, line::bridgeblack z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgewhite # line::bridgewhite z14- (also has line z12-, line::border z14-, line::bridgeblack z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgewhite # line::bridgewhite z16- (also has line z12-, line::border z14-, line::bridgeblack z16-, pathtext z14-)
highway-secondary-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::border z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z13-, line::border z13-, line::bridgeblack z14-, pathtext z16-)
highway-service-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::border z15-, line::bridgeblack z15-, pathtext z16-)
highway-steps-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::border z15-, line::bridgeblack z17-, pathtext z16-)
highway-tertiary-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::border z11-, line::bridgeblack z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z14-, line::border z14-, line::bridgeblack z14-, pathtext z18-)
highway-track-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z17-, pathtext z15-)
highway-trunk-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::bridgeblack z14-, pathtext z13-)
highway-trunk-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::border z8-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::border z11-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::border z13-, line::bridgeblack z14-, pathtext z13-)
railway-abandoned-bridge::bridgewhite # line::bridgewhite z16- (also has line z16-, line::bridgeblack z16-)
railway-light_rail-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z16-, line::dash z16-)
railway-miniature-bridge::bridgewhite # line::bridgewhite z16- (also has line z16-, line::bridgeblack z16-)
@@ -366,30 +485,30 @@ railway-rail-spur-bridge::bridgewhite # line::bridgewhite z15- (al
railway-rail-tourism-bridge::bridgewhite # line::bridgewhite z13- (also has line z10-, line::bridgeblack z16-, line::dash z16-, pathtext z14-)
railway-rail-utility-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z16-, line::dash z17-)
railway-subway-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z16-, line::dash z16-)
=== 150
=== 135
highway-bridleway-bridge::bridgeblack # line::bridgeblack z17- (also has line z14-, line::bridgewhite z15-, pathtext z15-)
highway-busway-bridge::bridgeblack # line::bridgeblack z15- (also has line z15-, line::bridgewhite z15-, pathtext z16-)
highway-busway-bridge::bridgeblack # line::bridgeblack z15- (also has line z15-, line::border z15-, line::bridgewhite z15-, pathtext z16-)
highway-cycleway-bridge::bridgeblack # line::bridgeblack z17- (also has line z13-, line::bridgewhite z15-, pathtext z15-)
highway-footway-bridge::bridgeblack # line::bridgeblack z17- (also has line z15-, line::bridgewhite z15-, pathtext z15-)
highway-motorway-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-footway-bridge::bridgeblack # line::bridgeblack z17- (also has line z15-, line::border z15-, line::bridgewhite z15-, pathtext z15-)
highway-motorway-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::border z8-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::border z11-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-path-bridge::bridgeblack # line::bridgeblack z17- (also has line z15-, line::bridgewhite z15-, pathtext z15-)
highway-pedestrian-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::bridgewhite z13-, pathtext z14-)
highway-primary-bridge::bridgeblack # line::bridgeblack z14- (also has line z8-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgeblack # line::bridgeblack z14- (also has line z12-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgeblack # line::bridgeblack z16- (also has line z12-, line::bridgewhite z16-, pathtext z14-)
highway-secondary-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::bridgewhite z14-, pathtext z16-)
highway-service-bridge::bridgeblack # line::bridgeblack z15- (also has line z15-, line::bridgewhite z15-, pathtext z16-)
highway-steps-bridge::bridgeblack # line::bridgeblack z17- (also has line z15-, line::bridgewhite z15-, pathtext z16-)
highway-tertiary-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z14-, line::bridgewhite z14-, pathtext z18-)
highway-pedestrian-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::border z14-, line::bridgewhite z13-, pathtext z14-)
highway-primary-bridge::bridgeblack # line::bridgeblack z14- (also has line z8-, line::border z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::border z13-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgeblack # line::bridgeblack z14- (also has line z12-, line::border z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgeblack # line::bridgeblack z16- (also has line z12-, line::border z14-, line::bridgewhite z16-, pathtext z14-)
highway-secondary-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::border z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::border z13-, line::bridgewhite z14-, pathtext z16-)
highway-service-bridge::bridgeblack # line::bridgeblack z15- (also has line z15-, line::border z15-, line::bridgewhite z15-, pathtext z16-)
highway-steps-bridge::bridgeblack # line::bridgeblack z17- (also has line z15-, line::border z15-, line::bridgewhite z15-, pathtext z16-)
highway-tertiary-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::border z11-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z14-, line::border z14-, line::bridgewhite z14-, pathtext z18-)
highway-track-bridge::bridgeblack # line::bridgeblack z17- (also has line z15-, line::bridgewhite z15-, pathtext z15-)
highway-trunk-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::bridgewhite z14-, pathtext z13-)
highway-trunk-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::border z8-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::border z11-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::border z13-, line::bridgewhite z14-, pathtext z13-)
railway-abandoned-bridge::bridgeblack # line::bridgeblack z16- (also has line z16-, line::bridgewhite z16-)
railway-light_rail-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z13-, line::dash z16-)
railway-miniature-bridge::bridgeblack # line::bridgeblack z16- (also has line z16-, line::bridgewhite z16-)
@@ -403,14 +522,14 @@ railway-rail-spur-bridge::bridgeblack # line::bridgeblack z16- (al
railway-rail-tourism-bridge::bridgeblack # line::bridgeblack z16- (also has line z10-, line::bridgewhite z13-, line::dash z16-, pathtext z14-)
railway-rail-utility-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z13-, line::dash z17-)
railway-subway-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z13-, line::dash z16-)
=== 140
=== 130
building # area z14- (also has caption z17-)
building-garage # area z14- (also has caption z17-)
building-guardhouse # area z14- (also has icon z18-, caption(optional) z18-)
building-has_parts # area z14- (also has caption z17-)
building-train_station # area z14- (also has icon z17-, caption(optional) z17-)
=== 130
=== 120
piste:type-connection # line z15-
piste:type-downhill # line z14- (also has pathtext z15-)
@@ -424,30 +543,30 @@ piste:type-hike # line z15- (also has pathte
piste:type-nordic # line z14- (also has pathtext z15-)
piste:type-skitour # line z14- (also has pathtext z15-)
piste:type-sled # line z14- (also has pathtext z15-)
=== 120
=== 110
building:part # area z16-
=== 110
=== 100
barrier-retaining_wall # line z16-
man_made-embankment # line z16- (also has pathtext z18-)
natural-cliff # line z14- (also has pathtext z16-)
natural-earth_bank # line z14-
=== 100
=== 90
boundary-administrative-2 # line z2-
boundary-administrative-3 # line z4
boundary-administrative-4 # line z5-
=== 90
=== 80
man_made-cutline # line z14-
route-ferry # line z7- (also has pathtext z10-)
=== 80
=== 70
aeroway-runway # line z12-
aeroway-taxiway # line z14-
barrier-ditch # line z16-
=== 70
=== 60
isoline-step_10 # line z15- (also has pathtext z17-)
isoline-step_100 # line z12- (also has pathtext z14-)
@@ -455,7 +574,7 @@ isoline-step_1000 # line z11- (also has pathte
isoline-step_50 # line z14- (also has pathtext z16-)
isoline-step_500 # line z11- (also has pathtext z12-)
isoline-zero # line z15- (also has pathtext z17-)
=== 60
=== 50
man_made-breakwater # line z14- and area z12- (also has caption z17-)
man_made-pier # line z14- and area z12- (also has caption z17-)

View File

@@ -78,20 +78,20 @@ amenity-ferry_terminal # icon z11- (also has captio
railway-station # icon z12- (also has caption(optional) z12-)
=== 6800
highway-motorway # pathtext z10- (also has shield::shield z10-, line z6-)
highway-motorway-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line(casing) z12-)
highway-trunk # pathtext z10- (also has shield::shield z10-, line z6-)
highway-trunk-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line(casing) z12-)
highway-motorway # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-)
highway-motorway-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line(casing) z12-)
highway-trunk # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-)
highway-trunk-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line(casing) z12-)
=== 6750
highway-motorway::shield # shield::shield z10- (also has pathtext z10-, line z6-)
highway-motorway-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line(casing) z12-)
highway-trunk::shield # shield::shield z10- (also has pathtext z10-, line z6-)
highway-trunk-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line(casing) z12-)
highway-motorway::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-)
highway-motorway-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line(casing) z12-)
highway-trunk::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-)
highway-trunk-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line(casing) z12-)
=== 6740
boundary-aboriginal_lands # caption z10-16 (also has line z10-, area z10-16)
@@ -259,31 +259,31 @@ railway-station-subway-yerevan # icon z13- (also has captio
railway-station-subway-yokohama # icon z13- (also has caption(optional) z14-)
=== 6250
highway-primary # pathtext z10- (also has shield::shield z10-, line z8-)
highway-primary-bridge # pathtext z10- (also has shield::shield z10-, line z8-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel # pathtext z10- (also has shield::shield z10-, line z8-, line(casing) z14-)
highway-primary # pathtext z10- (also has shield::shield z10-, line z8-, line::border z10-)
highway-primary-bridge # pathtext z10- (also has shield::shield z10-, line z8-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel # pathtext z10- (also has shield::shield z10-, line z8-, line::border z10-, line(casing) z14-)
route-ferry # pathtext z10- (also has line z7-)
=== 6200
highway-motorway_link # pathtext z10- (also has shield::shield z10-, line z10-)
highway-motorway_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line(casing) z13-)
highway-trunk_link # pathtext z10- (also has shield::shield z10-, line z10-)
highway-trunk_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line(casing) z13-)
highway-motorway_link # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-)
highway-motorway_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line(casing) z13-)
highway-trunk_link # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-)
highway-trunk_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line(casing) z13-)
=== 6150
highway-motorway_link::shield # shield::shield z10- (also has pathtext z10-, line z10-)
highway-motorway_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line(casing) z13-)
highway-trunk_link::shield # shield::shield z10- (also has pathtext z10-, line z10-)
highway-trunk_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line(casing) z13-)
highway-motorway_link::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-)
highway-motorway_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line(casing) z13-)
highway-trunk_link::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-)
highway-trunk_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line(casing) z13-)
=== 6140
highway-primary_link # pathtext z11- (also has shield::shield z11-, line z11-)
highway-primary_link-bridge # pathtext z11- (also has shield::shield z11-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel # pathtext z11- (also has shield::shield z11-, line z11-, line(casing) z14-)
highway-primary_link # pathtext z11- (also has shield::shield z11-, line z11-, line::border z13-)
highway-primary_link-bridge # pathtext z11- (also has shield::shield z11-, line z11-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel # pathtext z11- (also has shield::shield z11-, line z11-, line::border z13-, line(casing) z14-)
=== 6100
barrier-border_control # icon z14- (also has caption(optional) z14-)
@@ -302,9 +302,9 @@ place-locality # caption z13-
place-neighbourhood # caption z13-
=== 5700
highway-secondary # pathtext z10- (also has shield::shield z12-, line z10-)
highway-secondary-bridge # pathtext z10- (also has shield::shield z12-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel # pathtext z10- (also has shield::shield z12-, line z10-, line(casing) z16-)
highway-secondary # pathtext z10- (also has shield::shield z12-, line z10-, line::border z10-)
highway-secondary-bridge # pathtext z10- (also has shield::shield z12-, line z10-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel # pathtext z10- (also has shield::shield z12-, line z10-, line::border z10-, line(casing) z16-)
=== 5600
man_made-communications_tower # icon z14- (also has caption(optional) z15-)
@@ -581,14 +581,14 @@ shop-supermarket # icon z16- (also has captio
=== 3200
area:highway-pedestrian # caption z15- (also has area z14-)
highway-pedestrian # pathtext z14- (also has line z13-)
highway-pedestrian-area # pathtext z14- (also has line z13-, area z14-)
highway-pedestrian-bridge # pathtext z14- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z13-)
highway-pedestrian-square # pathtext z14- (also has line z13-, area z14-)
highway-pedestrian-tunnel # pathtext z14- (also has line z13-, line(casing) z16-)
highway-tertiary # pathtext z12- (also has shield::shield z13-, line z11-)
highway-tertiary-bridge # pathtext z12- (also has shield::shield z13-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel # pathtext z12- (also has shield::shield z13-, line z11-, line(casing) z16-)
highway-pedestrian # pathtext z14- (also has line z13-, line::border z14-)
highway-pedestrian-area # pathtext z14- (also has line z13-, line::border z14-, area z14-)
highway-pedestrian-bridge # pathtext z14- (also has line z13-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z13-)
highway-pedestrian-square # pathtext z14- (also has line z13-, line::border z14-, area z14-)
highway-pedestrian-tunnel # pathtext z14- (also has line z13-, line::border z14-, line(casing) z16-)
highway-tertiary # pathtext z12- (also has shield::shield z13-, line z11-, line::border z11-)
highway-tertiary-bridge # pathtext z12- (also has shield::shield z13-, line z11-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel # pathtext z12- (also has shield::shield z13-, line z11-, line::border z11-, line(casing) z16-)
natural-strait # caption z13- (also has line z13-)
natural-water # caption z10- (also has area z1-)
natural-water-pond # caption z10- (also has area z1-)
@@ -600,10 +600,10 @@ waterway-dam # pathtext z15- (also has li
waterway-river # pathtext z11- (also has line z10-)
=== 3150
highway-unclassified # pathtext z13- (also has line z11-)
highway-unclassified-area # pathtext z13- (also has line z11-)
highway-unclassified-bridge # pathtext z13- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-unclassified-tunnel # pathtext z13- (also has line z11-, line(casing) z16-)
highway-unclassified # pathtext z13- (also has line z11-, line::border z13-)
highway-unclassified-area # pathtext z13- (also has line z11-, line::border z13-)
highway-unclassified-bridge # pathtext z13- (also has line z11-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-unclassified-tunnel # pathtext z13- (also has line z11-, line::border z13-, line(casing) z16-)
=== 3100
amenity-water_point # icon z17- (also has caption(optional) z18-)
@@ -635,46 +635,46 @@ aerialway-mixed_lift # pathtext z15- (also has li
aerialway-platter # pathtext z15- (also has line z13-, line::dash z13-)
aerialway-rope_tow # pathtext z15- (also has line z13-, line::dash z13-)
aerialway-t-bar # pathtext z15- (also has line z13-, line::dash z13-)
highway-residential # pathtext z13- (also has shield::shield z15-, line z12-)
highway-residential-area # pathtext z13- (also has shield::shield z15-, line z12-)
highway-residential-bridge # pathtext z13- (also has shield::shield z15-, line z12-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel # pathtext z13- (also has shield::shield z15-, line z12-, line(casing) z16-)
highway-road # pathtext z14- (also has line z12-)
highway-road-bridge # pathtext z14- (also has line z12-, line::bridgeblack z16-, line::bridgewhite z16-)
highway-road-tunnel # pathtext z14- (also has line z12-)
highway-secondary_link # pathtext z16- (also has line z13-)
highway-secondary_link-bridge # pathtext z16- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary_link-tunnel # pathtext z16- (also has line z13-, line(casing) z16-)
highway-residential # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-)
highway-residential-area # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-)
highway-residential-bridge # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-, line(casing) z16-)
highway-road # pathtext z14- (also has line z12-, line::border z14-)
highway-road-bridge # pathtext z14- (also has line z12-, line::border z14-, line::bridgeblack z16-, line::bridgewhite z16-)
highway-road-tunnel # pathtext z14- (also has line z12-, line::border z14-)
highway-secondary_link # pathtext z16- (also has line z13-, line::border z13-)
highway-secondary_link-bridge # pathtext z16- (also has line z13-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary_link-tunnel # pathtext z16- (also has line z13-, line::border z13-, line(casing) z16-)
=== 3000
highway-primary::shield # shield::shield z10- (also has pathtext z10-, line z8-)
highway-primary-bridge::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z8-, line(casing) z14-)
highway-primary::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::border z10-)
highway-primary-bridge::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::border z10-, line(casing) z14-)
=== 2975
highway-primary_link::shield # shield::shield z11- (also has pathtext z11-, line z11-)
highway-primary_link-bridge::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel::shield # shield::shield z11- (also has pathtext z11-, line z11-, line(casing) z14-)
highway-primary_link::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::border z13-)
highway-primary_link-bridge::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::border z13-, line(casing) z14-)
=== 2970
highway-secondary::shield # shield::shield z12- (also has pathtext z10-, line z10-)
highway-secondary-bridge::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel::shield # shield::shield z12- (also has pathtext z10-, line z10-, line(casing) z16-)
highway-secondary::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::border z10-)
highway-secondary-bridge::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::border z10-, line(casing) z16-)
=== 2965
highway-tertiary::shield # shield::shield z13- (also has pathtext z12-, line z11-)
highway-tertiary-bridge::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel::shield # shield::shield z13- (also has pathtext z12-, line z11-, line(casing) z16-)
highway-tertiary::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::border z11-)
highway-tertiary-bridge::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::border z11-, line(casing) z16-)
=== 2960
barrier-city_wall # pathtext z16- (also has line z14-)
historic-citywalls # pathtext z16- (also has line z14-)
=== 2957
highway-residential::shield # shield::shield z15- (also has pathtext z13-, line z12-)
highway-residential-area::shield # shield::shield z15- (also has pathtext z13-, line z12-)
highway-residential-bridge::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel::shield # shield::shield z15- (also has pathtext z13-, line z12-, line(casing) z16-)
highway-residential::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-)
highway-residential-area::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-)
highway-residential-bridge::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-, line(casing) z16-)
=== 2955
highway-cycleway # pathtext z15- (also has line z13-)
@@ -683,14 +683,14 @@ highway-cycleway-tunnel # pathtext z15- (also has li
=== 2953
area:highway-footway # caption z15- (also has area z14-)
highway-footway # pathtext z15- (also has line z15-)
highway-footway-area # pathtext z15- (also has line z15-, area z14-)
highway-footway-bicycle # pathtext z15- (also has line z15-, line::cycleline z15-)
highway-footway-bridge # pathtext z15- (also has line z15-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-footway-tunnel # pathtext z15- (also has line z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
highway-tertiary_link # pathtext z18- (also has line z14-)
highway-tertiary_link-bridge # pathtext z18- (also has line z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary_link-tunnel # pathtext z18- (also has line z14-, line(casing) z16-)
highway-footway # pathtext z15- (also has line z15-, line::border z15-)
highway-footway-area # pathtext z15- (also has line z15-, line::border z15-, area z14-)
highway-footway-bicycle # pathtext z15- (also has line z15-, line::border z15-, line::cycleline z15-)
highway-footway-bridge # pathtext z15- (also has line z15-, line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-footway-tunnel # pathtext z15- (also has line z15-, line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
highway-tertiary_link # pathtext z18- (also has line z14-, line::border z14-)
highway-tertiary_link-bridge # pathtext z18- (also has line z14-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary_link-tunnel # pathtext z18- (also has line z14-, line::border z14-, line(casing) z16-)
=== 2950
natural-water-basin # caption z10- (also has area z1-)
@@ -707,7 +707,7 @@ waterway-stream-intermittent # pathtext z13- (also has li
waterway-weir # pathtext z15- (also has line z14-)
=== 2900
highway-ford # icon z16- and pathtext z16- (also has line z13-)
highway-ford # icon z16- and pathtext z16- (also has line z13-, line::border z14-)
natural-rock # icon z17- (also has caption(optional) z17-)
=== 2850
@@ -723,9 +723,9 @@ highway-path-horse # pathtext z15- (also has li
highway-path-tunnel # pathtext z15- (also has line z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
=== 2820
highway-steps # pathtext z16- (also has line z15-)
highway-steps-bridge # pathtext z16- (also has line z15-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-steps-tunnel # pathtext z16- (also has line z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
highway-steps # pathtext z16- (also has line z15-, line::border z15-)
highway-steps-bridge # pathtext z16- (also has line z15-, line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-steps-tunnel # pathtext z16- (also has line z15-, line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
=== 2810
highway-track # pathtext z15- (also has line z15-)
@@ -735,12 +735,12 @@ highway-track-no-access # pathtext z15- (also has li
highway-track-tunnel # pathtext z15- (also has line z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
=== 2780
highway-service # pathtext z16- (also has line z15-)
highway-service-area # pathtext z16- (also has line z15-)
highway-service-bridge # pathtext z16- (also has line z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-service-driveway # pathtext z16- (also has line z16-)
highway-service-parking_aisle # pathtext z16- (also has line z15-)
highway-service-tunnel # pathtext z16- (also has line(casing) z15-, line z15-)
highway-service # pathtext z16- (also has line z15-, line::border z15-)
highway-service-area # pathtext z16- (also has line z15-, line::border z15-)
highway-service-bridge # pathtext z16- (also has line z15-, line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-service-driveway # pathtext z16- (also has line z16-, line::border z16-)
highway-service-parking_aisle # pathtext z16- (also has line z15-, line::border z15-)
highway-service-tunnel # pathtext z16- (also has line z15-, line::border z15-, line(casing) z15-)
piste:type-downhill # pathtext z15- (also has line z14-)
piste:type-downhill-advanced # pathtext z15- (also has line z14-)
piste:type-downhill-easy # pathtext z15- (also has line z14-)
@@ -823,9 +823,9 @@ attraction-historic # icon z17- (also has captio
attraction-maze # icon z17- (also has caption(optional) z17-)
attraction-roller_coaster # icon z17- (also has caption(optional) z17-)
highway-construction # pathtext z15- (also has line z13-)
highway-living_street # pathtext z14- (also has line z12-)
highway-living_street-bridge # pathtext z14- (also has line z12-)
highway-living_street-tunnel # pathtext z14- (also has line z12-, line(casing) z16-)
highway-living_street # pathtext z14- (also has line z12-, line::border z14-)
highway-living_street-bridge # pathtext z14- (also has line z12-, line::border z14-)
highway-living_street-tunnel # pathtext z14- (also has line z12-, line::border z14-, line(casing) z16-)
landuse-plant_nursery # icon z17- (also has caption(optional) z17-, area z12-)
leisure-bowling_alley # icon z17- (also has caption(optional) z17-)
leisure-garden # icon z16- (also has caption(optional) z16-, area z12-)
@@ -892,9 +892,9 @@ barrier-yes # icon z16- (also has captio
leisure-dog_park # icon z16- (also has caption(optional) z16-, area z15-)
=== 2300
highway-busway # pathtext z16- (also has line z15-)
highway-busway-bridge # pathtext z16- (also has line z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-busway-tunnel # pathtext z16- (also has line(casing) z15-, line z15-)
highway-busway # pathtext z16- (also has line z15-, line::border z15-)
highway-busway-bridge # pathtext z16- (also has line z15-, line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-busway-tunnel # pathtext z16- (also has line z15-, line::border z15-, line(casing) z15-)
=== 2250
amenity-clinic # icon z17- (also has caption(optional) z17-, area z13-)
@@ -1162,7 +1162,7 @@ amenity-nursing_home # icon z17- (also has captio
amenity-prison # icon z17- (also has caption(optional) z17-, area z12-)
amenity-social_facility # icon z17- (also has caption(optional) z17-, area z15-)
amenity-waste_transfer_station # icon z17- (also has caption(optional) z18-, area z13-)
highway-ladder # icon z17- and pathtext z17- (also has line z15-)
highway-ladder # icon z17- and pathtext z17- (also has line z15-, line::border z15-)
landuse-farmland # caption z15- (also has area z10-)
landuse-garages # caption z15- (also has area z13-)
landuse-orchard # caption z15- (also has area z12-)

View File

@@ -161,11 +161,22 @@
@path: #8E4E1D;
@path_expert: #3D2617;
@bridleway: #3D361E;
@motorway0_border: #C26E00;
@motorway1_border: #D87A00;
@trunk0_border: #DA8816;
@trunk1_border: #DA8F2B;
@primary0_border: #DDA546;
@primary1_border: #E1A93A;
@primary2_border: #E1AF4E;
@secondary0_border: #E6BA51;
@secondary1_border: #E6C068;
@minor_road_border: #000000;
/* 5.2 Bridges */
@bridge_background: #FCF1DE;
@bridge_casing: #E1D4BE;
@bridge_minor_road_border: #E3D9C8;
/* 5.3 Tunnels */

View File

@@ -97,8 +97,8 @@ amenity-recycling-centre # area z15- (also has icon z
amenity-social_facility # area z15- (also has icon z17-, caption(optional) z17-)
amenity-vehicle_inspection # area z15- (also has icon z16-, caption(optional) z16-)
emergency-mountain_rescue # area z13- (also has icon z12-, caption(optional) z12-)
highway-pedestrian-area # area z14- (also has line z13-, pathtext z14-)
highway-pedestrian-square # area z14- (also has line z13-, pathtext z14-)
highway-pedestrian-area # area z14- (also has line z13-, line::border z14-, pathtext z14-)
highway-pedestrian-square # area z14- (also has line z13-, line::border z14-, pathtext z14-)
highway-rest_area # area z13- (also has icon z14-, caption(optional) z15-)
highway-services # area z13- (also has icon z14-, caption(optional) z14-)
landuse-garages # area z13- (also has caption z15-)
@@ -111,7 +111,7 @@ tourism-information-office # area z15- (also has icon z
tourism-information-visitor_centre # area z13- (also has icon z13-, caption(optional) z14-)
=== 170
highway-footway-area # area z14- (also has line z11-, pathtext z13-)
highway-footway-area # area z14- (also has line z11-, line::border z15-, pathtext z13-)
leisure-track-area # area z15- (also has caption z16-)
=== 160

View File

@@ -47,10 +47,10 @@ power-line::dash # line::dash z13- (also has
power-minor_line::dash # line::dash z15- (also has line z15-)
=== 340
highway-ladder # line z12- (also has icon z16-, pathtext z17-)
highway-steps # line z12- (also has pathtext z13-)
highway-steps-bridge # line z12- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-steps-tunnel # line z12- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
highway-ladder # line z12- (also has line::border z15-, icon z16-, pathtext z17-)
highway-steps # line z12- (also has line::border z15-, pathtext z13-)
highway-steps-bridge # line z12- (also has line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-steps-tunnel # line z12- (also has line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
hwtag-oneway::arrows # line::arrows z15-
waterway-weir # line z14- (also has pathtext z15-)
=== 330
@@ -75,23 +75,23 @@ railway-tram-bridge # line z13-
railway-tram-tunnel # line z13-
=== 320
highway-motorway # line z6- (also has pathtext z10-, shield::shield z10-)
highway-motorway-bridge # line z6- (also has line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway-tunnel # line z6- (also has line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-trunk # line z6- (also has pathtext z10-, shield::shield z10-)
highway-trunk-bridge # line z6- (also has line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk-tunnel # line z6- (also has line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-motorway # line z6- (also has line::border z8-, pathtext z10-, shield::shield z10-)
highway-motorway-bridge # line z6- (also has line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway-tunnel # line z6- (also has line::border z8-, line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-trunk # line z6- (also has line::border z8-, pathtext z10-, shield::shield z10-)
highway-trunk-bridge # line z6- (also has line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk-tunnel # line z6- (also has line::border z8-, line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-world_level # line z4-9
highway-world_towns_level # line z6-9
=== 310
# highway-motorway-tunnel # line(casing) z12- (also has line z6-, pathtext z10-, shield::shield z10-)
# highway-trunk-tunnel # line(casing) z12- (also has line z6-, pathtext z10-, shield::shield z10-)
# highway-motorway-tunnel # line(casing) z12- (also has line z6-, line::border z8-, pathtext z10-, shield::shield z10-)
# highway-trunk-tunnel # line(casing) z12- (also has line z6-, line::border z8-, pathtext z10-, shield::shield z10-)
# === 309
highway-primary # line z8- (also has pathtext z10-, shield::shield z10-)
highway-primary-bridge # line z8- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary-tunnel # line z8- (also has line(casing) z14-, pathtext z10-, shield::shield z10-)
highway-primary # line z8- (also has line::border z10-, pathtext z10-, shield::shield z10-)
highway-primary-bridge # line z8- (also has line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary-tunnel # line z8- (also has line::border z10-, line(casing) z14-, pathtext z10-, shield::shield z10-)
railway-rail-branch::dash # line::dash z15- (also has line z10-)
railway-rail-branch-bridge::dash # line::dash z15- (also has line z10-, line::bridgeblack z16-, line::bridgewhite z13-)
railway-rail-branch-tunnel::dash # line::dash z15- (also has line z10-, line(casing) z14-)
@@ -106,7 +106,7 @@ railway-rail-tourism-bridge::dash # line::dash z15- (also has
railway-rail-tourism-tunnel::dash # line::dash z15- (also has line z10-, line(casing) z14-, pathtext z14-)
=== 290
# highway-primary-tunnel # line(casing) z14- (also has line z8-, pathtext z10-, shield::shield z10-)
# highway-primary-tunnel # line(casing) z14- (also has line z8-, line::border z10-, pathtext z10-, shield::shield z10-)
# === 289
railway-rail-branch # line z10- (also has line::dash z15-)
@@ -129,88 +129,88 @@ railway-rail-tourism-tunnel # line z10- (also has line::
# railway-rail-tourism-tunnel # line(casing) z14- (also has line z10-, line::dash z15-, pathtext z14-)
# === 279
highway-secondary # line z10- (also has pathtext z10-, shield::shield z12-)
highway-secondary-bridge # line z10- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary-tunnel # line z10- (also has line(casing) z16-, pathtext z10-, shield::shield z12-)
highway-secondary # line z10- (also has line::border z10-, pathtext z10-, shield::shield z12-)
highway-secondary-bridge # line z10- (also has line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary-tunnel # line z10- (also has line::border z10-, line(casing) z16-, pathtext z10-, shield::shield z12-)
=== 270
# highway-secondary-tunnel # line(casing) z16- (also has line z10-, pathtext z10-, shield::shield z12-)
# highway-secondary-tunnel # line(casing) z16- (also has line z10-, line::border z10-, pathtext z10-, shield::shield z12-)
# === 269
highway-tertiary # line z11- (also has pathtext z12-, shield::shield z13-)
highway-tertiary-bridge # line z11- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary-tunnel # line z11- (also has line(casing) z16-, pathtext z12-, shield::shield z13-)
highway-unclassified # line z11- (also has pathtext z13-)
highway-unclassified-area # line z11- (also has pathtext z13-)
highway-unclassified-bridge # line z11- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-)
highway-unclassified-tunnel # line z11- (also has line(casing) z16-, pathtext z13-)
highway-tertiary # line z11- (also has line::border z11-, pathtext z12-, shield::shield z13-)
highway-tertiary-bridge # line z11- (also has line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary-tunnel # line z11- (also has line::border z11-, line(casing) z16-, pathtext z12-, shield::shield z13-)
highway-unclassified # line z11- (also has line::border z13-, pathtext z13-)
highway-unclassified-area # line z11- (also has line::border z13-, pathtext z13-)
highway-unclassified-bridge # line z11- (also has line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-)
highway-unclassified-tunnel # line z11- (also has line::border z13-, line(casing) z16-, pathtext z13-)
=== 250
# highway-tertiary-tunnel # line(casing) z16- (also has line z11-, pathtext z12-, shield::shield z13-)
# highway-unclassified-tunnel # line(casing) z16- (also has line z11-, pathtext z13-)
# highway-tertiary-tunnel # line(casing) z16- (also has line z11-, line::border z11-, pathtext z12-, shield::shield z13-)
# highway-unclassified-tunnel # line(casing) z16- (also has line z11-, line::border z13-, pathtext z13-)
# === 249
highway-living_street # line z12- (also has pathtext z14-)
highway-living_street-bridge # line z12- (also has pathtext z14-)
highway-living_street-tunnel # line z12- (also has line(casing) z16-, pathtext z14-)
highway-residential # line z12- (also has pathtext z13-, shield::shield z15-)
highway-residential-area # line z12- (also has pathtext z13-, shield::shield z15-)
highway-residential-bridge # line z12- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-residential-tunnel # line z12- (also has line(casing) z16-, pathtext z13-, shield::shield z15-)
highway-road # line z12- (also has pathtext z14-)
highway-road-bridge # line z12- (also has line::bridgeblack z16-, line::bridgewhite z16-, pathtext z14-)
highway-road-tunnel # line z12- (also has pathtext z14-)
highway-living_street # line z12- (also has line::border z14-, pathtext z14-)
highway-living_street-bridge # line z12- (also has line::border z14-, pathtext z14-)
highway-living_street-tunnel # line z12- (also has line::border z14-, line(casing) z16-, pathtext z14-)
highway-residential # line z12- (also has line::border z14-, pathtext z13-, shield::shield z15-)
highway-residential-area # line z12- (also has line::border z14-, pathtext z13-, shield::shield z15-)
highway-residential-bridge # line z12- (also has line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-residential-tunnel # line z12- (also has line::border z14-, line(casing) z16-, pathtext z13-, shield::shield z15-)
highway-road # line z12- (also has line::border z14-, pathtext z14-)
highway-road-bridge # line z12- (also has line::border z14-, line::bridgeblack z16-, line::bridgewhite z16-, pathtext z14-)
highway-road-tunnel # line z12- (also has line::border z14-, pathtext z14-)
=== 230
# highway-living_street-tunnel # line(casing) z16- (also has line z12-, pathtext z14-)
# highway-residential-tunnel # line(casing) z16- (also has line z12-, pathtext z13-, shield::shield z15-)
# highway-living_street-tunnel # line(casing) z16- (also has line z12-, line::border z14-, pathtext z14-)
# highway-residential-tunnel # line(casing) z16- (also has line z12-, line::border z14-, pathtext z13-, shield::shield z15-)
# === 229
highway-motorway_link # line z10- (also has pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge # line z10- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-motorway_link-tunnel # line z10- (also has line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link # line z10- (also has pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge # line z10- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-trunk_link-tunnel # line z10- (also has line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link # line z10- (also has line::border z11-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge # line z10- (also has line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-motorway_link-tunnel # line z10- (also has line::border z11-, line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link # line z10- (also has line::border z11-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge # line z10- (also has line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-trunk_link-tunnel # line z10- (also has line::border z11-, line(casing) z13-, pathtext z10-, shield::shield z10-)
=== 228
# highway-motorway_link-tunnel # line(casing) z13- (also has line z10-, pathtext z10-, shield::shield z10-)
# highway-trunk_link-tunnel # line(casing) z13- (also has line z10-, pathtext z10-, shield::shield z10-)
# highway-motorway_link-tunnel # line(casing) z13- (also has line z10-, line::border z11-, pathtext z10-, shield::shield z10-)
# highway-trunk_link-tunnel # line(casing) z13- (also has line z10-, line::border z11-, pathtext z10-, shield::shield z10-)
# === 227
highway-primary_link # line z11- (also has pathtext z11-, shield::shield z11-)
highway-primary_link-bridge # line z11- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-primary_link-tunnel # line z11- (also has line(casing) z14-, pathtext z11-, shield::shield z11-)
highway-primary_link # line z11- (also has line::border z13-, pathtext z11-, shield::shield z11-)
highway-primary_link-bridge # line z11- (also has line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-primary_link-tunnel # line z11- (also has line::border z13-, line(casing) z14-, pathtext z11-, shield::shield z11-)
=== 226
# highway-primary_link-tunnel # line(casing) z14- (also has line z11-, pathtext z11-, shield::shield z11-)
# highway-primary_link-tunnel # line(casing) z14- (also has line z11-, line::border z13-, pathtext z11-, shield::shield z11-)
# === 225
highway-secondary_link # line z13- (also has pathtext z16-)
highway-secondary_link-bridge # line z13- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z16-)
highway-secondary_link-tunnel # line z13- (also has line(casing) z16-, pathtext z16-)
highway-secondary_link # line z13- (also has line::border z13-, pathtext z16-)
highway-secondary_link-bridge # line z13- (also has line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z16-)
highway-secondary_link-tunnel # line z13- (also has line::border z13-, line(casing) z16-, pathtext z16-)
=== 224
# highway-secondary_link-tunnel # line(casing) z16- (also has line z13-, pathtext z16-)
highway-tertiary_link # line z14- (also has pathtext z18-)
highway-tertiary_link-bridge # line z14- (also has line::bridgeblack z14-, line::bridgewhite z14-, pathtext z18-)
highway-tertiary_link-tunnel # line z14- (also has line(casing) z16-, pathtext z18-)
# highway-secondary_link-tunnel # line(casing) z16- (also has line z13-, line::border z13-, pathtext z16-)
highway-tertiary_link # line z14- (also has line::border z14-, pathtext z18-)
highway-tertiary_link-bridge # line z14- (also has line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z18-)
highway-tertiary_link-tunnel # line z14- (also has line::border z14-, line(casing) z16-, pathtext z18-)
=== 223
highway-busway # line z15- (also has pathtext z16-)
highway-busway-bridge # line z15- (also has line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-busway-tunnel # line z15- (also has line(casing) z15-, pathtext z16-)
highway-service # line z13- (also has pathtext z16-)
highway-service-area # line z13- (also has pathtext z16-)
highway-service-bridge # line z13- (also has line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-service-driveway # line z16- (also has pathtext z16-)
highway-service-parking_aisle # line z15- (also has pathtext z16-)
highway-service-tunnel # line z13- (also has line(casing) z15-, pathtext z16-)
# highway-tertiary_link-tunnel # line(casing) z16- (also has line z14-, pathtext z18-)
highway-busway # line z15- (also has line::border z15-, pathtext z16-)
highway-busway-bridge # line z15- (also has line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-busway-tunnel # line z15- (also has line::border z15-, line(casing) z15-, pathtext z16-)
highway-service # line z13- (also has line::border z15-, pathtext z16-)
highway-service-area # line z13- (also has line::border z15-, pathtext z16-)
highway-service-bridge # line z13- (also has line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-service-driveway # line z16- (also has line::border z16-, pathtext z16-)
highway-service-parking_aisle # line z15- (also has line::border z15-, pathtext z16-)
highway-service-tunnel # line z13- (also has line::border z15-, line(casing) z15-, pathtext z16-)
# highway-tertiary_link-tunnel # line(casing) z16- (also has line z14-, line::border z14-, pathtext z18-)
=== 222
# highway-busway-tunnel # line(casing) z15- (also has line z15-, pathtext z16-)
# highway-service-tunnel # line(casing) z15- (also has line z13-, pathtext z16-)
# highway-busway-tunnel # line(casing) z15- (also has line z15-, line::border z15-, pathtext z16-)
# highway-service-tunnel # line(casing) z15- (also has line z13-, line::border z15-, pathtext z16-)
railway-light_rail::dash # line::dash z16- (also has line z13-)
railway-light_rail-bridge::dash # line::dash z16- (also has line z13-, line::bridgeblack z16-, line::bridgewhite z13-)
railway-rail::dash # line::dash z15- (also has line z10-)
@@ -229,11 +229,11 @@ railway-subway::dash # line::dash z16- (also has
railway-subway-bridge::dash # line::dash z16- (also has line z13-, line::bridgeblack z16-, line::bridgewhite z13-)
=== 221
highway-footway-bicycle # line z11- (also has line::cycleline z13-, pathtext z13-)
highway-footway-bicycle # line z11- (also has line::border z15-, line::cycleline z13-, pathtext z13-)
highway-path-bicycle # line z11- (also has line::cycleline z12-, pathtext z13-)
=== 220
highway-footway-bicycle::cycleline # line::cycleline z13- (also has line z11-, pathtext z13-)
highway-footway-bicycle::cycleline # line::cycleline z13- (also has line z11-, line::border z15-, pathtext z13-)
highway-path-bicycle::cycleline # line::cycleline z12- (also has line z11-, pathtext z13-)
=== 219
@@ -266,23 +266,23 @@ railway-subway-bridge # line z13- (also has line::
# railway-rail-utility-tunnel # line(casing) z14- (also has line z12-, line::dash z16-)
# === 209
highway-ford # line z13- (also has icon z14-, pathtext z16-)
highway-pedestrian # line z13- (also has pathtext z14-)
highway-pedestrian-area # line z13- and area z14- (also has pathtext z14-)
highway-pedestrian-bridge # line z13- (also has line::bridgeblack z14-, line::bridgewhite z13-, pathtext z14-)
highway-pedestrian-square # line z13- and area z14- (also has pathtext z14-)
highway-pedestrian-tunnel # line z13- (also has line(casing) z16-, pathtext z14-)
highway-ford # line z13- (also has line::border z14-, icon z14-, pathtext z16-)
highway-pedestrian # line z13- (also has line::border z14-, pathtext z14-)
highway-pedestrian-area # line z13- and area z14- (also has line::border z14-, pathtext z14-)
highway-pedestrian-bridge # line z13- (also has line::border z14-, line::bridgeblack z14-, line::bridgewhite z13-, pathtext z14-)
highway-pedestrian-square # line z13- and area z14- (also has line::border z14-, pathtext z14-)
highway-pedestrian-tunnel # line z13- (also has line::border z14-, line(casing) z16-, pathtext z14-)
=== 200
# highway-pedestrian-tunnel # line(casing) z16- (also has line z13-, pathtext z14-)
# highway-pedestrian-tunnel # line(casing) z16- (also has line z13-, line::border z14-, pathtext z14-)
# === 199
highway-bridleway # line z11- (also has pathtext z13-)
highway-bridleway-bridge # line z11- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-bridleway-tunnel # line z11- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
highway-footway # line z11- (also has pathtext z13-)
highway-footway-area # line z11- and area z14- (also has pathtext z13-)
highway-footway-crossing # line z16-
highway-footway # line z11- (also has line::border z15-, pathtext z13-)
highway-footway-area # line z11- and area z14- (also has line::border z15-, pathtext z13-)
highway-footway-crossing # line z16- (also has line::border z16-)
highway-path # line z11- (also has pathtext z13-)
highway-path-difficult # line z11- (also has pathtext z13-)
highway-path-expert # line z11- (also has pathtext z13-)
@@ -292,7 +292,7 @@ highway-track-area # line z11- (also has pathte
highway-track-bridge # line z11- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-track-no-access # line z11- (also has pathtext z13-)
highway-track-tunnel # line z11- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
=== 180
=== 190
highway-construction # line z11- (also has pathtext z15-)
leisure-track # line z15- (also has caption z16-)
@@ -307,54 +307,173 @@ railway-miniature-tunnel # line z13-
railway-preserved # line z13-
railway-preserved-bridge # line z13- (also has line::bridgeblack z16-, line::bridgewhite z15-)
railway-preserved-tunnel # line z13-
=== 160
railway-turntable # line z17-
=== 180
highway-footway-bridge # line z11- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-footway-sidewalk # line z13-
highway-footway-tunnel # line z11- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
highway-footway-bridge # line z11- (also has line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-footway-sidewalk # line z13- (also has line::border z16-)
highway-footway-tunnel # line z11- (also has line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
highway-path-bridge # line z11- (also has line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-path-horse # line z11- (also has pathtext z13-)
highway-path-tunnel # line z11- (also has line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
=== 155
=== 170
highway-bridleway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z11-, line::tunnelCasing z17-, pathtext z13-)
highway-cycleway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z11-, line::tunnelCasing z17-, pathtext z13-)
highway-footway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z11-, line::tunnelCasing z17-, pathtext z13-)
highway-footway-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z11-, line::border z15-, line::tunnelCasing z17-, pathtext z13-)
highway-path-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z11-, line::tunnelCasing z17-, pathtext z13-)
highway-steps-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z12-, line::tunnelCasing z17-, pathtext z13-)
highway-steps-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z12-, line::border z15-, line::tunnelCasing z17-, pathtext z13-)
highway-track-tunnel::tunnelBackground # line::tunnelBackground z17- (also has line z11-, line::tunnelCasing z17-, pathtext z13-)
=== 154
=== 169
highway-bridleway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z11-, line::tunnelBackground z17-, pathtext z13-)
highway-cycleway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z11-, line::tunnelBackground z17-, pathtext z13-)
highway-footway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z11-, line::tunnelBackground z17-, pathtext z13-)
highway-footway-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z11-, line::border z15-, line::tunnelBackground z17-, pathtext z13-)
highway-path-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z11-, line::tunnelBackground z17-, pathtext z13-)
highway-steps-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z12-, line::tunnelBackground z17-, pathtext z13-)
highway-steps-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z12-, line::border z15-, line::tunnelBackground z17-, pathtext z13-)
highway-track-tunnel::tunnelCasing # line::tunnelCasing z17- (also has line z11-, line::tunnelBackground z17-, pathtext z13-)
=== 168
highway-motorway::border # line::border z8- (also has line z6-, pathtext z10-, shield::shield z10-)
highway-trunk::border # line::border z8- (also has line z6-, pathtext z10-, shield::shield z10-)
=== 163
highway-primary::border # line::border z10- (also has line z8-, pathtext z10-, shield::shield z10-)
=== 162
highway-secondary::border # line::border z10- (also has line z10-, pathtext z10-, shield::shield z12-)
=== 161
highway-motorway_link::border # line::border z11- (also has line z10-, pathtext z10-, shield::shield z10-)
highway-trunk_link::border # line::border z11- (also has line z10-, pathtext z10-, shield::shield z10-)
=== 160
highway-primary_link::border # line::border z13- (also has line z11-, pathtext z11-, shield::shield z11-)
=== 159
highway-secondary_link::border # line::border z13- (also has line z13-, pathtext z16-)
=== 158
highway-motorway-bridge::border # line::border z8- (also has line z6-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk-bridge::border # line::border z8- (also has line z6-, line::bridgeblack z13-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
=== 157
highway-primary-bridge::border # line::border z10- (also has line z8-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
=== 156
highway-secondary-bridge::border # line::border z10- (also has line z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
=== 155
highway-motorway_link-bridge::border # line::border z11- (also has line z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::border # line::border z11- (also has line z10-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
=== 154
highway-primary_link-bridge::border # line::border z13- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
=== 153
highway-secondary_link-bridge::border # line::border z13- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z16-)
=== 152
highway-motorway-tunnel::border # line::border z8- (also has line z6-, line(casing) z12-, pathtext z10-, shield::shield z10-)
highway-trunk-tunnel::border # line::border z8- (also has line z6-, line(casing) z12-, pathtext z10-, shield::shield z10-)
=== 151
highway-primary-tunnel::border # line::border z10- (also has line z8-, line(casing) z14-, pathtext z10-, shield::shield z10-)
=== 150
highway-secondary-tunnel::border # line::border z10- (also has line z10-, line(casing) z16-, pathtext z10-, shield::shield z12-)
=== 149
highway-motorway_link-tunnel::border # line::border z11- (also has line z10-, line(casing) z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-tunnel::border # line::border z11- (also has line z10-, line(casing) z13-, pathtext z10-, shield::shield z10-)
=== 148
highway-primary_link-tunnel::border # line::border z13- (also has line z11-, line(casing) z14-, pathtext z11-, shield::shield z11-)
=== 147
highway-secondary_link-tunnel::border # line::border z13- (also has line z13-, line(casing) z16-, pathtext z16-)
=== 146
highway-busway::border # line::border z15- (also has line z15-, pathtext z16-)
highway-living_street::border # line::border z14- (also has line z12-, pathtext z14-)
highway-residential::border # line::border z14- (also has line z12-, pathtext z13-, shield::shield z15-)
highway-residential-area::border # line::border z14- (also has line z12-, pathtext z13-, shield::shield z15-)
highway-road::border # line::border z14- (also has line z12-, pathtext z14-)
highway-service::border # line::border z15- (also has line z13-, pathtext z16-)
highway-service-area::border # line::border z15- (also has line z13-, pathtext z16-)
highway-service-driveway::border # line::border z16- (also has line z16-, pathtext z16-)
highway-service-parking_aisle::border # line::border z15- (also has line z15-, pathtext z16-)
highway-tertiary::border # line::border z11- (also has line z11-, pathtext z12-, shield::shield z13-)
highway-tertiary-bridge::border # line::border z11- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link::border # line::border z14- (also has line z14-, pathtext z18-)
highway-unclassified::border # line::border z13- (also has line z11-, pathtext z13-)
highway-unclassified-area::border # line::border z13- (also has line z11-, pathtext z13-)
=== 145
highway-footway::border # line::border z15- (also has line z11-, pathtext z13-)
highway-footway-area::border # line::border z15- (also has line z11-, area z14-, pathtext z13-)
highway-footway-bicycle::border # line::border z15- (also has line z11-, line::cycleline z13-, pathtext z13-)
highway-footway-crossing::border # line::border z16- (also has line z16-)
highway-footway-sidewalk::border # line::border z16- (also has line z13-)
highway-ford::border # line::border z14- (also has line z13-, icon z14-, pathtext z16-)
highway-ladder::border # line::border z15- (also has line z12-, icon z16-, pathtext z17-)
highway-pedestrian::border # line::border z14- (also has line z13-, pathtext z14-)
highway-pedestrian-area::border # line::border z14- (also has line z13-, area z14-, pathtext z14-)
highway-pedestrian-square::border # line::border z14- (also has line z13-, area z14-, pathtext z14-)
highway-steps::border # line::border z15- (also has line z12-, pathtext z13-)
=== 144
highway-busway-bridge::border # line::border z15- (also has line z15-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-living_street-bridge::border # line::border z14- (also has line z12-, pathtext z14-)
highway-residential-bridge::border # line::border z14- (also has line z12-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::border # line::border z14- (also has line z12-, line::bridgeblack z16-, line::bridgewhite z16-, pathtext z14-)
highway-service-bridge::border # line::border z15- (also has line z13-, line::bridgeblack z15-, line::bridgewhite z15-, pathtext z16-)
highway-tertiary_link-bridge::border # line::border z14- (also has line z14-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z18-)
highway-unclassified-bridge::border # line::border z13- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-, pathtext z13-)
=== 143
highway-footway-bridge::border # line::border z15- (also has line z11-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
highway-pedestrian-bridge::border # line::border z14- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z13-, pathtext z14-)
highway-steps-bridge::border # line::border z15- (also has line z12-, line::bridgeblack z17-, line::bridgewhite z15-, pathtext z13-)
=== 142
highway-busway-tunnel::border # line::border z15- (also has line z15-, line(casing) z15-, pathtext z16-)
highway-living_street-tunnel::border # line::border z14- (also has line z12-, line(casing) z16-, pathtext z14-)
highway-residential-tunnel::border # line::border z14- (also has line z12-, line(casing) z16-, pathtext z13-, shield::shield z15-)
highway-road-tunnel::border # line::border z14- (also has line z12-, pathtext z14-)
highway-service-tunnel::border # line::border z15- (also has line z13-, line(casing) z15-, pathtext z16-)
highway-tertiary-tunnel::border # line::border z11- (also has line z11-, line(casing) z16-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-tunnel::border # line::border z14- (also has line z14-, line(casing) z16-, pathtext z18-)
highway-unclassified-tunnel::border # line::border z13- (also has line z11-, line(casing) z16-, pathtext z13-)
=== 141
highway-footway-tunnel::border # line::border z15- (also has line z11-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
highway-pedestrian-tunnel::border # line::border z14- (also has line z13-, line(casing) z16-, pathtext z14-)
highway-steps-tunnel::border # line::border z15- (also has line z12-, line::tunnelBackground z17-, line::tunnelCasing z17-, pathtext z13-)
=== 140
highway-bridleway-bridge::bridgewhite # line::bridgewhite z15- (also has line z11-, line::bridgeblack z17-, pathtext z13-)
highway-busway-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::bridgeblack z15-, pathtext z16-)
highway-busway-bridge::bridgewhite # line::bridgewhite z15- (also has line z15-, line::border z15-, line::bridgeblack z15-, pathtext z16-)
highway-cycleway-bridge::bridgewhite # line::bridgewhite z15- (also has line z11-, line::bridgeblack z17-, pathtext z13-)
highway-footway-bridge::bridgewhite # line::bridgewhite z15- (also has line z11-, line::bridgeblack z17-, pathtext z13-)
highway-motorway-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-footway-bridge::bridgewhite # line::bridgewhite z15- (also has line z11-, line::border z15-, line::bridgeblack z17-, pathtext z13-)
highway-motorway-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::border z8-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::border z11-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-path-bridge::bridgewhite # line::bridgewhite z15- (also has line z11-, line::bridgeblack z17-, pathtext z13-)
highway-pedestrian-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z14-, pathtext z14-)
highway-primary-bridge::bridgewhite # line::bridgewhite z14- (also has line z8-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::bridgeblack z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgewhite # line::bridgewhite z14- (also has line z12-, line::bridgeblack z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgewhite # line::bridgewhite z16- (also has line z12-, line::bridgeblack z16-, pathtext z14-)
highway-secondary-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z13-, line::bridgeblack z14-, pathtext z16-)
highway-service-bridge::bridgewhite # line::bridgewhite z15- (also has line z13-, line::bridgeblack z15-, pathtext z16-)
highway-steps-bridge::bridgewhite # line::bridgewhite z15- (also has line z12-, line::bridgeblack z17-, pathtext z13-)
highway-tertiary-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::bridgeblack z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z14-, line::bridgeblack z14-, pathtext z18-)
highway-pedestrian-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::border z14-, line::bridgeblack z14-, pathtext z14-)
highway-primary-bridge::bridgewhite # line::bridgewhite z14- (also has line z8-, line::border z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::border z13-, line::bridgeblack z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgewhite # line::bridgewhite z14- (also has line z12-, line::border z14-, line::bridgeblack z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgewhite # line::bridgewhite z16- (also has line z12-, line::border z14-, line::bridgeblack z16-, pathtext z14-)
highway-secondary-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::border z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z13-, line::border z13-, line::bridgeblack z14-, pathtext z16-)
highway-service-bridge::bridgewhite # line::bridgewhite z15- (also has line z13-, line::border z15-, line::bridgeblack z15-, pathtext z16-)
highway-steps-bridge::bridgewhite # line::bridgewhite z15- (also has line z12-, line::border z15-, line::bridgeblack z17-, pathtext z13-)
highway-tertiary-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::border z11-, line::bridgeblack z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z14-, line::border z14-, line::bridgeblack z14-, pathtext z18-)
highway-track-bridge::bridgewhite # line::bridgewhite z15- (also has line z11-, line::bridgeblack z17-, pathtext z13-)
highway-trunk-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::bridgeblack z14-, pathtext z13-)
highway-trunk-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::border z8-, line::bridgeblack z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgewhite # line::bridgewhite z14- (also has line z10-, line::border z11-, line::bridgeblack z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgewhite # line::bridgewhite z14- (also has line z11-, line::border z13-, line::bridgeblack z14-, pathtext z13-)
railway-abandoned-bridge::bridgewhite # line::bridgewhite z16- (also has line z13-, line::bridgeblack z16-)
railway-light_rail-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z16-, line::dash z16-)
railway-miniature-bridge::bridgewhite # line::bridgewhite z16- (also has line z13-, line::bridgeblack z16-)
@@ -368,30 +487,30 @@ railway-rail-spur-bridge::bridgewhite # line::bridgewhite z14- (al
railway-rail-tourism-bridge::bridgewhite # line::bridgewhite z13- (also has line z10-, line::bridgeblack z16-, line::dash z15-, pathtext z14-)
railway-rail-utility-bridge::bridgewhite # line::bridgewhite z13- (also has line z12-, line::bridgeblack z16-, line::dash z16-)
railway-subway-bridge::bridgewhite # line::bridgewhite z13- (also has line z13-, line::bridgeblack z16-, line::dash z16-)
=== 150
=== 135
highway-bridleway-bridge::bridgeblack # line::bridgeblack z17- (also has line z11-, line::bridgewhite z15-, pathtext z13-)
highway-busway-bridge::bridgeblack # line::bridgeblack z15- (also has line z15-, line::bridgewhite z15-, pathtext z16-)
highway-busway-bridge::bridgeblack # line::bridgeblack z15- (also has line z15-, line::border z15-, line::bridgewhite z15-, pathtext z16-)
highway-cycleway-bridge::bridgeblack # line::bridgeblack z17- (also has line z11-, line::bridgewhite z15-, pathtext z13-)
highway-footway-bridge::bridgeblack # line::bridgeblack z17- (also has line z11-, line::bridgewhite z15-, pathtext z13-)
highway-motorway-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-footway-bridge::bridgeblack # line::bridgeblack z17- (also has line z11-, line::border z15-, line::bridgewhite z15-, pathtext z13-)
highway-motorway-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::border z8-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-motorway_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::border z11-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-path-bridge::bridgeblack # line::bridgeblack z17- (also has line z11-, line::bridgewhite z15-, pathtext z13-)
highway-pedestrian-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::bridgewhite z13-, pathtext z14-)
highway-primary-bridge::bridgeblack # line::bridgeblack z14- (also has line z8-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgeblack # line::bridgeblack z14- (also has line z12-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgeblack # line::bridgeblack z16- (also has line z12-, line::bridgewhite z16-, pathtext z14-)
highway-secondary-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::bridgewhite z14-, pathtext z16-)
highway-service-bridge::bridgeblack # line::bridgeblack z15- (also has line z13-, line::bridgewhite z15-, pathtext z16-)
highway-steps-bridge::bridgeblack # line::bridgeblack z17- (also has line z12-, line::bridgewhite z15-, pathtext z13-)
highway-tertiary-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z14-, line::bridgewhite z14-, pathtext z18-)
highway-pedestrian-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::border z14-, line::bridgewhite z13-, pathtext z14-)
highway-primary-bridge::bridgeblack # line::bridgeblack z14- (also has line z8-, line::border z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-primary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::border z13-, line::bridgewhite z14-, pathtext z11-, shield::shield z11-)
highway-residential-bridge::bridgeblack # line::bridgeblack z14- (also has line z12-, line::border z14-, line::bridgewhite z14-, pathtext z13-, shield::shield z15-)
highway-road-bridge::bridgeblack # line::bridgeblack z16- (also has line z12-, line::border z14-, line::bridgewhite z16-, pathtext z14-)
highway-secondary-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::border z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z12-)
highway-secondary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z13-, line::border z13-, line::bridgewhite z14-, pathtext z16-)
highway-service-bridge::bridgeblack # line::bridgeblack z15- (also has line z13-, line::border z15-, line::bridgewhite z15-, pathtext z16-)
highway-steps-bridge::bridgeblack # line::bridgeblack z17- (also has line z12-, line::border z15-, line::bridgewhite z15-, pathtext z13-)
highway-tertiary-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::border z11-, line::bridgewhite z14-, pathtext z12-, shield::shield z13-)
highway-tertiary_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z14-, line::border z14-, line::bridgewhite z14-, pathtext z18-)
highway-track-bridge::bridgeblack # line::bridgeblack z17- (also has line z11-, line::bridgewhite z15-, pathtext z13-)
highway-trunk-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::bridgewhite z14-, pathtext z13-)
highway-trunk-bridge::bridgeblack # line::bridgeblack z13- (also has line z6-, line::border z8-, line::bridgewhite z13-, pathtext z10-, shield::shield z10-)
highway-trunk_link-bridge::bridgeblack # line::bridgeblack z14- (also has line z10-, line::border z11-, line::bridgewhite z14-, pathtext z10-, shield::shield z10-)
highway-unclassified-bridge::bridgeblack # line::bridgeblack z14- (also has line z11-, line::border z13-, line::bridgewhite z14-, pathtext z13-)
railway-abandoned-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z16-)
railway-light_rail-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z13-, line::dash z16-)
railway-miniature-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z16-)
@@ -405,14 +524,14 @@ railway-rail-spur-bridge::bridgeblack # line::bridgeblack z16- (al
railway-rail-tourism-bridge::bridgeblack # line::bridgeblack z16- (also has line z10-, line::bridgewhite z13-, line::dash z15-, pathtext z14-)
railway-rail-utility-bridge::bridgeblack # line::bridgeblack z16- (also has line z12-, line::bridgewhite z13-, line::dash z16-)
railway-subway-bridge::bridgeblack # line::bridgeblack z16- (also has line z13-, line::bridgewhite z13-, line::dash z16-)
=== 140
=== 130
building # area z14- (also has caption z17-)
building-garage # area z14- (also has caption z17-)
building-guardhouse # area z14- (also has icon z16-, caption(optional) z18-)
building-has_parts # area z14- (also has caption z17-)
building-train_station # area z14- (also has icon z17-, caption(optional) z17-)
=== 130
=== 120
piste:type-connection # line z15-
piste:type-downhill # line z12- (also has pathtext z15-)
@@ -426,38 +545,36 @@ piste:type-hike # line z12- (also has pathte
piste:type-nordic # line z12- (also has pathtext z13-)
piste:type-skitour # line z12- (also has pathtext z13-)
piste:type-sled # line z12- (also has pathtext z15-)
=== 120
=== 110
building:part # area z16-
=== 110
=== 100
barrier-retaining_wall # line z16-
man_made-embankment # line z16- (also has pathtext z18-)
natural-cliff # line z12- (also has pathtext z14-)
natural-earth_bank # line z12-
=== 100
=== 90
boundary-administrative-2 # line z2-
boundary-administrative-3 # line z4
boundary-administrative-4 # line z5-
=== 90
=== 80
man_made-cutline # line z13-
route-ferry # line z7- (also has pathtext z10-)
=== 80
=== 70
aeroway-runway # line z12-
aeroway-taxiway # line z14-
barrier-ditch # line z15-
=== 70
isoline-step_10 # line z15- (also has pathtext z16-)
isoline-step_100 # line z11- (also has pathtext z13-)
isoline-step_1000 # line z10- (also has pathtext z10-)
isoline-step_50 # line z13- (also has pathtext z15-)
isoline-step_500 # line z10- (also has pathtext z11-)
isoline-zero # line z15- (also has pathtext z15-)
=== 60
=== 50
man_made-breakwater # line z14- and area z12- (also has caption z17-)
man_made-pier # line z14- and area z12- (also has caption z17-)

View File

@@ -78,20 +78,20 @@ amenity-ferry_terminal # icon z11- (also has captio
railway-station # icon z12- (also has caption(optional) z12-)
=== 6800
highway-motorway # pathtext z10- (also has shield::shield z10-, line z6-)
highway-motorway-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line(casing) z12-)
highway-trunk # pathtext z10- (also has shield::shield z10-, line z6-)
highway-trunk-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line(casing) z12-)
highway-motorway # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-)
highway-motorway-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line(casing) z12-)
highway-trunk # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-)
highway-trunk-bridge # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel # pathtext z10- (also has shield::shield z10-, line z6-, line::border z8-, line(casing) z12-)
=== 6750
highway-motorway::shield # shield::shield z10- (also has pathtext z10-, line z6-)
highway-motorway-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line(casing) z12-)
highway-trunk::shield # shield::shield z10- (also has pathtext z10-, line z6-)
highway-trunk-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line(casing) z12-)
highway-motorway::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-)
highway-motorway-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-motorway-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line(casing) z12-)
highway-trunk::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-)
highway-trunk-bridge::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line::bridgeblack z13-, line::bridgewhite z13-)
highway-trunk-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z6-, line::border z8-, line(casing) z12-)
=== 6740
boundary-aboriginal_lands # caption z10-16 (also has line z10-, area z10-16)
@@ -259,31 +259,31 @@ railway-station-subway-yerevan # icon z13- (also has captio
railway-station-subway-yokohama # icon z13- (also has caption(optional) z14-)
=== 6250
highway-primary # pathtext z10- (also has shield::shield z10-, line z8-)
highway-primary-bridge # pathtext z10- (also has shield::shield z10-, line z8-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel # pathtext z10- (also has shield::shield z10-, line z8-, line(casing) z14-)
highway-primary # pathtext z10- (also has shield::shield z10-, line z8-, line::border z10-)
highway-primary-bridge # pathtext z10- (also has shield::shield z10-, line z8-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel # pathtext z10- (also has shield::shield z10-, line z8-, line::border z10-, line(casing) z14-)
route-ferry # pathtext z10- (also has line z7-)
=== 6200
highway-motorway_link # pathtext z10- (also has shield::shield z10-, line z10-)
highway-motorway_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line(casing) z13-)
highway-trunk_link # pathtext z10- (also has shield::shield z10-, line z10-)
highway-trunk_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line(casing) z13-)
highway-motorway_link # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-)
highway-motorway_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line(casing) z13-)
highway-trunk_link # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-)
highway-trunk_link-bridge # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel # pathtext z10- (also has shield::shield z10-, line z10-, line::border z11-, line(casing) z13-)
=== 6150
highway-motorway_link::shield # shield::shield z10- (also has pathtext z10-, line z10-)
highway-motorway_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line(casing) z13-)
highway-trunk_link::shield # shield::shield z10- (also has pathtext z10-, line z10-)
highway-trunk_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line(casing) z13-)
highway-motorway_link::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-)
highway-motorway_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-motorway_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line(casing) z13-)
highway-trunk_link::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-)
highway-trunk_link-bridge::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-trunk_link-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z10-, line::border z11-, line(casing) z13-)
=== 6140
highway-primary_link # pathtext z11- (also has shield::shield z11-, line z11-)
highway-primary_link-bridge # pathtext z11- (also has shield::shield z11-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel # pathtext z11- (also has shield::shield z11-, line z11-, line(casing) z14-)
highway-primary_link # pathtext z11- (also has shield::shield z11-, line z11-, line::border z13-)
highway-primary_link-bridge # pathtext z11- (also has shield::shield z11-, line z11-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel # pathtext z11- (also has shield::shield z11-, line z11-, line::border z13-, line(casing) z14-)
=== 6100
barrier-border_control # icon z12- (also has caption(optional) z14-)
@@ -302,9 +302,9 @@ place-locality # caption z13-
place-neighbourhood # caption z13-
=== 5700
highway-secondary # pathtext z10- (also has shield::shield z12-, line z10-)
highway-secondary-bridge # pathtext z10- (also has shield::shield z12-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel # pathtext z10- (also has shield::shield z12-, line z10-, line(casing) z16-)
highway-secondary # pathtext z10- (also has shield::shield z12-, line z10-, line::border z10-)
highway-secondary-bridge # pathtext z10- (also has shield::shield z12-, line z10-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel # pathtext z10- (also has shield::shield z12-, line z10-, line::border z10-, line(casing) z16-)
=== 5600
man_made-communications_tower # icon z12- (also has caption(optional) z13-)
@@ -581,14 +581,14 @@ shop-supermarket # icon z16- (also has captio
=== 3200
area:highway-pedestrian # caption z15- (also has area z14-)
highway-pedestrian # pathtext z14- (also has line z13-)
highway-pedestrian-area # pathtext z14- (also has line z13-, area z14-)
highway-pedestrian-bridge # pathtext z14- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z13-)
highway-pedestrian-square # pathtext z14- (also has line z13-, area z14-)
highway-pedestrian-tunnel # pathtext z14- (also has line z13-, line(casing) z16-)
highway-tertiary # pathtext z12- (also has shield::shield z13-, line z11-)
highway-tertiary-bridge # pathtext z12- (also has shield::shield z13-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel # pathtext z12- (also has shield::shield z13-, line z11-, line(casing) z16-)
highway-pedestrian # pathtext z14- (also has line z13-, line::border z14-)
highway-pedestrian-area # pathtext z14- (also has line z13-, line::border z14-, area z14-)
highway-pedestrian-bridge # pathtext z14- (also has line z13-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z13-)
highway-pedestrian-square # pathtext z14- (also has line z13-, line::border z14-, area z14-)
highway-pedestrian-tunnel # pathtext z14- (also has line z13-, line::border z14-, line(casing) z16-)
highway-tertiary # pathtext z12- (also has shield::shield z13-, line z11-, line::border z11-)
highway-tertiary-bridge # pathtext z12- (also has shield::shield z13-, line z11-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel # pathtext z12- (also has shield::shield z13-, line z11-, line::border z11-, line(casing) z16-)
natural-strait # caption z13- (also has line z11-)
natural-water # caption z10- (also has area z1-)
natural-water-pond # caption z10- (also has area z1-)
@@ -600,10 +600,10 @@ waterway-dam # pathtext z15- (also has li
waterway-river # pathtext z11- (also has line z10-)
=== 3150
highway-unclassified # pathtext z13- (also has line z11-)
highway-unclassified-area # pathtext z13- (also has line z11-)
highway-unclassified-bridge # pathtext z13- (also has line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-unclassified-tunnel # pathtext z13- (also has line z11-, line(casing) z16-)
highway-unclassified # pathtext z13- (also has line z11-, line::border z13-)
highway-unclassified-area # pathtext z13- (also has line z11-, line::border z13-)
highway-unclassified-bridge # pathtext z13- (also has line z11-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-unclassified-tunnel # pathtext z13- (also has line z11-, line::border z13-, line(casing) z16-)
=== 3100
amenity-water_point # icon z12- (also has caption(optional) z14-)
@@ -635,46 +635,46 @@ aerialway-mixed_lift # pathtext z15- (also has li
aerialway-platter # pathtext z15- (also has line z13-, line::dash z13-)
aerialway-rope_tow # pathtext z15- (also has line z13-, line::dash z13-)
aerialway-t-bar # pathtext z15- (also has line z13-, line::dash z13-)
highway-residential # pathtext z13- (also has shield::shield z15-, line z12-)
highway-residential-area # pathtext z13- (also has shield::shield z15-, line z12-)
highway-residential-bridge # pathtext z13- (also has shield::shield z15-, line z12-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel # pathtext z13- (also has shield::shield z15-, line z12-, line(casing) z16-)
highway-road # pathtext z14- (also has line z12-)
highway-road-bridge # pathtext z14- (also has line z12-, line::bridgeblack z16-, line::bridgewhite z16-)
highway-road-tunnel # pathtext z14- (also has line z12-)
highway-secondary_link # pathtext z16- (also has line z13-)
highway-secondary_link-bridge # pathtext z16- (also has line z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary_link-tunnel # pathtext z16- (also has line z13-, line(casing) z16-)
highway-residential # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-)
highway-residential-area # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-)
highway-residential-bridge # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel # pathtext z13- (also has shield::shield z15-, line z12-, line::border z14-, line(casing) z16-)
highway-road # pathtext z14- (also has line z12-, line::border z14-)
highway-road-bridge # pathtext z14- (also has line z12-, line::border z14-, line::bridgeblack z16-, line::bridgewhite z16-)
highway-road-tunnel # pathtext z14- (also has line z12-, line::border z14-)
highway-secondary_link # pathtext z16- (also has line z13-, line::border z13-)
highway-secondary_link-bridge # pathtext z16- (also has line z13-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary_link-tunnel # pathtext z16- (also has line z13-, line::border z13-, line(casing) z16-)
=== 3000
highway-primary::shield # shield::shield z10- (also has pathtext z10-, line z8-)
highway-primary-bridge::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z8-, line(casing) z14-)
highway-primary::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::border z10-)
highway-primary-bridge::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary-tunnel::shield # shield::shield z10- (also has pathtext z10-, line z8-, line::border z10-, line(casing) z14-)
=== 2975
highway-primary_link::shield # shield::shield z11- (also has pathtext z11-, line z11-)
highway-primary_link-bridge::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel::shield # shield::shield z11- (also has pathtext z11-, line z11-, line(casing) z14-)
highway-primary_link::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::border z13-)
highway-primary_link-bridge::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::border z13-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-primary_link-tunnel::shield # shield::shield z11- (also has pathtext z11-, line z11-, line::border z13-, line(casing) z14-)
=== 2970
highway-secondary::shield # shield::shield z12- (also has pathtext z10-, line z10-)
highway-secondary-bridge::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel::shield # shield::shield z12- (also has pathtext z10-, line z10-, line(casing) z16-)
highway-secondary::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::border z10-)
highway-secondary-bridge::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::border z10-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-secondary-tunnel::shield # shield::shield z12- (also has pathtext z10-, line z10-, line::border z10-, line(casing) z16-)
=== 2965
highway-tertiary::shield # shield::shield z13- (also has pathtext z12-, line z11-)
highway-tertiary-bridge::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel::shield # shield::shield z13- (also has pathtext z12-, line z11-, line(casing) z16-)
highway-tertiary::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::border z11-)
highway-tertiary-bridge::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::border z11-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary-tunnel::shield # shield::shield z13- (also has pathtext z12-, line z11-, line::border z11-, line(casing) z16-)
=== 2960
barrier-city_wall # pathtext z16- (also has line z14-)
historic-citywalls # pathtext z16- (also has line z14-)
=== 2957
highway-residential::shield # shield::shield z15- (also has pathtext z13-, line z12-)
highway-residential-area::shield # shield::shield z15- (also has pathtext z13-, line z12-)
highway-residential-bridge::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel::shield # shield::shield z15- (also has pathtext z13-, line z12-, line(casing) z16-)
highway-residential::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-)
highway-residential-area::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-)
highway-residential-bridge::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-residential-tunnel::shield # shield::shield z15- (also has pathtext z13-, line z12-, line::border z14-, line(casing) z16-)
=== 2955
highway-cycleway # pathtext z13- (also has line z11-)
@@ -683,14 +683,14 @@ highway-cycleway-tunnel # pathtext z13- (also has li
=== 2953
area:highway-footway # caption z15- (also has area z14-)
highway-footway # pathtext z13- (also has line z11-)
highway-footway-area # pathtext z13- (also has line z11-, area z14-)
highway-footway-bicycle # pathtext z13- (also has line z11-, line::cycleline z13-)
highway-footway-bridge # pathtext z13- (also has line z11-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-footway-tunnel # pathtext z13- (also has line z11-, line::tunnelBackground z17-, line::tunnelCasing z17-)
highway-tertiary_link # pathtext z18- (also has line z14-)
highway-tertiary_link-bridge # pathtext z18- (also has line z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary_link-tunnel # pathtext z18- (also has line z14-, line(casing) z16-)
highway-footway # pathtext z13- (also has line z11-, line::border z15-)
highway-footway-area # pathtext z13- (also has line z11-, line::border z15-, area z14-)
highway-footway-bicycle # pathtext z13- (also has line z11-, line::border z15-, line::cycleline z13-)
highway-footway-bridge # pathtext z13- (also has line z11-, line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-footway-tunnel # pathtext z13- (also has line z11-, line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
highway-tertiary_link # pathtext z18- (also has line z14-, line::border z14-)
highway-tertiary_link-bridge # pathtext z18- (also has line z14-, line::border z14-, line::bridgeblack z14-, line::bridgewhite z14-)
highway-tertiary_link-tunnel # pathtext z18- (also has line z14-, line::border z14-, line(casing) z16-)
=== 2950
natural-water-basin # caption z10- (also has area z1-)
@@ -707,7 +707,7 @@ waterway-stream-intermittent # pathtext z13- (also has li
waterway-weir # pathtext z15- (also has line z14-)
=== 2900
highway-ford # icon z14- and pathtext z16- (also has line z13-)
highway-ford # icon z14- and pathtext z16- (also has line z13-, line::border z14-)
natural-rock # icon z14- (also has caption(optional) z17-)
=== 2850
@@ -723,9 +723,9 @@ highway-path-horse # pathtext z13- (also has li
highway-path-tunnel # pathtext z13- (also has line z11-, line::tunnelBackground z17-, line::tunnelCasing z17-)
=== 2820
highway-steps # pathtext z13- (also has line z12-)
highway-steps-bridge # pathtext z13- (also has line z12-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-steps-tunnel # pathtext z13- (also has line z12-, line::tunnelBackground z17-, line::tunnelCasing z17-)
highway-steps # pathtext z13- (also has line z12-, line::border z15-)
highway-steps-bridge # pathtext z13- (also has line z12-, line::border z15-, line::bridgeblack z17-, line::bridgewhite z15-)
highway-steps-tunnel # pathtext z13- (also has line z12-, line::border z15-, line::tunnelBackground z17-, line::tunnelCasing z17-)
=== 2810
highway-track # pathtext z13- (also has line z11-)
@@ -735,12 +735,12 @@ highway-track-no-access # pathtext z13- (also has li
highway-track-tunnel # pathtext z13- (also has line z11-, line::tunnelBackground z17-, line::tunnelCasing z17-)
=== 2780
highway-service # pathtext z16- (also has line z13-)
highway-service-area # pathtext z16- (also has line z13-)
highway-service-bridge # pathtext z16- (also has line z13-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-service-driveway # pathtext z16- (also has line z16-)
highway-service-parking_aisle # pathtext z16- (also has line z15-)
highway-service-tunnel # pathtext z16- (also has line z13-, line(casing) z15-)
highway-service # pathtext z16- (also has line z13-, line::border z15-)
highway-service-area # pathtext z16- (also has line z13-, line::border z15-)
highway-service-bridge # pathtext z16- (also has line z13-, line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-service-driveway # pathtext z16- (also has line z16-, line::border z16-)
highway-service-parking_aisle # pathtext z16- (also has line z15-, line::border z15-)
highway-service-tunnel # pathtext z16- (also has line z13-, line::border z15-, line(casing) z15-)
piste:type-downhill # pathtext z15- (also has line z12-)
piste:type-downhill-advanced # pathtext z15- (also has line z12-)
piste:type-downhill-easy # pathtext z15- (also has line z12-)
@@ -823,9 +823,9 @@ attraction-historic # icon z17- (also has captio
attraction-maze # icon z17- (also has caption(optional) z17-)
attraction-roller_coaster # icon z17- (also has caption(optional) z17-)
highway-construction # pathtext z15- (also has line z11-)
highway-living_street # pathtext z14- (also has line z12-)
highway-living_street-bridge # pathtext z14- (also has line z12-)
highway-living_street-tunnel # pathtext z14- (also has line z12-, line(casing) z16-)
highway-living_street # pathtext z14- (also has line z12-, line::border z14-)
highway-living_street-bridge # pathtext z14- (also has line z12-, line::border z14-)
highway-living_street-tunnel # pathtext z14- (also has line z12-, line::border z14-, line(casing) z16-)
landuse-plant_nursery # icon z17- (also has caption(optional) z17-, area z12-)
leisure-bowling_alley # icon z17- (also has caption(optional) z17-)
leisure-garden # icon z16- (also has caption(optional) z16-, area z12-)
@@ -892,9 +892,9 @@ barrier-yes # icon z16- (also has captio
leisure-dog_park # icon z16- (also has caption(optional) z16-, area z15-)
=== 2300
highway-busway # pathtext z16- (also has line z15-)
highway-busway-bridge # pathtext z16- (also has line z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-busway-tunnel # pathtext z16- (also has line(casing) z15-, line z15-)
highway-busway # pathtext z16- (also has line z15-, line::border z15-)
highway-busway-bridge # pathtext z16- (also has line z15-, line::border z15-, line::bridgeblack z15-, line::bridgewhite z15-)
highway-busway-tunnel # pathtext z16- (also has line z15-, line::border z15-, line(casing) z15-)
=== 2250
amenity-clinic # icon z17- (also has caption(optional) z17-, area z13-)
@@ -1163,7 +1163,7 @@ amenity-nursing_home # icon z17- (also has captio
amenity-prison # icon z17- (also has caption(optional) z17-, area z12-)
amenity-social_facility # icon z17- (also has caption(optional) z17-, area z15-)
amenity-waste_transfer_station # icon z17- (also has caption(optional) z18-, area z13-)
highway-ladder # icon z16- and pathtext z17- (also has line z12-)
highway-ladder # icon z16- and pathtext z17- (also has line z12-, line::border z15-)
landuse-farmland # caption z15- (also has area z10-)
landuse-garages # caption z15- (also has area z13-)
landuse-orchard # caption z15- (also has area z12-)

View File

@@ -722,6 +722,7 @@ line|z16-[railway=disused],
line|z16-[railway=preserved],
line|z16-[railway=miniature],
line|z16-[railway=abandoned],
line|z17-[railway=turntable],
{color: @railway; opacity: 0.6;}
line|z13-[railway=light_rail][!tunnel],
@@ -921,6 +922,9 @@ line|z16-[railway=construction],
line|z16-[railway=disused]
{width: 1;dashes: 1.8,5.4;}
line|z17-[railway=turntable],
{width: 1.6;}
/* 9.2 Rail tunnel 14-22 ZOOM */
line|z14-[railway=rail][tunnel?],

View File

@@ -282,6 +282,7 @@ railway-miniature-tunnel # line z16-
railway-preserved # line z16-
railway-preserved-bridge # line z16- (also has line::bridgeblack z16-, line::bridgewhite z16-)
railway-preserved-tunnel # line z16-
railway-turntable # line z17-
=== 120
highway-motorway-bridge::bridgewhite # line::bridgewhite z13- (also has line z6-, line::bridgeblack z13-, line(casing) z14-, pathtext z10-, shield::shield z10-)

View File

@@ -32,7 +32,7 @@
*/
- (NSString*) valueAsString {
auto const outString = measurement_utils::ToStringPrecision(self.value, self.value >= 10.0 ? 0 : 1);
auto const outString = measurement_utils::ToStringPrecision(self.value, 0);
return [NSString stringWithUTF8String:outString.c_str()];
}

View File

@@ -3,7 +3,7 @@
"search" = "Search";
/* Used in home screen quick actions. */
"bookmarks_and_tracks" = "Bookmarks and Tracks";
"bookmarks_and_tracks" = "Favourites";
/* Used in home screen quick actions. */
"route" = "Route";

View File

@@ -69,16 +69,16 @@
"add_new_set" = "Add a New List";
/* Add Bookmark list dialog - hint when the list name is empty */
"bookmark_set_name" = "Bookmark List Name";
"bookmark_set_name" = "List Name";
/* "Bookmark Lists" dialog title */
"bookmark_sets" = "Bookmark Lists";
"bookmark_sets" = "Favourite Lists";
/* Should be used in the bookmarks-only context, see bookmarks_and_tracks if tracks are also implied. */
"bookmarks" = "Bookmarks";
"bookmarks" = "Places";
/* "Bookmarks and Tracks" dialog title, also sync it with iphone/plist.txt */
"bookmarks_and_tracks" = "Bookmarks and Tracks";
"bookmarks_and_tracks" = "Favourites";
/* Default bookmark list name */
"core_my_places" = "My Places";
@@ -160,16 +160,16 @@
/* Search category for RV facilities; any changes should be duplicated in categories.txt @category_rv! */
"category_rv" = "RV Facilities";
"share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks; please open them in CoMaps. If you don't have it installed you can download it here: https://www.comaps.app/download/\n\nEnjoy travelling with CoMaps!";
"share_bookmarks_email_body" = "Hello!\n\nAttached are my saved places; please open them in CoMaps. If you don't have it installed you can download it here: https://www.comaps.app/download/\n\nEnjoy travelling with CoMaps!";
/* message title of loading file */
"load_kmz_title" = "Loading Bookmarks";
"load_kmz_title" = "Loading Favourites";
/* Kmz file successful loading */
"load_kmz_successful" = "Bookmarks loaded successfully! You can find them on the map or on the Bookmarks Manager screen.";
"load_kmz_successful" = "Favourites loaded successfully! You can find them on the map or on the Favourites Manager screen.";
/* Kml file loading failed */
"load_kmz_failed" = "Failed to load bookmarks. The file may be corrupted or defective.";
"load_kmz_failed" = "Failed to load favourites. The file may be corrupted or defective.";
/* resource for context menu */
"edit" = "Edit";
@@ -405,7 +405,7 @@
"routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination.";
/* bookmark button text */
"bookmark" = "bookmark";
"bookmark" = "place";
"save" = "Save";
"create" = "create";
@@ -704,10 +704,10 @@
"placepage_more_button" = "More";
"book_button" = "Book";
"placepage_call_button" = "Call";
"placepage_edit_bookmark_button" = "Edit Bookmark";
"placepage_bookmark_name_hint" = "Bookmark Name";
"placepage_edit_bookmark_button" = "Edit Saved Place";
"placepage_bookmark_name_hint" = "Place Name";
"placepage_personal_notes_hint" = "Personal notes (text or html)";
"placepage_delete_bookmark_button" = "Delete Bookmark";
"placepage_delete_bookmark_button" = "Delete Saved Place";
"editor_edits_sent_message" = "Your note will be sent to OpenStreetMap";
"editor_comment_hint" = "Comment…";
"editor_reset_edits_message" = "Discard all local changes?";
@@ -796,7 +796,7 @@
"bookmarks_create_new_group" = "Create a new list";
/* Bookmark categories screen, button that opens folder selection dialog to import KML/KMZ/GPX/KMB files */
"bookmarks_import" = "Import Bookmarks and Tracks";
"bookmarks_import" = "Import Favourites";
"downloader_hide_screen" = "Hide Screen";
"downloader_percent" = "%@ (%@ of %@)";
"downloader_process" = "Downloading %@…";
@@ -897,8 +897,8 @@
"dialog_routing_system_error_carplay" = "An error occurred. Please restart the application";
"dialog_routing_rebuild_from_current_location_carplay" = "The route will be rebuilt from your current location";
"dialog_routing_rebuild_for_vehicle_carplay" = "The route will be converted into an automobile one";
"not_all_shown_bookmarks_carplay" = "Not all bookmarks are shown";
"switch_to_phone_bookmarks_carplay" = "Switch to the phone to see all bookmarks";
"not_all_shown_bookmarks_carplay" = "Not all saved places are shown";
"switch_to_phone_bookmarks_carplay" = "Switch to the phone to see all saved places";
"ok" = "OK";
"speedcams_alert_title_carplay_1" = "Speedсams";
"speedcams_alert_title_carplay_2" = "Speed warnings";
@@ -1030,7 +1030,7 @@
"button_layer_outdoor" = "Outdoors";
/* Bookmark categories screen, button that opens share dialog to export all bookmarks and tracks */
"bookmarks_export" = "Export all Bookmarks and Tracks";
"bookmarks_export" = "Export all Favourites";
/* Text for the editing the Track's color button. */
"change_color" = "Change Color";
@@ -1052,7 +1052,7 @@
"enable_icloud_synchronization_title" = "Enable iCloud Synchronization";
/* Message for the "Enable iCloud Synchronization" alert. */
"enable_icloud_synchronization_message" = "iCloud synchronization is an experimental feature under development. Make sure that you have made a backup of all your bookmarks and tracks.";
"enable_icloud_synchronization_message" = "iCloud synchronization is an experimental feature under development. Make sure that you have made a backup of all your saved places and tracks.";
/* Title for the "iCloud Is Disabled" alert. */
"icloud_disabled_title" = "iCloud Is Disabled";
@@ -1115,7 +1115,7 @@
"continue_recording" = "Continue Recording";
/* Title for the alert when saving a track recording. */
"track_recording_alert_title" = "Save into Bookmarks and Tracks?";
"track_recording_alert_title" = "Save into Favourites?";
/* Message for the toast when saving the track recording is finished but nothing to save. */
"track_recording_toast_nothing_to_save" = "Track is empty - nothing to save";

View File

@@ -7,7 +7,7 @@
"search" = "Search";
/* Used in home screen quick actions. */
"bookmarks_and_tracks" = "Bookmarks and Tracks";
"bookmarks_and_tracks" = "Favorites";
/* Used in home screen quick actions. */
"route" = "Route";

View File

@@ -73,16 +73,16 @@
"add_new_set" = "Add a New List";
/* Add Bookmark list dialog - hint when the list name is empty */
"bookmark_set_name" = "Bookmark List Name";
"bookmark_set_name" = "List Name";
/* "Bookmark Lists" dialog title */
"bookmark_sets" = "Bookmark Lists";
"bookmark_sets" = "Favorite Lists";
/* Should be used in the bookmarks-only context, see bookmarks_and_tracks if tracks are also implied. */
"bookmarks" = "Bookmarks";
"bookmarks" = "Places";
/* "Bookmarks and Tracks" dialog title, also sync it with iphone/plist.txt */
"bookmarks_and_tracks" = "Bookmarks and Tracks";
"bookmarks_and_tracks" = "Favorites";
/* Default bookmark list name */
"core_my_places" = "My Places";
@@ -172,16 +172,16 @@
/********** Other translations **********/
"share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks; please open them in CoMaps. If you don't have it installed you can download it here: https://www.comaps.app/download/\n\nEnjoy travelling with CoMaps!";
"share_bookmarks_email_body" = "Hello!\n\nAttached are my saved places; please open them in CoMaps. If you don't have it installed you can download it here: https://www.comaps.app/download/\n\nEnjoy travelling with CoMaps!";
/* message title of loading file */
"load_kmz_title" = "Loading Bookmarks";
"load_kmz_title" = "Loading Favorites";
/* Kmz file successful loading */
"load_kmz_successful" = "Bookmarks loaded successfully! You can find them on the map or on the Bookmarks Manager screen.";
"load_kmz_successful" = "Favorites loaded successfully! You can find them on the map or on the Favorites Manager screen.";
/* Kml file loading failed */
"load_kmz_failed" = "Failed to load bookmarks. The file may be corrupted or defective.";
"load_kmz_failed" = "Failed to load favorites. The file may be corrupted or defective.";
/* resource for context menu */
"edit" = "Edit";
@@ -416,7 +416,7 @@
"routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination.";
/* bookmark button text */
"bookmark" = "bookmark";
"bookmark" = "place";
"save" = "Save";
"create" = "create";
@@ -723,10 +723,10 @@
"placepage_more_button" = "More";
"book_button" = "Book";
"placepage_call_button" = "Call";
"placepage_edit_bookmark_button" = "Edit Bookmark";
"placepage_bookmark_name_hint" = "Bookmark Name";
"placepage_edit_bookmark_button" = "Edit Saved Place";
"placepage_bookmark_name_hint" = "Place Name";
"placepage_personal_notes_hint" = "Personal notes (text or html)";
"placepage_delete_bookmark_button" = "Delete Bookmark";
"placepage_delete_bookmark_button" = "Delete Place";
"editor_edits_sent_message" = "Your note will be sent to OpenStreetMap";
"editor_comment_hint" = "Comment…";
"editor_reset_edits_message" = "Discard all local changes?";
@@ -817,7 +817,7 @@
"bookmarks_create_new_group" = "Create a new list";
/* Bookmark categories screen, button that opens folder selection dialog to import KML/KMZ/GPX/KMB files */
"bookmarks_import" = "Import Bookmarks and Tracks";
"bookmarks_import" = "Import Favorites";
"downloader_hide_screen" = "Hide Screen";
"downloader_percent" = "%@ (%@ of %@)";
"downloader_process" = "Downloading %@…";
@@ -1055,7 +1055,7 @@
"button_layer_outdoor" = "Outdoors";
/* Bookmark categories screen, button that opens share dialog to export all bookmarks and tracks */
"bookmarks_export" = "Export all Bookmarks and Tracks";
"bookmarks_export" = "Export all Favorites";
/* Text for the editing the Track's color button. */
"change_color" = "Change Color";
@@ -1140,7 +1140,7 @@
"continue_recording" = "Continue Recording";
/* Title for the alert when saving a track recording. */
"track_recording_alert_title" = "Save into Bookmarks and Tracks?";
"track_recording_alert_title" = "Save into Favorites?";
/* Message for the toast when saving the track recording is finished but nothing to save. */
"track_recording_toast_nothing_to_save" = "Track is empty - nothing to save";

View File

@@ -1054,6 +1054,7 @@
"type.railway.rail.highspeed" = "High-Speed Railway";
"type.railway.rail.tourism" = "Touristic Railway";
"type.railway.rail.main" = "Railway";
"type.railway.turntable" = "Railway Turntable";
/* Includes ordinary railway=rail w/o more specific usage= and service= tags. */
"type.railway.rail.branch" = "Railway Branch";

View File

@@ -43,8 +43,8 @@ final class InfoItemView: UIView {
addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(onInfoLabelTap)))
addGestureRecognizer(UILongPressGestureRecognizer(target: self, action: #selector(onInfoLabelLongPress(_:))))
infoLabel.lineBreakMode = .byTruncatingTail
infoLabel.numberOfLines = 1
infoLabel.lineBreakMode = .byWordWrapping
infoLabel.numberOfLines = 0
infoLabel.allowsDefaultTighteningForTruncation = true
infoLabel.isUserInteractionEnabled = false
@@ -66,17 +66,17 @@ final class InfoItemView: UIView {
accessoryButton.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([
heightAnchor.constraint(equalToConstant: Constants.viewHeight),
heightAnchor.constraint(greaterThanOrEqualToConstant: Constants.viewHeight),
iconButton.leadingAnchor.constraint(equalTo: leadingAnchor),
iconButton.centerYAnchor.constraint(equalTo: centerYAnchor),
iconButton.widthAnchor.constraint(equalToConstant: Constants.iconButtonSize),
iconButton.topAnchor.constraint(equalTo: topAnchor),
iconButton.bottomAnchor.constraint(equalTo: bottomAnchor),
iconButton.topAnchor.constraint(greaterThanOrEqualTo: topAnchor),
iconButton.bottomAnchor.constraint(lessThanOrEqualTo: bottomAnchor),
infoLabel.leadingAnchor.constraint(equalTo: iconButton.trailingAnchor),
infoLabel.topAnchor.constraint(equalTo: topAnchor),
infoLabel.bottomAnchor.constraint(equalTo: bottomAnchor),
infoLabel.topAnchor.constraint(equalTo: topAnchor, constant: Constants.infoLabelTopBottomSpacing),
infoLabel.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -Constants.infoLabelTopBottomSpacing),
infoLabel.trailingAnchor.constraint(equalTo: accessoryButton.leadingAnchor),
accessoryButton.trailingAnchor.constraint(equalTo: trailingAnchor),

View File

@@ -40,7 +40,8 @@
[bookmarks_and_tracks]
tags = ios
comment = Used in home screen quick actions.
en = Bookmarks and Tracks
en = Favorites
en-GB = Favourites
ar = الإشارات المرجعية والمسارات
az = Əlfəcinlər və qeydlər
be = Закладкі i cцежкі

View File

@@ -507,16 +507,15 @@ private:
// Implementations of "ref" parses for some countries.
class AustriaRoadShieldParser : public HighwayClassRoadShieldParser
class AustriaRoadShieldParser : public SimpleRoadShieldParser
{
public:
explicit AustriaRoadShieldParser(std::string const & baseRoadNumber, HighwayClass const & highwayClass)
: HighwayClassRoadShieldParser(baseRoadNumber, highwayClass,
{{"A", HighwayClass::Motorway, RoadShieldType::Generic_Blue_Bordered},
{"S", HighwayClass::Trunk, RoadShieldType::Generic_Blue_Bordered},
{"B", HighwayClass::Primary, RoadShieldType::Generic_Blue},
{"L", HighwayClass::Secondary, RoadShieldType::Generic_Pill_White_Bordered},
{"L", HighwayClass::Tertiary, RoadShieldType::Generic_Pill_White_Bordered}})
explicit AustriaRoadShieldParser(std::string const & baseRoadNumber)
: SimpleRoadShieldParser(baseRoadNumber, {{"A", RoadShieldType::Generic_Blue_Bordered},
{"S", RoadShieldType::Generic_Blue_Bordered},
{"B", RoadShieldType::Generic_Blue, false, true},
{"P", RoadShieldType::Generic_Pill_Red_Bordered},
{"L", RoadShieldType::Generic_Pill_White_Bordered, false, true}})
{}
};
@@ -554,9 +553,12 @@ class ItalyRoadShieldParser : public SimpleRoadShieldParser
public:
explicit ItalyRoadShieldParser(std::string const & baseRoadNumber)
: SimpleRoadShieldParser(baseRoadNumber, {{"A", RoadShieldType::Italy_Autostrada},
{"SS", RoadShieldType::Generic_Blue},
{"SR", RoadShieldType::Generic_Blue},
{"SP", RoadShieldType::Generic_Blue}})
{"T", RoadShieldType::Italy_Autostrada},
{"RA", RoadShieldType::Generic_Green_Bordered},
{"NSA", RoadShieldType::Generic_Blue_Bordered},
{"SS", RoadShieldType::Generic_Blue_Bordered},
{"SR", RoadShieldType::Generic_Blue_Bordered},
{"SP", RoadShieldType::Generic_Blue_Bordered}})
{}
};
@@ -601,6 +603,8 @@ public:
{"N", RoadShieldType::Generic_White_Bordered},
{"EN", RoadShieldType::Generic_White_Bordered},
{"R", RoadShieldType::Generic_Orange},
{"IP", RoadShieldType::Generic_Red},
{"IC", RoadShieldType::Generic_White_Bordered},
{"EM", RoadShieldType::Generic_Orange},
{"CM", RoadShieldType::Generic_Orange}})
{}
@@ -698,17 +702,15 @@ public:
{}
};
class GermanyRoadShieldParser : public HighwayClassRoadShieldParser
class GermanyRoadShieldParser : public SimpleRoadShieldParser
{
public:
explicit GermanyRoadShieldParser(std::string const & baseRoadNumber, HighwayClass const & highwayClass)
: HighwayClassRoadShieldParser(baseRoadNumber, highwayClass,
{{"A", HighwayClass::Motorway, RoadShieldType::Highway_Hexagon_Blue, false, true},
{"D", HighwayClass::Motorway, RoadShieldType::Hidden},
{"B", HighwayClass::Trunk, RoadShieldType::Generic_Orange_Bordered},
{"B", HighwayClass::Primary, RoadShieldType::Generic_Orange_Bordered},
{"L", HighwayClass::Secondary, RoadShieldType::Generic_White_Bordered},
{"K", HighwayClass::Secondary, RoadShieldType::Generic_White_Bordered}})
explicit GermanyRoadShieldParser(std::string const & baseRoadNumber)
: SimpleRoadShieldParser(baseRoadNumber, {{"A ", RoadShieldType::Highway_Hexagon_Blue, false, true},
{"D ", RoadShieldType::Hidden},
{"B ", RoadShieldType::Generic_Orange_Bordered},
{"L", RoadShieldType::Generic_White_Bordered},
{"K", RoadShieldType::Generic_White_Bordered}})
{}
};
@@ -882,7 +884,7 @@ RoadShieldsSetT GetRoadShields(std::string const & mwmName, std::string const &
if (mwmName == "India")
return IndiaRoadShieldParser(roadNumber).GetRoadShields();
if (mwmName == "Austria")
return AustriaRoadShieldParser(roadNumber, highwayClass).GetRoadShields();
return AustriaRoadShieldParser(roadNumber).GetRoadShields();
if (mwmName == "Belgium")
return BelgiumRoadShieldParser(roadNumber).GetRoadShields();
if (mwmName == "Greece")
@@ -918,7 +920,7 @@ RoadShieldsSetT GetRoadShields(std::string const & mwmName, std::string const &
if (mwmName == "France")
return FranceRoadShieldParser(roadNumber).GetRoadShields();
if (mwmName == "Germany")
return GermanyRoadShieldParser(roadNumber, highwayClass).GetRoadShields();
return GermanyRoadShieldParser(roadNumber).GetRoadShields();
if (mwmName == "Spain")
return SpainRoadShieldParser(roadNumber).GetRoadShields();
if (mwmName == "Ukraine")