mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Adds Sculpture, Statue, and Mural presets
Adds a universal Material field
This commit is contained in:
@@ -895,6 +895,9 @@ en:
|
||||
map_type:
|
||||
# map_type=*
|
||||
label: Type
|
||||
material:
|
||||
# material=*
|
||||
label: Material
|
||||
maxheight:
|
||||
# maxheight=*
|
||||
label: Max Height
|
||||
@@ -5896,6 +5899,21 @@ en:
|
||||
name: Artwork
|
||||
# 'terms: mural,sculpture,statue'
|
||||
terms: '<translate with synonyms or related terms for ''Artwork'', separated by commas>'
|
||||
tourism/artwork/mural:
|
||||
# 'tourism=artwork, artwork_type=mural'
|
||||
name: Mural
|
||||
# 'terms: fresco,wall painting'
|
||||
terms: '<translate with synonyms or related terms for ''Mural'', separated by commas>'
|
||||
tourism/artwork/sculpture:
|
||||
# 'tourism=artwork, artwork_type=sculpture'
|
||||
name: Sculpture
|
||||
# 'terms: statue,figure,carving'
|
||||
terms: '<translate with synonyms or related terms for ''Sculpture'', separated by commas>'
|
||||
tourism/artwork/statue:
|
||||
# 'tourism=artwork, artwork_type=statue'
|
||||
name: Statue
|
||||
# 'terms: sculpture,figure,carving'
|
||||
terms: '<translate with synonyms or related terms for ''Statue'', separated by commas>'
|
||||
tourism/attraction:
|
||||
# tourism=attraction
|
||||
name: Tourist Attraction
|
||||
|
||||
@@ -162,6 +162,7 @@
|
||||
"manhole": {"key": "manhole", "type": "typeCombo", "label": "Type"},
|
||||
"map_size": {"key": "map_size", "type": "typeCombo", "label": "Coverage"},
|
||||
"map_type": {"key": "map_type", "type": "typeCombo", "label": "Type"},
|
||||
"material": {"key": "material", "type": "combo", "universal": true, "label": "Material"},
|
||||
"maxheight": {"key": "maxheight", "type": "combo", "label": "Max Height", "placeholder": "4, 4.5, 5, 14'0\", 14'6\", 15'0\"", "snake_case": false},
|
||||
"maxspeed": {"key": "maxspeed", "type": "maxspeed", "label": "Speed Limit", "placeholder": "40, 50, 60..."},
|
||||
"maxspeed/advisory": {"key": "maxspeed:advisory", "type": "maxspeed", "label": "Advisory Speed Limit", "placeholder": "40, 50, 60..."},
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"key": "material",
|
||||
"type": "combo",
|
||||
"universal": true,
|
||||
"label": "Material"
|
||||
}
|
||||
@@ -891,6 +891,9 @@
|
||||
"tourism/apartment": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"tourism": "apartment"}, "name": "Guest Apartment / Condo"},
|
||||
"tourism/aquarium": {"icon": "maki-aquarium", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["fish", "sea", "water"], "tags": {"tourism": "aquarium"}, "name": "Aquarium"},
|
||||
"tourism/artwork": {"icon": "maki-art-gallery", "fields": ["name", "artwork_type", "artist"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork"}, "terms": ["mural", "sculpture", "statue"], "name": "Artwork"},
|
||||
"tourism/artwork/mural": {"icon": "maki-art-gallery", "fields": ["name", "artist"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "mural"}, "terms": ["fresco", "wall painting"], "name": "Mural"},
|
||||
"tourism/artwork/sculpture": {"icon": "maki-art-gallery", "fields": ["name", "artist", "material"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "sculpture"}, "terms": ["statue", "figure", "carving"], "name": "Sculpture"},
|
||||
"tourism/artwork/statue": {"icon": "maki-art-gallery", "fields": ["name", "artist", "material"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "statue"}, "terms": ["sculpture", "figure", "carving"], "name": "Statue"},
|
||||
"tourism/attraction": {"icon": "maki-star", "fields": ["name", "operator", "address"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "attraction"}, "name": "Tourist Attraction"},
|
||||
"tourism/camp_site": {"icon": "maki-campsite", "fields": ["name", "operator", "address", "access_simple", "capacity", "fee", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "vertex", "area"], "terms": ["tent", "rv"], "tags": {"tourism": "camp_site"}, "name": "Campground"},
|
||||
"tourism/caravan_site": {"icon": "maki-bus", "fields": ["name", "operator", "address", "capacity", "fee", "sanitary_dump_station", "power_supply", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "vertex", "area"], "terms": ["Motor Home", "Camper"], "tags": {"tourism": "caravan_site"}, "name": "RV Park"},
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"icon": "maki-art-gallery",
|
||||
"fields": [
|
||||
"name",
|
||||
"artist"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"line",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"tourism": "artwork",
|
||||
"artwork_type": "mural"
|
||||
},
|
||||
"terms": [
|
||||
"fresco",
|
||||
"wall painting"
|
||||
],
|
||||
"name": "Mural"
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"icon": "maki-art-gallery",
|
||||
"fields": [
|
||||
"name",
|
||||
"artist",
|
||||
"material"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"line",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"tourism": "artwork",
|
||||
"artwork_type": "sculpture"
|
||||
},
|
||||
"terms": [
|
||||
"statue",
|
||||
"figure",
|
||||
"carving"
|
||||
],
|
||||
"name": "Sculpture"
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"icon": "maki-art-gallery",
|
||||
"fields": [
|
||||
"name",
|
||||
"artist",
|
||||
"material"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"line",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"tourism": "artwork",
|
||||
"artwork_type": "statue"
|
||||
},
|
||||
"terms": [
|
||||
"sculpture",
|
||||
"figure",
|
||||
"carving"
|
||||
],
|
||||
"name": "Statue"
|
||||
}
|
||||
@@ -5836,6 +5836,27 @@
|
||||
"object_types": ["node", "way", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"value": "mural",
|
||||
"description": "Mural",
|
||||
"object_types": ["node", "way", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"value": "sculpture",
|
||||
"description": "Sculpture",
|
||||
"object_types": ["node", "way", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"value": "statue",
|
||||
"description": "Statue",
|
||||
"object_types": ["node", "way", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "tourism",
|
||||
"value": "attraction",
|
||||
@@ -6766,6 +6787,7 @@
|
||||
{"key": "location", "description": "Location"},
|
||||
{"key": "map_size", "description": "Coverage"},
|
||||
{"key": "map_type", "description": "Type"},
|
||||
{"key": "material", "description": "Material"},
|
||||
{"key": "maxheight", "description": "Max Height"},
|
||||
{"key": "maxspeed", "description": "Speed Limit"},
|
||||
{"key": "maxspeed:advisory", "description": "Advisory Speed Limit"},
|
||||
|
||||
Vendored
+15
@@ -2227,6 +2227,9 @@
|
||||
"map_type": {
|
||||
"label": "Type"
|
||||
},
|
||||
"material": {
|
||||
"label": "Material"
|
||||
},
|
||||
"maxheight": {
|
||||
"label": "Max Height",
|
||||
"placeholder": "4, 4.5, 5, 14'0\", 14'6\", 15'0\""
|
||||
@@ -6591,6 +6594,18 @@
|
||||
"name": "Artwork",
|
||||
"terms": "mural,sculpture,statue"
|
||||
},
|
||||
"tourism/artwork/mural": {
|
||||
"name": "Mural",
|
||||
"terms": "fresco,wall painting"
|
||||
},
|
||||
"tourism/artwork/sculpture": {
|
||||
"name": "Sculpture",
|
||||
"terms": "statue,figure,carving"
|
||||
},
|
||||
"tourism/artwork/statue": {
|
||||
"name": "Statue",
|
||||
"terms": "sculpture,figure,carving"
|
||||
},
|
||||
"tourism/attraction": {
|
||||
"name": "Tourist Attraction",
|
||||
"terms": ""
|
||||
|
||||
Reference in New Issue
Block a user