resolved conflict

This commit is contained in:
saman bb
2013-03-12 20:51:13 -04:00
156 changed files with 423 additions and 220 deletions

View File

@@ -28,7 +28,6 @@ fs.writeFileSync('data/presets/presets.json', JSON.stringify(
fs.writeFileSync('data/data.js', 'iD.data = ' + JSON.stringify({
deprecated: r('deprecated.json'),
discarded: r('discarded.json'),
imagery: r('imagery.json'),
keys: r('keys.json'),
imagery: r('imagery.json'),
presets: {

View File

@@ -672,7 +672,8 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;}
}
.preset-section h4 + input,
h4 + .input-wrap-position input {
h4 + .input-wrap-position input,
h4 + .preset-input input:first-child {
padding-top: 35px;
height: 60px;
}
@@ -691,6 +692,12 @@ input[type=number] {
right: 50%;
}
button.preset-add-form {
width: 40px;
height: 40px;
margin-right: 10px;
}
.preset-fav button.fav {
height: 30px;
margin: 5px;

View File

@@ -331,6 +331,7 @@ path.fill.tag-natural-beach,
path.fill.tag-natural-scrub,
path.fill.tag-landuse-cemetery,
path.fill.tag-landuse-meadow,
path.fill.tag-landuse-farm,
path.fill.tag-landuse-farmland,
path.fill.tag-landuse-construction,
path.fill.tag-landuse-orchard {
@@ -343,6 +344,7 @@ path.fill.tag-landuse-orchard {
.pattern-color-meadow,
.pattern-color-wetland,
.pattern-color-cemetery,
.pattern-color-farm,
.pattern-color-farmland,
.pattern-color-construction,
.pattern-color-orchard {
@@ -362,10 +364,12 @@ path.fill.tag-landuse-residential {
fill: #e06e5f;
}
path.fill.tag-landuse-farm,
path.fill.tag-landuse-farmland {
fill: url(#pattern-farmland) #8cd05f;
}
.pattern-color-farm,
.pattern-color-farmland {
fill: url(#pattern-farmland) #8cd05f;
}

View File

@@ -1,7 +1,7 @@
[
{
"match": {
"type": "line"
"geometry": "line"
},
"icon": "highway",
"name": "roads",

View File

@@ -1 +1 @@
{"access":{"key":"access","type":"combo"},"address":{"type":"address","keys":["addr:housename","addr:housenumber","addr:street","addr:city"]},"atm":{"key":"atm","type":"check"},"building":{"key":"building","type":"combo"},"building_area":{"key":"building","type":"check","default":{"area":"yes"}},"building_yes":{"key":"building","type":"combo","default":{"area":"yes"}},"capacity":{"key":"capacity","type":"text"},"cuisine":{"key":"cuisine","type":"combo","indexed":true},"denomination":{"key":"denomination","type":"combo"},"elevation":{"key":"ele","type":"number"},"emergency":{"key":"emergency","type":"check"},"fax":{"key":"fax","type":"tel"},"fee":{"key":"fee","type":"check"},"internet_access":{"key":"internet_access","type":"combo","options":["yes","no","wlan","wired","terminal"]},"layer":{"key":"layer","type":"combo"},"levels":{"key":"building:levels","type":"number"},"maxspeed":{"key":"maxspeed","type":"combo"},"network":{"key":"network","type":"text"},"oneway":{"key":"oneway","type":"check"},"opening_hours":{"key":"opening_hours","type":"text"},"operator":{"key":"operator","type":"text"},"phone":{"key":"phone","type":"tel"},"religion":{"key":"religion","type":"combo","options":["christian","muslim","buddhist","jewish","hindu","shinto","taoist"]},"roadtype":{"title":" ","type":"radio","options":["bridge","tunnel","embankment","cutting"]},"shelter":{"key":"shelter","type":"check"},"surface":{"key":"surface","type":"combo"}}
{"access":{"key":"access","type":"combo"},"address":{"type":"address","keys":["addr:housename","addr:housenumber","addr:street","addr:city"],"universal":true},"atm":{"key":"atm","type":"check"},"building":{"key":"building","type":"combo"},"building_area":{"key":"building","type":"check","default":{"area":"yes"}},"building_yes":{"key":"building","type":"combo","default":{"area":"yes"}},"capacity":{"key":"capacity","type":"text"},"cuisine":{"key":"cuisine","type":"combo","indexed":true},"denomination":{"key":"denomination","type":"combo"},"elevation":{"key":"ele","type":"number","universal":true},"emergency":{"key":"emergency","type":"check"},"fax":{"key":"fax","type":"tel"},"fee":{"key":"fee","type":"check"},"internet_access":{"key":"internet_access","type":"combo","options":["yes","no","wlan","wired","terminal"]},"layer":{"key":"layer","type":"combo"},"levels":{"key":"building:levels","type":"number"},"maxspeed":{"key":"maxspeed","type":"combo"},"network":{"key":"network","type":"text"},"oneway":{"key":"oneway","type":"check"},"opening_hours":{"key":"opening_hours","type":"text"},"operator":{"key":"operator","type":"text"},"phone":{"key":"phone","type":"tel"},"religion":{"key":"religion","type":"combo","options":["christian","muslim","buddhist","jewish","hindu","shinto","taoist"]},"roadtype":{"title":" ","type":"radio","options":["bridge","tunnel","embankment","cutting"]},"shelter":{"key":"shelter","type":"check"},"source":{"key":"source","type":"text","universal":true},"surface":{"key":"surface","type":"combo"},"telephone":{"key":"phone","type":"tel","universal":true},"website":{"key":"website","type":"url","universal":true},"wikipedia":{"key":"wikipedia","type":"text","universal":true}}

View File

@@ -5,5 +5,6 @@
"addr:housenumber",
"addr:street",
"addr:city"
]
],
"universal": true
}

View File

@@ -1,4 +1,5 @@
{
"key": "ele",
"type": "number"
}
"type": "number",
"universal": true
}

View File

@@ -0,0 +1,5 @@
{
"key": "source",
"type": "text",
"universal": true
}

View File

@@ -0,0 +1,5 @@
{
"key": "phone",
"type": "tel",
"universal": true
}

View File

@@ -0,0 +1,5 @@
{
"key": "website",
"type": "url",
"universal": true
}

View File

@@ -0,0 +1,5 @@
{
"key": "wikipedia",
"type": "text",
"universal": true
}

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{
"name": "aeroway",
"match": {
"type": [
"geometry": [
"point",
"vertex",
"line",

View File

@@ -1,7 +1,7 @@
{
"name": "airport",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "helipad",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "amenity",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "bank",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "bar",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "bicycle rental",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "cafe",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "cinema",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "fast food",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "fire station",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "grave yard",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "hospital",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "library",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "parking",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "pharmacy",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "place of worship",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "church",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "synagogue",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "mosque",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "police",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "post box",
"match": {
"type": [
"geometry": [
"point"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "pub",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "restaurant",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "school",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "toilets",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "town hall",
"match": {
"type": [
"geometry": [
"point",
"areea"
],

View File

@@ -1,7 +1,7 @@
{
"name": "university",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "building",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "highway",
"match": {
"type": [
"geometry": [
"point",
"vertex",
"line",

View File

@@ -1,7 +1,7 @@
{
"name": "bus stop",
"match": {
"type": [
"geometry": [
"point"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "crossing",
"match": {
"type": [
"geometry": [
"vertex"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "cycle path",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "foot path",
"match": {
"type": [
"geometry": [
"line"
],
"terms": [

View File

@@ -1,7 +1,7 @@
{
"name": "motorway",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "path",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "primary road",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "residential road",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "secondary road",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "service road",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "steps",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "tertiary road",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "track",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "trunk highway",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "turning circle",
"match": {
"type": [
"geometry": [
"vertex"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "unclassified",
"match": {
"type": [
"geometry": [
"line"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "landuse",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "allotments",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "cemetery",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "commercial",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "construction",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "farm",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "farmyard",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "forest",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "grass",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "industrial",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "meadow",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "orchard",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "quarry",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "residential",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "vineyard",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "leisure",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "golf course",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "park",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "sport pitch",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "baseball diamond",
"match": {
"type": [
"geometry": [
"point",
"area"
],
@@ -11,8 +11,5 @@
},
"terms": []
},
"icon": "baseball",
"form": [
"surface"
]
"icon": "baseball"
}

View File

@@ -1,7 +1,7 @@
{
"name": "basketball court",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "soccer field",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "tennis court",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -0,0 +1,12 @@
{
"name": "playground",
"match": {
"geometry": [
"point",
"area"
],
"tags": {
"leisure": "playground"
}
}
}

View File

@@ -1,7 +1,7 @@
{
"name": "man made",
"match": {
"type": [
"geometry": [
"point",
"vertex",
"line",

View File

@@ -1,7 +1,7 @@
{
"name": "lighthouse",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "pier",
"match": {
"type": [
"geometry": [
"line",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "natural",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "bay",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "beach",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "cliff",
"match": {
"type": [
"geometry": [
"point",
"vertex",
"line",

View File

@@ -1,7 +1,7 @@
{
"name": "coastline",
"match": {
"type": [
"geometry": [
"line"
],
"terms": [

View File

@@ -1,7 +1,7 @@
{
"name": "glacier",
"match": {
"type": [
"geometry": [
"area"
],
"terms": [

View File

@@ -1,7 +1,7 @@
{
"name": "grassland",
"match": {
"type": [
"geometry": [
"point",
"area"
],

View File

@@ -1,7 +1,7 @@
{
"name": "heath",
"match": {
"type": [
"geometry": [
"area"
],
"terms": [

View File

@@ -1,7 +1,7 @@
{
"name": "peak",
"match": {
"type": [
"geometry": [
"point",
"vertex"
],

View File

@@ -1,7 +1,7 @@
{
"name": "scrub",
"match": {
"type": [
"geometry": [
"area"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "spring",
"match": {
"type": [
"geometry": [
"point",
"vertex"
],

View File

@@ -1,7 +1,7 @@
{
"name": "tree",
"match": {
"type": [
"geometry": [
"point",
"vertex"
],

View File

@@ -1,7 +1,7 @@
{
"name": "water",
"match": {
"type": [
"geometry": [
"area"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "lake",
"match": {
"type": [
"geometry": [
"area"
],
"tags": {

View File

@@ -1,7 +1,7 @@
{
"name": "pond",
"match": {
"type": [
"geometry": [
"area"
],
"tags": {

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