Merge branch 'master' into request_review

This commit is contained in:
Bryan Housel
2017-08-10 11:40:19 -04:00
673 changed files with 7890 additions and 1827 deletions
+57 -1
View File
@@ -8,7 +8,7 @@ or learn more by visiting our project page on GitHub: :octocat: https://github.
_Breaking changes, which may affect downstream projects or sites that embed iD, are marked with a_ :warning:
<!--
# A.B.C
# A.B.C
##### MMM DD, YYYY
#### :newspaper: News
@@ -26,6 +26,62 @@ _Breaking changes, which may affect downstream projects or sites that embed iD,
[@xxxx]: https://github.com/xxxx
-->
# 2.3.2
##### July 24, 2017
#### :tada: New Features
* Display capture date on the attribution line at bottom of Mapillary viewer ([#4156])
* Highlight detected objects and signs in Mapillary images ([#3772], [#4148], thanks [@kepta])
[#4156]: https://github.com/openstreetmap/iD/issues/4156
[#4148]: https://github.com/openstreetmap/iD/issues/4148
[#3772]: https://github.com/openstreetmap/iD/issues/3772
[@kepta]: https://github.com/kepta
#### :sparkles: Usability
* Prevent user from tabbing from fields in the sidebar to the browser's address bar ([#4159])
* Distinguish between default vs. tagged `service=*` highways and railways ([#4157])
* Fix styles for several aeroway, highway, railway mapped as areas ([#4167])
* Change rendering for non-grass sport pitches (basketball, skateboard, beachvolleyball)
* Render `railway=platform` like sidewalks and footpaths
* Place pasted point at cursor (not offset) when pasting while dragging the map ([#4155])
[#4167]: https://github.com/openstreetmap/iD/issues/4167
[#4159]: https://github.com/openstreetmap/iD/issues/4159
[#4157]: https://github.com/openstreetmap/iD/issues/4157
[#4155]: https://github.com/openstreetmap/iD/issues/4155
#### :bug: Bugfixes
* Make expandable sidebar sections work with incognito mode ([#4159])
* Remember the chosen custom background when set by url ([#4162], [#4165], thanks [@pgiraud])
* Fix: <kbd>⌘⇧B</kbd> / <kbd>Ctrl+Shift+B</kbd> should not also swap the background like <kbd>⌘B</kbd> / <kbd>Ctrl+B</kbd> ([#4153])
[#4165]: https://github.com/openstreetmap/iD/issues/4165
[#4162]: https://github.com/openstreetmap/iD/issues/4162
[#4159]: https://github.com/openstreetmap/iD/issues/4159
[#4153]: https://github.com/openstreetmap/iD/issues/4153
[@pgiraud]: https://github.com/pgiraud
#### :rocket: Presets
* Add presets, icons for Wind and Nuclear `power=generator`, and `output:electricity` field
* Add presets, icons for Shinto, Taoist, Hindu, Sikh `amenity=place_of_worship` ([#4175])
* Add preset for Dog Excrement Bin, `waste=dog_excrement` ([#4172], thanks [@JamesKingdom])
* Add Clothes field to Clothing Store, Botique, Fashion ([#4149])
* Change caption for content field from "Contents" to "Content" ([#4169])
* Add presets for Windmill and Watermill ([#4168])
[#4175]: https://github.com/openstreetmap/iD/issues/4175
[#4172]: https://github.com/openstreetmap/iD/issues/4172
[#4169]: https://github.com/openstreetmap/iD/issues/4169
[#4168]: https://github.com/openstreetmap/iD/issues/4168
[#4149]: https://github.com/openstreetmap/iD/issues/4149
[@JamesKingdom]: https://github.com/JamesKingdom
# 2.3.1
##### July 11, 2017
+5 -1
View File
@@ -86,11 +86,15 @@ path.stroke.tag-railway-subway {
/* railway platforms - like sidewalks */
.preset-icon .icon.highway-footway.tag-railway-platform {
color: #ae8681;
fill: #dcd9b9;
}
path.shadow.tag-railway-platform {
stroke-width: 16;
}
path.casing.tag-railway-platform {
stroke: #fff;
stroke: #dcd9b9;
stroke-width: 5;
stroke-linecap: round;
stroke-dasharray: none;
+79 -32
View File
@@ -865,6 +865,7 @@ button.save.has-count .count::before {
border: 1.5px solid #333;
border-radius: 20px;
background-color: #efefef;
backface-visibility: hidden;
}
[dir='rtl'] .preset-icon-fill-vertex,
@@ -967,7 +968,7 @@ button.save.has-count .count::before {
position: absolute;
top: 0;
right: 0;
width: 10%;
width: 32px;
background: #fafafa;
}
@@ -1023,21 +1024,25 @@ button.save.has-count .count::before {
/* preset form basics */
.inspector-preset {
.preset-editor {
overflow: hidden;
padding-bottom: 10px;
}
.inspector-preset a.hide-toggle {
.preset-editor a.hide-toggle {
margin: 0 20px 10px 20px;
}
.inspector-preset .preset-form {
.preset-editor .preset-form {
padding: 10px;
margin: 0 10px 10px 10px;
border-radius: 8px;
}
.preset-editor .preset-form:empty {
display: none;
}
.entity-editor-pane .preset-list-item .preset-list-button-wrap {
margin-bottom: 0;
}
@@ -1051,7 +1056,8 @@ button.save.has-count .count::before {
transition: margin-bottom 200ms;
}
.form-field:last-child {
.form-field.nowrap,
.wrap-form-field:last-child .form-field {
margin-bottom: 0;
}
@@ -1092,7 +1098,7 @@ button.save.has-count .count::before {
.form-label button {
border-left: 1px solid #ccc;
width: 10%;
width: 32px;
height: 100%;
border-radius: 0;
background: #f6f6f6;
@@ -1101,6 +1107,7 @@ button.save.has-count .count::before {
border-left: none;
border-right: 1px solid #CCC;
border-radius: 4px 0 0 0;
width: 31px;
}
.form-label button:hover {
background: #f1f1f1;
@@ -1141,6 +1148,7 @@ button.save.has-count .count::before {
.inspector-hover .form-field-multicombo,
.inspector-hover .structure-extras-wrap,
.inspector-hover input,
.inspector-hover textarea,
.inspector-hover label {
background: #ececec;
}
@@ -1291,6 +1299,7 @@ button.save.has-count .count::before {
/* preset form access */
/* preset form cycleway */
/* preset form structure extras */
.form-field-structure .structure-extras-wrap li,
.form-field-cycleway .preset-input-wrap li,
@@ -1330,6 +1339,34 @@ button.save.has-count .count::before {
border: 1px solid #ccc;
border-radius: 4px;
}
.structure-extras-wrap li:first-child span {
border-top-left-radius: 4px;
}
.structure-extras-wrap li:first-child input {
border-top-right-radius: 4px;
}
.structure-extras-wrap li:last-child span {
border-bottom-left-radius: 4px;
}
.structure-extras-wrap li:last-child input {
border-bottom-right-radius: 4px;
}
[dir='rtl'] .structure-extras-wrap li:first-child span {
border-top-left-radius: 0;
border-top-right-radius: 4px;
}
[dir='rtl'] .structure-extras-wrap li:first-child input {
border-top-right-radius: 0;
border-top-left-radius: 4px;
}
[dir='rtl'] .structure-extras-wrap li:last-child span {
border-bottom-left-radius: 0;
border-bottom-right-radius: 4px;
}
[dir='rtl'] .structure-extras-wrap li:last-child input {
border-bottom-right-radius: 0;
border-bottom-left-radius: 4px;
}
/* preset form multicombo */
@@ -1398,28 +1435,43 @@ input[type=number] {
}
.spin-control {
width: 20%;
height: 29px;
width: 64px;
height: 30px;
display: inline-block;
margin-left: -20%;
margin-left: -64px;
margin-bottom: -11px;
position: relative;
}
[dir='rtl'] .spin-control{
margin-left: 0;
margin-right: -64px;
}
.spin-control button {
right: 1px;
position: relative;
float: left;
height: 100%;
width: 50%;
width: 32px;
border-left: 1px solid #CCC;
border-radius: 0;
background: rgba(0, 0, 0, 0);
}
[dir='rtl'] .spin-control button{
border-left: 0;
border-right: 1px solid #CCC;
}
.spin-control button.decrement {
border-bottom-right-radius: 3px;
}
[dir='rtl'] .spin-control button.decrement {
border-bottom-right-radius: 0;
}
[dir='rtl'] .spin-control button.increment {
border-bottom-left-radius: 3px;
right: 0;
}
.spin-control button.decrement::after,
.spin-control button.increment::after {
@@ -1442,6 +1494,7 @@ input[type=number] {
border-right: 5px solid transparent;
}
/* preset form checkbox */
.checkselect label:last-of-type {
@@ -1525,11 +1578,11 @@ input[type=number] {
}
.form-field .wiki-title ~ .combobox-caret {
right: 10%;
right: 32px;
}
[dir='rtl'] .form-field .wiki-title ~ .combobox-caret {
right: auto;
left: 10%;
left: 32px;
}
/* Localized field */
@@ -1544,8 +1597,8 @@ input[type=number] {
.form-field .button-input-action {
position: relative;
right: 1px;
width: 10%;
margin-left: -10%;
width: 32px;
margin-left: -32px;
border: 1px solid #CCC;
border-top-width: 0;
border-right-width: 0;
@@ -1555,7 +1608,7 @@ input[type=number] {
}
[dir='rtl'] .form-field .button-input-action {
margin-left: 0;
margin-right: -10%;
margin-right: -32px;
border-right-width: 1px;
border-radius: 0 0 0 4px;
}
@@ -1966,6 +2019,14 @@ img.wiki-image {
background: rgba(0,0,0,.8);
}
/* hidden field to prevent user from tabbing out of the sidebar */
input.key-trap {
height: 0px;
width: 0px;
padding: 0px;
border: 1px solid rgba(0,0,0,0);
}
/* Fullscreen button */
div.full-screen {
float: right;
@@ -2695,6 +2756,9 @@ img.tile-removing {
background: none;
color: #ddd;
}
[dir='rtl'] .panel-title button.close {
float: left;
}
.panel-title button.close:hover {
color: #fff;
@@ -4156,23 +4220,6 @@ li.hide + li.version .badge .tooltip .tooltip-arrow {
border-radius: 4px 0 0 4px;
}
/* increment / decrement control - code by Naoufel Razouane */
[dir='rtl'] .spin-control{
margin-left: 0;
margin-right: -20%;
}
[dir='rtl'] .spin-control button{
border-left: 0;
border-right: 1px solid #CCC;
}
[dir='rtl'] .spin-control button.decrement{
border-bottom-right-radius: 0;
}
[dir='rtl'] .spin-control button.increment{
border-bottom-left-radius: 3px;
}
/* modal */
[dir='rtl'] .modal > button {
position: absolute;
+3
View File
@@ -36,6 +36,9 @@
"de": {
"rtl": false
},
"dv": {
"rtl": false
},
"el": {
"rtl": false
},
+105 -9
View File
@@ -246,6 +246,11 @@ en:
brand:
# brand=*
label: Brand
bridge:
# bridge=*
label: Type
# bridge field placeholder
placeholder: Default
building:
# building=*
label: Building
@@ -369,6 +374,11 @@ en:
currency_multi:
# 'currency:=*'
label: Currency Types
cutting:
# cutting=*
label: Type
# cutting field placeholder
placeholder: Default
cycle_network:
# cycle_network=*
label: Network
@@ -458,6 +468,11 @@ en:
label: Email
# email field placeholder
placeholder: example@example.com
embankment:
# embankment=*
label: Type
# embankment field placeholder
placeholder: Default
emergency:
# emergency=*
label: Emergency
@@ -505,6 +520,11 @@ en:
fixme:
# fixme=*
label: Fix Me
ford:
# ford=*
label: Type
# ford field placeholder
placeholder: Default
fuel:
# fuel=*
label: Fuel
@@ -540,11 +560,6 @@ en:
generator/type:
# 'generator:type=*'
label: Type
golf_hole:
# ref=*
label: Reference
# golf_hole field placeholder
placeholder: Hole number (1-18)
grape_variety:
# grape_variety=*
label: Grape Varieties
@@ -639,6 +654,8 @@ en:
layer:
# layer=*
label: Layer
# layer field placeholder
placeholder: '0'
leaf_cycle:
# leaf_cycle=*
label: Leaf Cycle
@@ -735,6 +752,11 @@ en:
maxweight:
# maxweight=*
label: Max Weight
milestone_position:
# 'railway:position=*'
label: Milestone Position
# milestone_position field placeholder
placeholder: Distance to one decimal (123.4)
mtb/scale:
# 'mtb:scale=*'
label: Mountain Biking Difficulty
@@ -1022,7 +1044,40 @@ en:
container: Container
ref:
# ref=*
label: Reference
label: Reference Code
ref_aeroway_gate:
# ref=*
label: Gate Number
ref_golf_hole:
# ref=*
label: Hole Number
# ref_golf_hole field placeholder
placeholder: 1-18
ref_highway_junction:
# ref=*
label: Junction Number
ref_platform:
# ref=*
label: Platform Number
ref_road_number:
# ref=*
label: Road Number
ref_route:
# ref=*
label: Route Number
ref_runway:
# ref=*
label: Runway Number
# ref_runway field placeholder
placeholder: e.g. 01L/19R
ref_stop_position:
# ref=*
label: Stop Number
ref_taxiway:
# ref=*
label: Taxiway Name
# ref_taxiway field placeholder
placeholder: e.g. A5
relation:
# type=*
label: Type
@@ -1328,6 +1383,11 @@ en:
# trees=*
label: Trees
tunnel:
# tunnel=*
label: Type
# tunnel field placeholder
placeholder: Default
tunnel_waterway:
# tunnel=*
label: Tunnel
vending:
@@ -1434,6 +1494,7 @@ en:
aerialway/t-bar:
# aerialway=t-bar
name: T-bar Lift
# 'terms: tbar'
terms: '<translate with synonyms or related terms for ''T-bar Lift'', separated by commas>'
aeroway:
# aeroway=*
@@ -1897,7 +1958,7 @@ en:
amenity/social_facility/group_home:
# 'amenity=social_facility, social_facility=group_home, social_facility:for=senior'
name: Elderly Group Home
# 'terms: old,senior,living'
# 'terms: old,senior,living,care home,assisted living'
terms: '<translate with synonyms or related terms for ''Elderly Group Home'', separated by commas>'
amenity/social_facility/homeless_shelter:
# 'amenity=social_facility, social_facility=shelter, social_facility:for=homeless'
@@ -1907,7 +1968,7 @@ en:
amenity/social_facility/nursing_home:
# 'amenity=social_facility, social_facility=nursing_home, social_facility:for=senior'
name: Nursing Home
# 'terms: elderly,living,nursing,old,senior'
# 'terms: elderly,living,nursing,old,senior,assisted living'
terms: '<translate with synonyms or related terms for ''Nursing Home'', separated by commas>'
amenity/studio:
# amenity=studio
@@ -3292,7 +3353,7 @@ en:
man_made/pier:
# man_made=pier
name: Pier
# 'terms: dock'
# 'terms: dock,jetty'
terms: '<translate with synonyms or related terms for ''Pier'', separated by commas>'
man_made/pipeline:
# man_made=pipeline
@@ -3372,6 +3433,11 @@ en:
name: Storm Drain
# 'terms: cover,drain,hole,rain,sewer,sewage,storm'
terms: '<translate with synonyms or related terms for ''Storm Drain'', separated by commas>'
manhole/telecom:
# manhole=telecom
name: Telecom Manhole
# 'terms: cover,phone,hole,telecom,telephone,bt'
terms: '<translate with synonyms or related terms for ''Telecom Manhole'', separated by commas>'
natural:
# natural=*
name: Natural
@@ -3727,11 +3793,21 @@ en:
# railway=abandoned
name: Abandoned Railway
terms: '<translate with synonyms or related terms for ''Abandoned Railway'', separated by commas>'
railway/buffer_stop:
# railway=buffer_stop
name: Buffer Stop
# 'terms: stop,halt,buffer'
terms: '<translate with synonyms or related terms for ''Buffer Stop'', separated by commas>'
railway/crossing:
# railway=crossing
name: Railway Crossing (Path)
# 'terms: crossing,pedestrian crossing,railroad crossing,level crossing,grade crossing,path through railroad,train crossing'
terms: '<translate with synonyms or related terms for ''Railway Crossing (Path)'', separated by commas>'
railway/derail:
# railway=derail
name: Railway Derailer
# 'terms: derailer'
terms: '<translate with synonyms or related terms for ''Railway Derailer'', separated by commas>'
railway/disused:
# railway=disused
name: Disused Railway
@@ -3751,6 +3827,11 @@ en:
name: Railway Crossing (Road)
# 'terms: crossing,railroad crossing,level crossing,grade crossing,road through railroad,train crossing'
terms: '<translate with synonyms or related terms for ''Railway Crossing (Road)'', separated by commas>'
railway/milestone:
# railway=milestone
name: Railway Milestone
# 'terms: milestone,marker'
terms: '<translate with synonyms or related terms for ''Railway Milestone'', separated by commas>'
railway/monorail:
# railway=monorail
name: Monorail
@@ -3768,6 +3849,11 @@ en:
# railway=rail
name: Rail
terms: '<translate with synonyms or related terms for ''Rail'', separated by commas>'
railway/signal:
# railway=signal
name: Railway Signal
# 'terms: signal,lights'
terms: '<translate with synonyms or related terms for ''Railway Signal'', separated by commas>'
railway/station:
# railway=station
name: Railway Station
@@ -3783,6 +3869,16 @@ en:
name: Subway Entrance
# 'terms: metro,transit'
terms: '<translate with synonyms or related terms for ''Subway Entrance'', separated by commas>'
railway/switch:
# railway=switch
name: Railway Switch
# 'terms: switch,points'
terms: '<translate with synonyms or related terms for ''Railway Switch'', separated by commas>'
railway/train_wash:
# railway=wash
name: Train Wash
# 'terms: wash,clean'
terms: '<translate with synonyms or related terms for ''Train Wash'', separated by commas>'
railway/tram:
# railway=tram
name: Tram
+1
View File
@@ -9,6 +9,7 @@
"barrier/wall",
"barrier/ditch",
"barrier/gate",
"barrier/hedge",
"barrier"
]
},
+1
View File
@@ -7,6 +7,7 @@
"barrier/wall",
"barrier/ditch",
"barrier/gate",
"barrier/hedge",
"barrier"
]
}
+90 -10
View File
@@ -329,6 +329,12 @@
"type": "text",
"label": "Brand"
},
"bridge": {
"key": "bridge",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
},
"building_area": {
"key": "building",
"type": "combo",
@@ -488,6 +494,12 @@
"type": "multiCombo",
"label": "Currency Types"
},
"cutting": {
"key": "cutting",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
},
"cycle_network": {
"key": "cycle_network",
"type": "networkCombo",
@@ -631,6 +643,12 @@
"universal": true,
"label": "Email"
},
"embankment": {
"key": "embankment",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
},
"emergency": {
"key": "emergency",
"type": "check",
@@ -695,6 +713,12 @@
"label": "Fix Me",
"universal": true
},
"ford": {
"key": "ford",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
},
"fuel_multi": {
"key": "fuel:",
"type": "multiCombo",
@@ -748,12 +772,6 @@
"type": "combo",
"label": "Type"
},
"golf_hole": {
"key": "ref",
"type": "text",
"label": "Reference",
"placeholder": "Hole number (1-18)"
},
"grape_variety": {
"key": "grape_variety",
"type": "semiCombo",
@@ -889,8 +907,9 @@
},
"layer": {
"key": "layer",
"type": "combo",
"label": "Layer"
"type": "number",
"label": "Layer",
"placeholder": "0"
},
"leaf_cycle_singular": {
"key": "leaf_cycle",
@@ -1034,6 +1053,12 @@
"label": "Max Weight",
"snake_case": false
},
"milestone_position": {
"key": "railway:position",
"type": "text",
"placeholder": "Distance to one decimal (123.4)",
"label": "Milestone Position"
},
"mtb/scale": {
"key": "mtb:scale",
"type": "combo",
@@ -1086,6 +1111,7 @@
"key": "name",
"type": "localized",
"label": "Name",
"universal": true,
"placeholder": "Common name (if any)"
},
"natural": {
@@ -1361,10 +1387,58 @@
}
}
},
"ref_aeroway_gate": {
"key": "ref",
"type": "text",
"label": "Gate Number"
},
"ref_golf_hole": {
"key": "ref",
"type": "text",
"label": "Hole Number",
"placeholder": "1-18"
},
"ref_highway_junction": {
"key": "ref",
"type": "text",
"label": "Junction Number"
},
"ref_platform": {
"key": "ref",
"type": "text",
"label": "Platform Number"
},
"ref_road_number": {
"key": "ref",
"type": "text",
"label": "Road Number"
},
"ref_route": {
"key": "ref",
"type": "text",
"label": "Route Number"
},
"ref_runway": {
"key": "ref",
"type": "text",
"label": "Runway Number",
"placeholder": "e.g. 01L/19R"
},
"ref_stop_position": {
"key": "ref",
"type": "text",
"label": "Stop Number"
},
"ref_taxiway": {
"key": "ref",
"type": "text",
"label": "Taxiway Name",
"placeholder": "e.g. A5"
},
"ref": {
"key": "ref",
"type": "text",
"label": "Reference"
"label": "Reference Code"
},
"relation": {
"key": "type",
@@ -1793,11 +1867,17 @@
"type": "semiCombo",
"label": "Trees"
},
"tunnel": {
"tunnel_waterway": {
"key": "tunnel",
"type": "combo",
"label": "Tunnel"
},
"tunnel": {
"key": "tunnel",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
},
"vending": {
"key": "vending",
"type": "combo",
+6
View File
@@ -0,0 +1,6 @@
{
"key": "bridge",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "cutting",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "embankment",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "ford",
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
}
-6
View File
@@ -1,6 +0,0 @@
{
"key": "ref",
"type": "text",
"label": "Reference",
"placeholder": "Hole number (1-18)"
}
+4 -3
View File
@@ -1,5 +1,6 @@
{
"key": "layer",
"type": "combo",
"label": "Layer"
}
"type": "number",
"label": "Layer",
"placeholder": "0"
}
@@ -0,0 +1,6 @@
{
"key": "railway:position",
"type": "text",
"placeholder": "Distance to one decimal (123.4)",
"label": "Milestone Position"
}
+1
View File
@@ -2,5 +2,6 @@
"key": "name",
"type": "localized",
"label": "Name",
"universal": true,
"placeholder": "Common name (if any)"
}
+2 -2
View File
@@ -1,5 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Reference"
}
"label": "Reference Code"
}
@@ -0,0 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Gate Number"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "ref",
"type": "text",
"label": "Hole Number",
"placeholder": "1-18"
}
@@ -0,0 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Junction Number"
}
+5
View File
@@ -0,0 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Platform Number"
}
+5
View File
@@ -0,0 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Road Number"
}
+5
View File
@@ -0,0 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Route Number"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "ref",
"type": "text",
"label": "Runway Number",
"placeholder": "e.g. 01L/19R"
}
@@ -0,0 +1,5 @@
{
"key": "ref",
"type": "text",
"label": "Stop Number"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "ref",
"type": "text",
"label": "Taxiway Name",
"placeholder": "e.g. A5"
}
+3 -2
View File
@@ -1,5 +1,6 @@
{
"key": "tunnel",
"type": "combo",
"label": "Tunnel"
"type": "typeCombo",
"label": "Type",
"placeholder": "Default"
}
+5
View File
@@ -0,0 +1,5 @@
{
"key": "tunnel",
"type": "combo",
"label": "Tunnel"
}
+2242 -46
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -1,5 +1,6 @@
{
"fields": [
"name",
"highway"
],
"geometry": [
+1
View File
@@ -1,5 +1,6 @@
{
"fields": [
"name",
"place"
],
"geometry": [
+3
View File
@@ -3,6 +3,9 @@
"vertex",
"line"
],
"fields": [
"name"
],
"tags": {
"junction": "roundabout"
},
+1
View File
@@ -1,5 +1,6 @@
{
"fields": [
"name",
"waterway"
],
"geometry": [
@@ -7,6 +7,7 @@
"ropeway"
],
"fields": [
"name",
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
@@ -3,6 +3,7 @@
"line"
],
"fields": [
"name",
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
@@ -3,6 +3,7 @@
"line"
],
"fields": [
"name",
"aerialway/capacity",
"aerialway/duration"
],
@@ -3,6 +3,7 @@
"line"
],
"fields": [
"name",
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
@@ -3,6 +3,7 @@
"line"
],
"fields": [
"name",
"aerialway/capacity",
"aerialway/duration"
],
@@ -3,6 +3,7 @@
"line"
],
"fields": [
"name",
"aerialway/capacity",
"aerialway/duration",
"aerialway/heating"
@@ -3,6 +3,7 @@
"line"
],
"fields": [
"name",
"aerialway/occupancy",
"aerialway/capacity",
"aerialway/duration",
@@ -7,6 +7,7 @@
"poma lift"
],
"fields": [
"name",
"aerialway/capacity",
"aerialway/duration"
],
@@ -7,6 +7,7 @@
"bugel lift"
],
"fields": [
"name",
"aerialway/capacity",
"aerialway/duration"
],
+4 -2
View File
@@ -2,12 +2,14 @@
"icon": "aerialway",
"geometry": [
"point",
"vertex"
"vertex",
"area"
],
"fields": [
"aerialway/access",
"aerialway/summer/access",
"elevation"
"elevation",
"building_area"
],
"tags": {
"aerialway": "station"
@@ -3,9 +3,13 @@
"line"
],
"fields": [
"name",
"aerialway/capacity",
"aerialway/duration"
],
"terms": [
"tbar"
],
"tags": {
"aerialway": "t-bar"
},
+1 -1
View File
@@ -5,7 +5,7 @@
"area"
],
"fields": [
"ref",
"name",
"iata",
"icao",
"operator",
+1 -1
View File
@@ -4,7 +4,7 @@
"point"
],
"fields": [
"ref"
"ref_aeroway_gate"
],
"tags": {
"aeroway": "gate"
+1
View File
@@ -3,6 +3,7 @@
"area"
],
"fields": [
"name",
"building_area"
],
"tags": {
+1 -1
View File
@@ -7,7 +7,7 @@
"landing strip"
],
"fields": [
"ref",
"ref_runway",
"surface",
"length",
"width"
+1 -1
View File
@@ -3,7 +3,7 @@
"line"
],
"fields": [
"ref",
"ref_taxiway",
"surface"
],
"tags": {
@@ -9,6 +9,7 @@
"aerodrome"
],
"fields": [
"name",
"operator",
"building_area"
],
@@ -1,6 +1,7 @@
{
"icon": "commercial",
"fields": [
"name",
"address",
"building_area",
"opening_hours",
@@ -1,6 +1,7 @@
{
"icon": "wheelchair",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "town-hall",
"fields": [
"name",
"address",
"building_area",
"opening_hours",
@@ -1,6 +1,7 @@
{
"icon": "veterinary",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "veterinary",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "veterinary",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "theatre",
"fields": [
"name",
"address",
"building_area",
"opening_hours"
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "bank",
"fields": [
"name",
"atm",
"operator",
"address",
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "bar",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "beer",
"fields": [
"name",
"address",
"building_area",
"opening_hours",
@@ -1,5 +1,6 @@
{
"fields": [
"name",
"operator"
],
"geometry": [
@@ -1,6 +1,7 @@
{
"icon": "bank",
"fields": [
"name",
"operator",
"currency_multi"
],
@@ -1,6 +1,7 @@
{
"icon": "bus",
"fields": [
"name",
"building_area",
"operator",
"internet_access",
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "cafe",
"fields": [
"name",
"cuisine",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "car",
"fields": [
"name",
"operator"
],
"geometry": [
@@ -1,6 +1,7 @@
{
"icon": "car",
"fields": [
"name",
"operator",
"capacity"
],
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "poi-dice",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "school",
"fields": [
"name",
"operator",
"address",
"building_area",
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "cinema",
"fields": [
"name",
"address",
"building_area",
"opening_hours"
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "hospital",
"fields": [
"name",
"address",
"building_area",
"opening_hours"
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "poi-clock",
"fields": [
"name",
"support",
"display",
"visibility",
@@ -1,6 +1,7 @@
{
"icon": "college",
"fields": [
"name",
"operator",
"address",
"internet_access",
@@ -1,6 +1,7 @@
{
"icon": "town-hall",
"fields": [
"name",
"operator",
"address",
"building_area"
@@ -1,6 +1,7 @@
{
"icon": "town-hall",
"fields": [
"name",
"operator",
"address",
"building_area"
@@ -1,6 +1,7 @@
{
"icon": "cemetery",
"fields": [
"name",
"website",
"phone",
"opening_hours",
@@ -1,6 +1,7 @@
{
"icon": "dentist",
"fields": [
"name",
"address",
"building_area",
"opening_hours"
@@ -1,6 +1,7 @@
{
"icon": "hospital",
"fields": [
"name",
"address",
"building_area",
"opening_hours"
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "pitch",
"fields": [
"name",
"sport",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "car",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "embassy",
"fields": [
"name",
"country",
"address",
"building_area"
@@ -1,6 +1,7 @@
{
"icon": "fast-food",
"fields": [
"name",
"cuisine",
"operator",
"address",
@@ -1,6 +1,7 @@
{
"icon": "ferry",
"fields": [
"name",
"network",
"operator",
"address",
@@ -1,6 +1,7 @@
{
"icon": "fire-station",
"fields": [
"name",
"operator",
"address",
"building_area"
@@ -1,6 +1,7 @@
{
"icon": "restaurant",
"fields": [
"name",
"operator",
"address",
"building_area",
+1
View File
@@ -1,6 +1,7 @@
{
"icon": "fuel",
"fields": [
"name",
"operator",
"address",
"opening_hours",
@@ -1,6 +1,7 @@
{
"icon": "hospital",
"fields": [
"name",
"operator",
"address",
"emergency"
@@ -1,6 +1,7 @@
{
"icon": "ice-cream",
"fields": [
"name",
"address",
"building_area",
"opening_hours",
@@ -1,6 +1,7 @@
{
"icon": "poi-mast",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "school",
"fields": [
"name",
"operator",
"address"
],
@@ -1,6 +1,7 @@
{
"icon": "library",
"fields": [
"name",
"operator",
"building_area",
"address",
@@ -1,6 +1,7 @@
{
"icon": "shop",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "bar",
"fields": [
"name",
"operator",
"address",
"building_area",
+2 -2
View File
@@ -2,7 +2,7 @@
"icon": "shelter",
"fields": [
"bin",
"bench"
"bench"
],
"geometry": [
"point",
@@ -11,7 +11,7 @@
],
"tags": {
"amenity": "shelter",
"shelter_type": "pavilion"
"shelter_type": "pavilion"
},
"name": "Pavilion"
}
@@ -1,6 +1,7 @@
{
"icon": "pharmacy",
"fields": [
"name",
"operator",
"address",
"building_area",
@@ -1,6 +1,7 @@
{
"icon": "place-of-worship",
"fields": [
"name",
"religion",
"denomination",
"address",
@@ -1,6 +1,7 @@
{
"icon": "buddhism",
"fields": [
"name",
"denomination",
"building_area",
"address",
@@ -1,6 +1,7 @@
{
"icon": "religious-christian",
"fields": [
"name",
"denomination",
"building_area",
"address",
@@ -1,6 +1,7 @@
{
"icon": "poi-hinduist",
"fields": [
"name",
"denomination",
"building_area",
"address",
@@ -1,6 +1,7 @@
{
"icon": "religious-jewish",
"fields": [
"name",
"denomination",
"building_area",
"address",
@@ -1,6 +1,7 @@
{
"icon": "religious-muslim",
"fields": [
"name",
"denomination",
"building_area",
"address",

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