mirror of
https://github.com/FoggedLens/iD.git
synced 2026-06-05 14:38:05 +02:00
Merge branch 'master' into validation_and_change_perf
This commit is contained in:
@@ -489,6 +489,7 @@ en:
|
||||
all_tags: All tags
|
||||
all_members: All members
|
||||
all_relations: All relations
|
||||
add_to_relation: Add to a relation
|
||||
new_relation: New relation...
|
||||
choose_relation: Choose a parent relation
|
||||
role: Role
|
||||
@@ -1309,6 +1310,13 @@ en:
|
||||
title: Generic Names
|
||||
message: '{feature} has the generic name "{name}"'
|
||||
tip: "Names should be the actual, on-the-ground names of features."
|
||||
incompatible_source:
|
||||
title: Incompatible Data Sources
|
||||
google:
|
||||
feature:
|
||||
message: '{feature} lists Google as a data source'
|
||||
tip: "Google products are proprietary and must not be used as references."
|
||||
tip: "Source data must be licensed in a manner compatible with OpenStreetMap."
|
||||
many_deletions:
|
||||
title: Many Deletions
|
||||
points-lines-areas:
|
||||
@@ -1377,6 +1385,8 @@ en:
|
||||
annotation: Removed a generic name.
|
||||
remove_private_info:
|
||||
annotation: Removed private information.
|
||||
remove_proprietary_data:
|
||||
title: Remove any proprietary data
|
||||
remove_tag:
|
||||
title: Remove the tag
|
||||
annotation: Removed tag.
|
||||
|
||||
+133
-1
@@ -1,5 +1,9 @@
|
||||
{
|
||||
"dataDeprecated": [
|
||||
{
|
||||
"old": {"aerialway": "canopy"},
|
||||
"replace": {"aerialway": "zip_line"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "advertising"},
|
||||
"replace": {"advertising": "*"}
|
||||
@@ -20,10 +24,26 @@
|
||||
"old": {"amenity": "community_center"},
|
||||
"replace": {"amenity": "community_centre"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "dog_bin"},
|
||||
"replace": {"amenity": "waste_basket", "waste": "dog_excrement"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "dog_waste_bin"},
|
||||
"replace": {"amenity": "waste_basket", "waste": "dog_excrement"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "embassy"},
|
||||
"replace": {"office": "diplomatic"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "ev_charging"},
|
||||
"replace": {"amenity": "charging_station"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "fire_hydrant"},
|
||||
"replace": {"emergency": "fire_hydrant"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "firepit"},
|
||||
"replace": {"leisure": "firepit"}
|
||||
@@ -36,6 +56,26 @@
|
||||
"old": {"amenity": "garages"},
|
||||
"replace": {"landuse": "garages"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "gym"},
|
||||
"replace": {"leisure": "fitness_centre"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "hotel"},
|
||||
"replace": {"tourism": "hotel"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "kiosk"},
|
||||
"replace": {"shop": "kiosk"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "nursery"},
|
||||
"replace": {"amenity": "kindergarten"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "preschool"},
|
||||
"replace": {"amenity": "kindergarten"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "public_building"},
|
||||
"replace": {"building": "public"}
|
||||
@@ -68,6 +108,10 @@
|
||||
"old": {"amenity": "swimming_pool"},
|
||||
"replace": {"leisure": "swimming_pool"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "ticket_booth"},
|
||||
"replace": {"shop": "ticket"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "toilet"},
|
||||
"replace": {"amenity": "toilets"}
|
||||
@@ -76,6 +120,10 @@
|
||||
"old": {"amenity": "vending_machine", "vending": "news_papers"},
|
||||
"replace": {"amenity": "vending_machine", "vending": "newspapers"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "winery"},
|
||||
"replace": {"craft": "winery"}
|
||||
},
|
||||
{
|
||||
"old": {"amenity": "youth_center"},
|
||||
"replace": {"amenity": "community_centre", "community_centre:for": "juvenile"}
|
||||
@@ -84,6 +132,14 @@
|
||||
"old": {"amenity": "youth_centre"},
|
||||
"replace": {"amenity": "community_centre", "community_centre:for": "juvenile"}
|
||||
},
|
||||
{
|
||||
"old": {"barrier": "curb"},
|
||||
"replace": {"barrier": "kerb"}
|
||||
},
|
||||
{
|
||||
"old": {"barrier": "entrance"},
|
||||
"replace": {"entrance": "*"}
|
||||
},
|
||||
{
|
||||
"old": {"barrier": "wire_fence"},
|
||||
"replace": {"barrier": "fence", "fence_type": "chain"}
|
||||
@@ -124,6 +180,10 @@
|
||||
"old": {"color": "*"},
|
||||
"replace": {"colour": "$1"}
|
||||
},
|
||||
{
|
||||
"old": {"craft": "glass"},
|
||||
"replace": {"craft": "glaziery"}
|
||||
},
|
||||
{
|
||||
"old": {"crossing": "zebra"},
|
||||
"replace": {"crossing": "marked"}
|
||||
@@ -237,7 +297,7 @@
|
||||
},
|
||||
{
|
||||
"old": {"highway": "unsurfaced"},
|
||||
"replace": {"highway": "road", "incline": "unpaved"}
|
||||
"replace": {"highway": "road", "surface": "unpaved"}
|
||||
},
|
||||
{
|
||||
"old": {"kerb": "dropped"},
|
||||
@@ -283,6 +343,14 @@
|
||||
"old": {"leisure": "club"},
|
||||
"replace": {"club": "*"}
|
||||
},
|
||||
{
|
||||
"old": {"leisure": "video_arcade"},
|
||||
"replace": {"leisure": "amusement_arcade"}
|
||||
},
|
||||
{
|
||||
"old": {"man_made": "cut_line"},
|
||||
"replace": {"man_made": "cutline"}
|
||||
},
|
||||
{
|
||||
"old": {"man_made": "jetty"},
|
||||
"replace": {"highway": "footway", "man_made": "pier"}
|
||||
@@ -303,6 +371,10 @@
|
||||
"old": {"man_made": "well"},
|
||||
"replace": {"man_made": "water_well"}
|
||||
},
|
||||
{
|
||||
"old": {"man_made": "winery"},
|
||||
"replace": {"craft": "winery"}
|
||||
},
|
||||
{
|
||||
"old": {"memorial": "plate"},
|
||||
"replace": {"memorial": "plaque"}
|
||||
@@ -335,10 +407,18 @@
|
||||
"old": {"postcode": "*"},
|
||||
"replace": {"addr:postcode": "$1"}
|
||||
},
|
||||
{
|
||||
"old": {"power": "busbar"},
|
||||
"replace": {"power": "line", "line": "busbar"}
|
||||
},
|
||||
{
|
||||
"old": {"power": "sub_station"},
|
||||
"replace": {"power": "substation"}
|
||||
},
|
||||
{
|
||||
"old": {"power": "underground_cable"},
|
||||
"replace": {"power": "cable", "location": "underground"}
|
||||
},
|
||||
{
|
||||
"old": {"power_source": "*"},
|
||||
"replace": {"generator:source": "$1"}
|
||||
@@ -355,6 +435,30 @@
|
||||
"old": {"route": "ncn"},
|
||||
"replace": {"route": "bicycle", "network": "ncn"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "adult"},
|
||||
"replace": {"shop": "erotic"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "antique"},
|
||||
"replace": {"shop": "antiques"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "auto_parts"},
|
||||
"replace": {"shop": "car_parts"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "baby"},
|
||||
"replace": {"shop": "baby_goods"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "baby_care"},
|
||||
"replace": {"shop": "baby_goods"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "bags"},
|
||||
"replace": {"shop": "bag"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "betting"},
|
||||
"replace": {"shop": "bookmaker"}
|
||||
@@ -363,6 +467,10 @@
|
||||
"old": {"shop": "boutique"},
|
||||
"replace": {"shop": "clothes"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "dive"},
|
||||
"replace": {"shop": "scuba_diving"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "fashion"},
|
||||
"replace": {"shop": "clothes"}
|
||||
@@ -383,6 +491,18 @@
|
||||
"old": {"shop": "gallery"},
|
||||
"replace": {"shop": "art"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "lingerie"},
|
||||
"replace": {"shop": "clothes", "clothes": "underwear"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "luggage"},
|
||||
"replace": {"shop": "bag"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "moneylender"},
|
||||
"replace": {"shop": "money_lender"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "organic"},
|
||||
"replace": {"shop": "supermarket", "organic": "only"}
|
||||
@@ -395,6 +515,18 @@
|
||||
"old": {"shop": "real_estate"},
|
||||
"replace": {"office": "estate_agent"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "tickets"},
|
||||
"replace": {"shop": "ticket"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "underwear"},
|
||||
"replace": {"shop": "clothes", "clothes": "underwear"}
|
||||
},
|
||||
{
|
||||
"old": {"shop": "winery"},
|
||||
"replace": {"craft": "winery"}
|
||||
},
|
||||
{
|
||||
"old": {"sloped_curb": "0"},
|
||||
"replace": {"kerb": "flush"}
|
||||
|
||||
+81
-7
@@ -358,6 +358,9 @@ en:
|
||||
construction:
|
||||
# construction=*
|
||||
label: Type
|
||||
consulate:
|
||||
# consulate=*
|
||||
label: Type
|
||||
contact/webcam:
|
||||
# 'contact:webcam=*'
|
||||
label: Webcam URL
|
||||
@@ -510,6 +513,12 @@ en:
|
||||
diet_multi:
|
||||
# 'diet:=*'
|
||||
label: Diet Types
|
||||
diplomatic:
|
||||
# diplomatic=*
|
||||
label: Type
|
||||
diplomatic/services:
|
||||
# 'diplomatic:services:=*'
|
||||
label: Services
|
||||
direction:
|
||||
# direction=*
|
||||
label: Direction (Degrees Clockwise)
|
||||
@@ -632,6 +641,9 @@ en:
|
||||
label: Type
|
||||
# embankment field placeholder
|
||||
placeholder: Default
|
||||
embassy:
|
||||
# embassy=*
|
||||
label: Type
|
||||
emergency:
|
||||
# emergency=*
|
||||
label: Emergency
|
||||
@@ -1003,6 +1015,9 @@ en:
|
||||
label: Levels
|
||||
# levels field placeholder
|
||||
placeholder: '2, 4, 6...'
|
||||
liaison:
|
||||
# liaison=*
|
||||
label: Type
|
||||
lit:
|
||||
# lit=*
|
||||
label: Lit
|
||||
@@ -1582,6 +1597,11 @@ en:
|
||||
sanitary_dump_station:
|
||||
# sanitary_dump_station=*
|
||||
label: Toilet Disposal
|
||||
screen:
|
||||
# screen=*
|
||||
label: Screens
|
||||
# screen field placeholder
|
||||
placeholder: '1, 4, 8…'
|
||||
scuba_diving:
|
||||
# 'scuba_diving:=*'
|
||||
label: Services
|
||||
@@ -1938,6 +1958,9 @@ en:
|
||||
'yes': 'Yes'
|
||||
# takeaway field placeholder
|
||||
placeholder: 'Yes, No, Takeaway Only...'
|
||||
target:
|
||||
# target=*
|
||||
label: Target
|
||||
tidal:
|
||||
# tidal=*
|
||||
label: Tidal
|
||||
@@ -2262,6 +2285,11 @@ en:
|
||||
name: T-bar Lift
|
||||
# 'terms: tbar'
|
||||
terms: '<translate with synonyms or related terms for ''T-bar Lift'', separated by commas>'
|
||||
aerialway/zip_line:
|
||||
# aerialway=zip_line
|
||||
name: Zip Line
|
||||
# 'terms: aerial runway,canopy,flying fox,foefie slide,gravity propelled aerial ropeslide,Tyrolean traverse,zip wire,zip-line,zipline,zipwire'
|
||||
terms: '<translate with synonyms or related terms for ''Zip Line'', separated by commas>'
|
||||
aeroway:
|
||||
# aeroway=*
|
||||
name: Aeroway
|
||||
@@ -2473,6 +2501,11 @@ en:
|
||||
# amenity=compressed_air
|
||||
name: Compressed Air
|
||||
terms: '<translate with synonyms or related terms for ''Compressed Air'', separated by commas>'
|
||||
amenity/conference_centre:
|
||||
# amenity=conference_centre
|
||||
name: Convention Center
|
||||
# 'terms: auditorium,conference,exhibition,exposition,lecture'
|
||||
terms: '<translate with synonyms or related terms for ''Convention Center'', separated by commas>'
|
||||
amenity/courthouse:
|
||||
# amenity=courthouse
|
||||
name: Courthouse
|
||||
@@ -2517,7 +2550,11 @@ en:
|
||||
amenity/embassy:
|
||||
# amenity=embassy
|
||||
name: Embassy
|
||||
terms: '<translate with synonyms or related terms for ''Embassy'', separated by commas>'
|
||||
amenity/events_venue:
|
||||
# amenity=events_venue
|
||||
name: Events Venue
|
||||
# 'terms: banquet hall,baptism,Bar Mitzvah,Bat Mitzvah,birthdays,celebrations,conferences,confirmation,meetings,parties,party,quinceañera,reunions,weddings'
|
||||
terms: '<translate with synonyms or related terms for ''Events Venue'', separated by commas>'
|
||||
amenity/fast_food:
|
||||
# amenity=fast_food
|
||||
name: Fast Food
|
||||
@@ -3903,13 +3940,9 @@ en:
|
||||
# 'terms: hazard,bunker'
|
||||
terms: '<translate with synonyms or related terms for ''Sand Trap'', separated by commas>'
|
||||
golf/cartpath:
|
||||
# 'golf=cartpath, golf_cart=designated'
|
||||
# golf=cartpath
|
||||
name: Golf Cartpath
|
||||
terms: '<translate with synonyms or related terms for ''Golf Cartpath'', separated by commas>'
|
||||
golf/cartpath_service:
|
||||
# 'highway=service, golf=cartpath, golf_cart=designated'
|
||||
name: Golf Cartpath / Service Road
|
||||
terms: '<translate with synonyms or related terms for ''Golf Cartpath / Service Road'', separated by commas>'
|
||||
golf/driving_range:
|
||||
# 'golf=driving_range, landuse=grass'
|
||||
name: Driving Range
|
||||
@@ -3931,7 +3964,7 @@ en:
|
||||
name: Lateral Water Hazard
|
||||
terms: '<translate with synonyms or related terms for ''Lateral Water Hazard'', separated by commas>'
|
||||
golf/path:
|
||||
# 'golf=path, foot=designated'
|
||||
# golf=path
|
||||
name: Golf Walking Path
|
||||
terms: '<translate with synonyms or related terms for ''Golf Walking Path'', separated by commas>'
|
||||
golf/rough:
|
||||
@@ -4316,6 +4349,11 @@ en:
|
||||
name: Traffic Signals
|
||||
# 'terms: light,stoplight,traffic light'
|
||||
terms: '<translate with synonyms or related terms for ''Traffic Signals'', separated by commas>'
|
||||
highway/trailhead:
|
||||
# highway=trailhead
|
||||
name: Trailhead
|
||||
# 'terms: hiking,mile zero,mountain biking,mountaineering,trail endpoint,trail start,staging area,trekking'
|
||||
terms: '<translate with synonyms or related terms for ''Trailhead'', separated by commas>'
|
||||
highway/trunk:
|
||||
# highway=trunk
|
||||
name: Trunk Road
|
||||
@@ -4970,6 +5008,11 @@ en:
|
||||
# leisure=stadium
|
||||
name: Stadium
|
||||
terms: '<translate with synonyms or related terms for ''Stadium'', separated by commas>'
|
||||
leisure/swimming_area:
|
||||
# leisure=swimming_area
|
||||
name: Natural Swimming Area
|
||||
# 'terms: dive,water,aquatics'
|
||||
terms: '<translate with synonyms or related terms for ''Natural Swimming Area'', separated by commas>'
|
||||
leisure/swimming_pool:
|
||||
# leisure=swimming_pool
|
||||
name: Swimming Pool
|
||||
@@ -5439,6 +5482,22 @@ en:
|
||||
name: Coworking Space
|
||||
# 'terms: coworking,office'
|
||||
terms: '<translate with synonyms or related terms for ''Coworking Space'', separated by commas>'
|
||||
office/diplomatic:
|
||||
# office=diplomatic
|
||||
name: Diplomatic Office
|
||||
terms: '<translate with synonyms or related terms for ''Diplomatic Office'', separated by commas>'
|
||||
office/diplomatic/consulate:
|
||||
# 'office=diplomatic, diplomatic=consulate'
|
||||
name: Consulate
|
||||
terms: '<translate with synonyms or related terms for ''Consulate'', separated by commas>'
|
||||
office/diplomatic/embassy:
|
||||
# 'office=diplomatic, diplomatic=embassy'
|
||||
name: Embassy
|
||||
terms: '<translate with synonyms or related terms for ''Embassy'', separated by commas>'
|
||||
office/diplomatic/liaison:
|
||||
# 'office=diplomatic, diplomatic=liaison'
|
||||
name: Liaison Office
|
||||
terms: '<translate with synonyms or related terms for ''Liaison Office'', separated by commas>'
|
||||
office/educational_institution:
|
||||
# office=educational_institution
|
||||
name: Educational Institution
|
||||
@@ -6025,6 +6084,10 @@ en:
|
||||
name: Buffer Stop
|
||||
# 'terms: stop,halt,buffer'
|
||||
terms: '<translate with synonyms or related terms for ''Buffer Stop'', separated by commas>'
|
||||
railway/construction:
|
||||
# railway=construction
|
||||
name: Railway Under Construction
|
||||
terms: '<translate with synonyms or related terms for ''Railway Under Construction'', separated by commas>'
|
||||
railway/crossing:
|
||||
# railway=crossing
|
||||
name: Railway Crossing (Path)
|
||||
@@ -6082,6 +6145,7 @@ en:
|
||||
railway/rail:
|
||||
# railway=rail
|
||||
name: Rail
|
||||
# 'terms: rail line,railroad track,train track'
|
||||
terms: '<translate with synonyms or related terms for ''Rail'', separated by commas>'
|
||||
railway/rail/highspeed:
|
||||
# 'railway=rail, highspeed=yes'
|
||||
@@ -6318,6 +6382,11 @@ en:
|
||||
name: Clothing Store
|
||||
# 'terms: blouses,boutique,bras,clothes,dresses,fashion,pants,shirts,shorts,skirts,slacks,socks,suits,underwear'
|
||||
terms: '<translate with synonyms or related terms for ''Clothing Store'', separated by commas>'
|
||||
shop/clothes/underwear:
|
||||
# 'shop=clothes, clothes=underwear'
|
||||
name: Underwear Store
|
||||
# 'terms: boutique,bras,brassieres,briefs,boxers,fashion,lingerie,panties,slips,socks,stockings,underclothes,undergarments,underpants,undies'
|
||||
terms: '<translate with synonyms or related terms for ''Underwear Store'', separated by commas>'
|
||||
shop/coffee:
|
||||
# shop=coffee
|
||||
name: Coffee Store
|
||||
@@ -6814,6 +6883,11 @@ en:
|
||||
name: Tactile Paving
|
||||
# 'terms: blind path,detectable warning surfaces,tactile ground surface indicators,tactile walking surface indicators,truncated domes,visually impaired path'
|
||||
terms: '<translate with synonyms or related terms for ''Tactile Paving'', separated by commas>'
|
||||
telecom/data_center:
|
||||
# telecom=data_center
|
||||
name: Data Center
|
||||
# 'terms: computer systems storage,information technology,server farm,the cloud,telecommunications'
|
||||
terms: '<translate with synonyms or related terms for ''Data Center'', separated by commas>'
|
||||
tourism:
|
||||
# tourism=*
|
||||
name: Tourism
|
||||
|
||||
@@ -41,7 +41,6 @@
|
||||
"golf/driving_range",
|
||||
"golf/hole",
|
||||
"golf/cartpath",
|
||||
"golf/cartpath_service",
|
||||
"golf/path"
|
||||
]
|
||||
},
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
"golf/driving_range",
|
||||
"golf/hole",
|
||||
"golf/cartpath",
|
||||
"golf/cartpath_service",
|
||||
"golf/path"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -64,6 +64,7 @@
|
||||
"comment": {"key": "comment", "type": "textarea", "label": "Changeset Comment", "placeholder": "Brief description of your contributions (required)"},
|
||||
"communication_multi": {"key": "communication:", "type": "multiCombo", "label": "Communication Types"},
|
||||
"construction": {"key": "construction", "type": "combo", "label": "Type"},
|
||||
"consulate": {"key": "consulate", "type": "combo", "label": "Type"},
|
||||
"contact/webcam": {"key": "contact:webcam", "type": "url", "icon": "website", "label": "Webcam URL", "placeholder": "http://example.com/"},
|
||||
"content": {"key": "content", "type": "combo", "label": "Content", "options": ["silage", "water", "oil", "fuel", "slurry", "gas", "manure", "sewage"]},
|
||||
"conveying": {"key": "conveying", "type": "typeCombo", "label": "Movement Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "reversible": "Reversible"}}},
|
||||
@@ -93,6 +94,8 @@
|
||||
"devices": {"key": "devices", "type": "number", "minValue": 0, "label": "Devices", "placeholder": "1, 2, 3..."},
|
||||
"diaper": {"key": "diaper", "type": "combo", "label": "Diaper Changing Available", "options": ["yes", "no", "room", "1", "2", "3", "4", "5"]},
|
||||
"diet_multi": {"key": "diet:", "type": "multiCombo", "label": "Diet Types"},
|
||||
"diplomatic": {"key": "diplomatic", "type": "combo", "label": "Type"},
|
||||
"diplomatic/services": {"key": "diplomatic:services:", "type": "multiCombo", "label": "Services"},
|
||||
"direction_cardinal": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"N": "North", "E": "East", "S": "South", "W": "West", "NE": "Northeast", "SE": "Southeast", "SW": "Southwest", "NW": "Northwest", "NNE": "North-northeast", "ENE": "East-northeast", "ESE": "East-southeast", "SSE": "South-southeast", "SSW": "South-southwest", "WSW": "West-southwest", "WNW": "West-northwest", "NNW": "North-northwest"}}},
|
||||
"direction_clock": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"clockwise": "Clockwise", "anticlockwise": "Counterclockwise"}}},
|
||||
"direction_vertex": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}},
|
||||
@@ -110,6 +113,7 @@
|
||||
"elevation": {"key": "ele", "type": "number", "icon": "elevation", "universal": true, "label": "Elevation"},
|
||||
"email": {"key": "email", "type": "email", "placeholder": "example@example.com", "label": "Email"},
|
||||
"embankment": {"key": "embankment", "type": "typeCombo", "label": "Type", "placeholder": "Default"},
|
||||
"embassy": {"key": "embassy", "type": "combo", "label": "Type"},
|
||||
"emergency": {"key": "emergency", "type": "check", "label": "Emergency"},
|
||||
"enforcement": {"key": "enforcement", "type": "combo", "label": "Type"},
|
||||
"entrance": {"key": "entrance", "type": "typeCombo", "label": "Type"},
|
||||
@@ -192,6 +196,7 @@
|
||||
"length": {"key": "length", "type": "number", "minValue": 0, "label": "Length (Meters)"},
|
||||
"level": {"key": "level", "type": "combo", "label": "Level", "universal": true},
|
||||
"levels": {"key": "building:levels", "type": "number", "minValue": 0, "label": "Levels", "placeholder": "2, 4, 6..."},
|
||||
"liaison": {"key": "liaison", "type": "combo", "label": "Type"},
|
||||
"lit": {"key": "lit", "type": "check", "label": "Lit"},
|
||||
"location_pool": {"key": "location", "type": "typeCombo", "label": "Location", "strings": {"options": {"outdoor": "Outdoor", "indoor": "Indoor", "roof": "Rooftop"}}},
|
||||
"location": {"key": "location", "type": "combo", "label": "Location"},
|
||||
@@ -286,6 +291,7 @@
|
||||
"sac_scale": {"key": "sac_scale", "type": "combo", "label": "Hiking Difficulty", "placeholder": "Mountain Hiking, Alpine Hiking...", "strings": {"options": {"hiking": "T1: Hiking", "mountain_hiking": "T2: Mountain Hiking", "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", "alpine_hiking": "T4: Alpine Hiking", "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"}}},
|
||||
"salt": {"key": "salt", "type": "check", "label": "Salt"},
|
||||
"sanitary_dump_station": {"key": "sanitary_dump_station", "type": "check", "label": "Toilet Disposal"},
|
||||
"screen": {"key": "screen", "type": "number", "label": "Screens", "placeholder": "1, 4, 8…", "minValue": 0},
|
||||
"scuba_diving": {"key": "scuba_diving:", "type": "multiCombo", "label": "Services", "options": ["repair", "courses", "rental", "filling", "air_filling", "nitrox_filling", "trimix_filling", "oxygen_filling"]},
|
||||
"seamark/beacon_isolated_danger/shape": {"key": "seamark:beacon_isolated_danger:shape", "type": "combo", "label": "Shape"},
|
||||
"seamark/beacon_lateral/category": {"key": "seamark:beacon_lateral:category", "type": "combo", "label": "Category", "strings": {"options": {"port": "Port", "starboard": "Starboard", "waterway_left": "Waterway Left", "waterway_right": "Waterway Right", "danger_left": "Danger Left", "danger_right": "Danger Right"}}},
|
||||
@@ -343,6 +349,7 @@
|
||||
"switch": {"key": "switch", "type": "combo", "label": "Type", "strings": {"options": {"mechanical": "Mechanical", "circuit_breaker": "Circuit Breaker", "disconnector": "Disconnector", "earthing": "Earthing"}}},
|
||||
"tactile_paving": {"key": "tactile_paving", "type": "check", "label": "Tactile Paving"},
|
||||
"takeaway": {"key": "takeaway", "type": "combo", "label": "Takeaway", "placeholder": "Yes, No, Takeaway Only...", "strings": {"options": {"yes": "Yes", "no": "No", "only": "Takeaway Only"}}},
|
||||
"target": {"key": "target", "type": "combo", "label": "Target"},
|
||||
"tidal": {"key": "tidal", "type": "check", "label": "Tidal"},
|
||||
"to": {"key": "to", "type": "text", "label": "To"},
|
||||
"toilets/disposal": {"key": "toilets:disposal", "type": "combo", "label": "Disposal", "strings": {"options": {"flush": "Flush", "pitlatrine": "Pit/Latrine", "chemical": "Chemical", "bucket": "Bucket"}}},
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "consulate",
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "diplomatic",
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "diplomatic:services:",
|
||||
"type": "multiCombo",
|
||||
"label": "Services"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "embassy",
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "liaison",
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"key": "screen",
|
||||
"type": "number",
|
||||
"label": "Screens",
|
||||
"placeholder": "1, 4, 8…",
|
||||
"minValue": 0
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "target",
|
||||
"type": "combo",
|
||||
"label": "Target"
|
||||
}
|
||||
+467
-456
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"icon": "fas-tram",
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
],
|
||||
"fields": [
|
||||
"name",
|
||||
"oneway_yes",
|
||||
"aerialway/occupancy",
|
||||
"aerialway/capacity",
|
||||
"aerialway/duration",
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"icon": "maki-aerialway",
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
],
|
||||
"fields": [
|
||||
"name",
|
||||
"oneway_yes",
|
||||
"aerialway/occupancy",
|
||||
"aerialway/capacity",
|
||||
"aerialway/duration",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
],
|
||||
"fields": [
|
||||
"name",
|
||||
"oneway_yes",
|
||||
"aerialway/capacity",
|
||||
"aerialway/duration"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"fields": [
|
||||
"name",
|
||||
"oneway_yes",
|
||||
"aerialway/duration",
|
||||
"maxweight",
|
||||
"access_simple"
|
||||
],
|
||||
"terms": [
|
||||
"aerial runway",
|
||||
"canopy",
|
||||
"flying fox",
|
||||
"foefie slide",
|
||||
"gravity propelled aerial ropeslide",
|
||||
"Tyrolean traverse",
|
||||
"zip wire",
|
||||
"zip-line",
|
||||
"zipline",
|
||||
"zipwire"
|
||||
],
|
||||
"tags": {
|
||||
"aerialway": "zip_line"
|
||||
},
|
||||
"name": "Zip Line"
|
||||
}
|
||||
@@ -20,5 +20,6 @@
|
||||
"tags": {
|
||||
"amenity": "embassy"
|
||||
},
|
||||
"searchable": false,
|
||||
"name": "Embassy"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-beer",
|
||||
"icon": "fas-beer",
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-school",
|
||||
"icon": "fas-child",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -3,16 +3,17 @@
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
"screen",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"moreFields": [
|
||||
"air_conditioning",
|
||||
"website",
|
||||
"phone",
|
||||
"email",
|
||||
"fax",
|
||||
"phone",
|
||||
"website",
|
||||
"wheelchair"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"icon": "fas-user-tie",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"building_area",
|
||||
"address",
|
||||
"website",
|
||||
"internet_access"
|
||||
],
|
||||
"moreFields" : [
|
||||
"air_conditioning",
|
||||
"email",
|
||||
"fax",
|
||||
"internet_access/fee",
|
||||
"internet_access/ssid",
|
||||
"phone",
|
||||
"smoking",
|
||||
"wheelchair"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "conference_centre"
|
||||
},
|
||||
"terms": [
|
||||
"auditorium",
|
||||
"conference",
|
||||
"exhibition",
|
||||
"exposition",
|
||||
"lecture"
|
||||
],
|
||||
"name": "Convention Center"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-courthouse",
|
||||
"icon": "fas-gavel",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"icon": "fas-users",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"building_area",
|
||||
"address",
|
||||
"website",
|
||||
"internet_access"
|
||||
],
|
||||
"moreFields" : [
|
||||
"air_conditioning",
|
||||
"email",
|
||||
"fax",
|
||||
"internet_access/fee",
|
||||
"internet_access/ssid",
|
||||
"phone",
|
||||
"smoking",
|
||||
"wheelchair"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "events_venue"
|
||||
},
|
||||
"terms": [
|
||||
"banquet hall",
|
||||
"baptism",
|
||||
"Bar Mitzvah",
|
||||
"Bat Mitzvah",
|
||||
"birthdays",
|
||||
"celebrations",
|
||||
"conferences",
|
||||
"confirmation",
|
||||
"meetings",
|
||||
"parties",
|
||||
"party",
|
||||
"quinceañera",
|
||||
"reunions",
|
||||
"weddings"
|
||||
],
|
||||
"name": "Events Venue"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-bank",
|
||||
"icon": "far-credit-card",
|
||||
"fields": [
|
||||
"name",
|
||||
"brand",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-attraction",
|
||||
"icon": "fas-person-booth",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-vending_machine",
|
||||
"icon": "far-newspaper",
|
||||
"fields": [
|
||||
"vending",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-waste-basket",
|
||||
"icon": "fas-dumpster",
|
||||
"fields": [
|
||||
"operator",
|
||||
"collection_times"
|
||||
|
||||
@@ -7,6 +7,5 @@
|
||||
"barrier": "entrance"
|
||||
},
|
||||
"name": "Entrance",
|
||||
"searchable": false,
|
||||
"replacement": "entrance"
|
||||
"searchable": false
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-attraction",
|
||||
"icon": "fas-film",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,14 +1,24 @@
|
||||
{
|
||||
"icon": "maki-golf",
|
||||
"fields": [
|
||||
"{golf/path}"
|
||||
"{golf/path}",
|
||||
"maxspeed"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"golf": "cartpath"
|
||||
},
|
||||
"addTags": {
|
||||
"golf": "cartpath",
|
||||
"golf_cart": "designated"
|
||||
"golf_cart": "designated",
|
||||
"highway": "service"
|
||||
},
|
||||
"removeTags": {
|
||||
"golf": "cartpath",
|
||||
"golf_cart": "designated",
|
||||
"highway": "service"
|
||||
},
|
||||
"reference": {
|
||||
"key": "golf",
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"icon": "maki-golf",
|
||||
"fields": [
|
||||
"{golf/path}",
|
||||
"maxspeed"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "service",
|
||||
"golf": "cartpath",
|
||||
"golf_cart": "designated"
|
||||
},
|
||||
"reference": {
|
||||
"key": "golf",
|
||||
"value": "cartpath"
|
||||
},
|
||||
"name": "Golf Cartpath / Service Road"
|
||||
}
|
||||
@@ -11,7 +11,16 @@
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"golf": "path"
|
||||
},
|
||||
"addTags": {
|
||||
"golf": "path",
|
||||
"highway": "path",
|
||||
"foot": "designated"
|
||||
},
|
||||
"removeTags": {
|
||||
"golf": "path",
|
||||
"highway": "path",
|
||||
"foot": "designated"
|
||||
},
|
||||
"reference": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-hospital",
|
||||
"icon": "fas-baby",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-hospital",
|
||||
"icon": "fas-vial",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-hospital",
|
||||
"icon": "fas-eye",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-hospital",
|
||||
"icon": "fas-comment",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"icon": "fas-hiking",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"elevation",
|
||||
"access_simple",
|
||||
"fee",
|
||||
"opening_hours"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "trailhead"
|
||||
},
|
||||
"terms": [
|
||||
"hiking",
|
||||
"mile zero",
|
||||
"mountain biking",
|
||||
"mountaineering",
|
||||
"trail endpoint",
|
||||
"trail start",
|
||||
"staging area",
|
||||
"trekking"
|
||||
],
|
||||
"name": "Trailhead"
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"icon": "maki-commercial",
|
||||
"icon": "fas-code",
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"website"
|
||||
"website",
|
||||
"internet_access"
|
||||
],
|
||||
"moreFields": [
|
||||
"payment_multi",
|
||||
"internet_access",
|
||||
"internet_access/fee",
|
||||
"internet_access/ssid",
|
||||
"smoking",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "fas-chess-knight",
|
||||
"icon": "fas-chess-pawn",
|
||||
"geometry": [
|
||||
"point"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"icon": "maki-swimming",
|
||||
"fields": [
|
||||
"name",
|
||||
"access_simple",
|
||||
"supervised",
|
||||
"fee",
|
||||
"lit"
|
||||
],
|
||||
"moreFields": [
|
||||
"opening_hours",
|
||||
"operator"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"dive",
|
||||
"water",
|
||||
"aquatics"
|
||||
],
|
||||
"tags": {
|
||||
"leisure": "swimming_area"
|
||||
},
|
||||
"name": "Natural Swimming Area"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-swimming",
|
||||
"icon": "fas-swimming-pool",
|
||||
"fields": [
|
||||
"name",
|
||||
"access_simple",
|
||||
@@ -9,8 +9,9 @@
|
||||
"swimming_pool"
|
||||
],
|
||||
"moreFields": [
|
||||
"operator",
|
||||
"address"
|
||||
"address",
|
||||
"opening_hours",
|
||||
"operator"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-suitcase",
|
||||
"icon": "fas-drafting-compass",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"icon": "maki-embassy",
|
||||
"fields": [
|
||||
"name",
|
||||
"diplomatic",
|
||||
"country",
|
||||
"target",
|
||||
"diplomatic/services",
|
||||
"{office}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "diplomatic"
|
||||
},
|
||||
"terms": [],
|
||||
"name": "Diplomatic Office"
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"icon": "maki-embassy",
|
||||
"fields": [
|
||||
"name",
|
||||
"consulate",
|
||||
"{office/diplomatic}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "diplomatic",
|
||||
"diplomatic": "consulate"
|
||||
},
|
||||
"reference": {
|
||||
"key": "diplomatic",
|
||||
"value": "consulate"
|
||||
},
|
||||
"terms": [],
|
||||
"name": "Consulate"
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"icon": "maki-embassy",
|
||||
"fields": [
|
||||
"name",
|
||||
"embassy",
|
||||
"{office/diplomatic}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "diplomatic",
|
||||
"diplomatic": "embassy"
|
||||
},
|
||||
"reference": {
|
||||
"key": "diplomatic",
|
||||
"value": "embassy"
|
||||
},
|
||||
"terms": [],
|
||||
"name": "Embassy"
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"icon": "maki-embassy",
|
||||
"fields": [
|
||||
"name",
|
||||
"liaison",
|
||||
"{office/diplomatic}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "diplomatic",
|
||||
"diplomatic": "liaison"
|
||||
},
|
||||
"reference": {
|
||||
"key": "diplomatic",
|
||||
"value": "liaison"
|
||||
},
|
||||
"terms": [],
|
||||
"name": "Liaison Office"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-library",
|
||||
"icon": "fas-newspaper",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-suitcase",
|
||||
"icon": "fas-stamp",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-suitcase",
|
||||
"icon": "fas-user-secret",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"icon": "iD-railway-rail",
|
||||
"fields": [
|
||||
"name",
|
||||
"opening_date",
|
||||
"check_date",
|
||||
"note",
|
||||
"structure",
|
||||
"gauge",
|
||||
"electrified"
|
||||
],
|
||||
"moreFields": [
|
||||
"covered",
|
||||
"frequency_electrified",
|
||||
"highspeed",
|
||||
"maxspeed",
|
||||
"service_rail",
|
||||
"usage_rail",
|
||||
"voltage_electrified"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"railway": "construction"
|
||||
},
|
||||
"name": "Railway Under Construction"
|
||||
}
|
||||
@@ -22,6 +22,10 @@
|
||||
"tags": {
|
||||
"railway": "rail"
|
||||
},
|
||||
"terms": [],
|
||||
"terms": [
|
||||
"rail line",
|
||||
"railroad track",
|
||||
"train track"
|
||||
],
|
||||
"name": "Rail"
|
||||
}
|
||||
|
||||
@@ -13,10 +13,11 @@
|
||||
"air_conditioning",
|
||||
"brand",
|
||||
"currency_multi",
|
||||
"website",
|
||||
"phone",
|
||||
"email",
|
||||
"fax",
|
||||
"phone",
|
||||
"second_hand",
|
||||
"website",
|
||||
"wheelchair"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-tractor",
|
||||
"fields": [
|
||||
"{shop}",
|
||||
"agrarian"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-alcohol-shop",
|
||||
"icon": "fas-wine-bottle",
|
||||
"fields": [
|
||||
"{shop}",
|
||||
"drive_through"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-dragon",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-baby-carriage",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-suitcase-rolling",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-bath",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-book",
|
||||
"fields": [
|
||||
"{shop}",
|
||||
"internet_access"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-burn",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-car",
|
||||
"icon": "fas-car-battery",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-grocery",
|
||||
"icon": "fas-shopping-basket",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"icon": "maki-clothing-store",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "clothes",
|
||||
"clothes": "underwear"
|
||||
},
|
||||
"reference": {
|
||||
"key": "clothes",
|
||||
"value": "underwear"
|
||||
},
|
||||
"terms": [
|
||||
"boutique",
|
||||
"bras",
|
||||
"brassieres",
|
||||
"briefs",
|
||||
"boxers",
|
||||
"fashion",
|
||||
"lingerie",
|
||||
"panties",
|
||||
"slips",
|
||||
"socks",
|
||||
"stockings",
|
||||
"underclothes",
|
||||
"undergarments",
|
||||
"underpants",
|
||||
"undies"
|
||||
],
|
||||
"name": "Underwear Store"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-laptop",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-shopping-basket",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-palette",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-plug",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-tape",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-vector-square",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-leaf",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-mobile-phone",
|
||||
"icon": "fas-mobile-alt",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-music",
|
||||
"icon": "fas-compact-disc",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-music",
|
||||
"icon": "fas-guitar",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-newspaper",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-mask",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-attraction",
|
||||
"icon": "fas-camera-retro",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-microchip",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-futbol",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-paperclip",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-space-shuttle",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"icon": "fas-server",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref",
|
||||
"operator",
|
||||
"building_area"
|
||||
],
|
||||
"moreFields": [
|
||||
"address",
|
||||
"phone",
|
||||
"website"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"telecom": "data_center"
|
||||
},
|
||||
"terms": [
|
||||
"computer systems storage",
|
||||
"information technology",
|
||||
"server farm",
|
||||
"the cloud",
|
||||
"telecommunications"
|
||||
],
|
||||
"name": "Data Center"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-lodging",
|
||||
"icon": "fas-concierge-bell",
|
||||
"fields": [
|
||||
"{tourism/motel}"
|
||||
],
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-information",
|
||||
"icon": "fas-map-signs",
|
||||
"fields": [
|
||||
"name",
|
||||
"elevation",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-information",
|
||||
"icon": "fas-map",
|
||||
"fields": [
|
||||
"operator",
|
||||
"map_type",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
],
|
||||
"geometry": [
|
||||
"vertex",
|
||||
"line",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
],
|
||||
"geometry": [
|
||||
"vertex",
|
||||
"line",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-square-stroked",
|
||||
"icon": "fas-directions",
|
||||
"fields": [
|
||||
"traffic_sign",
|
||||
"direction"
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"icon": "iD-route-bicycle",
|
||||
"icon": "maki-bicycle",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
"network_bicycle",
|
||||
"cycle_network",
|
||||
"to",
|
||||
"to",
|
||||
"from"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "iD-route-bus",
|
||||
"icon": "maki-bus",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "iD-route-ferry",
|
||||
"icon": "maki-ferry",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"icon": "iD-route-foot",
|
||||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
"operator",
|
||||
"network_foot",
|
||||
"to",
|
||||
"to",
|
||||
"from"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "iD-route-foot",
|
||||
"icon": "fas-hiking",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "iD-route-horse",
|
||||
"icon": "maki-horse-riding",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
@@ -7,7 +7,7 @@
|
||||
"network_horse",
|
||||
"description",
|
||||
"distance",
|
||||
"to",
|
||||
"to",
|
||||
"from"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "iD-route-light-rail",
|
||||
"icon": "temaki-light_rail",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"icon": "iD-route-pipeline",
|
||||
"icon": "iD-pipeline-line",
|
||||
"fields": [
|
||||
"name",
|
||||
"ref_route",
|
||||
"operator",
|
||||
"to",
|
||||
"to",
|
||||
"from"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"icon": "iD-route-piste",
|
||||
"icon": "fas-skiing",
|
||||
"fields": [
|
||||
"name",
|
||||
"piste/type",
|
||||
"colour",
|
||||
"ref_route",
|
||||
"operator",
|
||||
"to",
|
||||
"to",
|
||||
"from"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user