Merge pull request #6275 from westnordost/presets-more-artwork-types

Add bust, graffiti and installation artwork type preset
This commit is contained in:
Quincy Morgan
2019-05-01 09:04:47 -07:00
committed by GitHub
3 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"icon": "maki-art-gallery",
"fields": [
"name",
"artist",
"material"
],
"geometry": [
"point", "vertex"
],
"tags": {
"tourism": "artwork",
"artwork_type": "bust"
},
"reference": {
"key": "artwork_type"
},
"terms": [
"figure"
],
"name": "Bust"
}

View File

@@ -0,0 +1,26 @@
{
"icon": "maki-art-gallery",
"fields": [
"name",
"artist"
],
"geometry": [
"point",
"vertex",
"line",
"area"
],
"tags": {
"tourism": "artwork",
"artwork_type": "graffiti"
},
"reference": {
"key": "artwork_type"
},
"terms": [
"Street Artwork",
"Guerilla Artwork",
"Graffiti Artwork"
],
"name": "Graffiti"
}

View File

@@ -0,0 +1,26 @@
{
"icon": "maki-art-gallery",
"fields": [
"name",
"artist"
],
"geometry": [
"point",
"vertex",
"line",
"area"
],
"tags": {
"tourism": "artwork",
"artwork_type": "installation"
},
"reference": {
"key": "artwork_type"
},
"terms": [
"interactive art",
"intervention art",
"modern art"
],
"name": "Art Installation"
}