forked from MapComplete/MapComplete
Merge pull request #1025 from pietervdvn/post-partner
Post partners and parcel lockers
This commit is contained in:
commit
f1c57c7f8c
9 changed files with 451 additions and 9 deletions
|
@ -234,4 +234,4 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,34 @@
|
|||
"es": "Oficina de Correo",
|
||||
"fr": "Bureau de poste",
|
||||
"nb_NO": "Postkontor"
|
||||
}
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"post_office=post_partner",
|
||||
"name="
|
||||
]
|
||||
},
|
||||
"then": {
|
||||
"en": "Post partner at a shop",
|
||||
"de": "Postfiliale im Einzelhandel",
|
||||
"nl": "Postpartner in een winkel"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"post_office=post_partner",
|
||||
"name~*"
|
||||
]
|
||||
},
|
||||
"then": {
|
||||
"en": "Post partner at {name}",
|
||||
"de": "Postfiliale im {name}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"description": {
|
||||
"en": "A layer showing post offices.",
|
||||
|
@ -98,6 +125,240 @@
|
|||
}
|
||||
],
|
||||
"id": "OH"
|
||||
},
|
||||
{
|
||||
"id": "post_partner",
|
||||
"question": {
|
||||
"en": "Is this a post partner?"
|
||||
},
|
||||
"condition": "post_office=post_partner",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office=post_partner",
|
||||
"then": {
|
||||
"en": "This shop is a post partner"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office=",
|
||||
"then": {
|
||||
"en": "This shop is not a post partner"
|
||||
},
|
||||
"addExtraTags": [
|
||||
"was:post_office=post_partner"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "partner-brand",
|
||||
"render": {
|
||||
"en": "This location offers services for {post_office:brand}"
|
||||
},
|
||||
"question": {
|
||||
"en": "For which brand does this location offer services?"
|
||||
},
|
||||
"condition": "post_office=post_partner",
|
||||
"freeform": {
|
||||
"key": "post_office:brand",
|
||||
"type": "string"
|
||||
},
|
||||
"multiAnswer": true,
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office:brand=DHL",
|
||||
"then": {
|
||||
"en": "This location offers services for DHL"
|
||||
},
|
||||
"hideInAnswer": "_country=de"
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=DPD",
|
||||
"then": {
|
||||
"en": "This location offers services for DPD"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=GLS",
|
||||
"then": {
|
||||
"en": "This location offers services for GLS"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=UPS",
|
||||
"then": {
|
||||
"en": "This location offers services for UPS"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=DHL Paketshop",
|
||||
"then": {
|
||||
"en": "This location is a DHL Paketshop"
|
||||
},
|
||||
"hideInAnswer": "_country!=de"
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=Hermes PaketShop",
|
||||
"then": {
|
||||
"en": "This location is a Hermes PaketShop"
|
||||
},
|
||||
"hideInAnswer": "_country!=de"
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=PostNL",
|
||||
"then": {
|
||||
"en": "This location is a PostNL-point"
|
||||
},
|
||||
"hideInAnswer": {
|
||||
"and": [
|
||||
"_country!=nl",
|
||||
"_country!=be"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:brand=bpost",
|
||||
"then": {
|
||||
"en": "This location offers services for bpost"
|
||||
},
|
||||
"hideInAnswer": "_country!=be"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "letter-from",
|
||||
"render": {
|
||||
"en": "You can post letters with these companies: {post_office:letter_from}"
|
||||
},
|
||||
"question": {
|
||||
"en": "Can you post a letter here?"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "post_office:letter_from",
|
||||
"type": "string"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office:letter_from=yes",
|
||||
"then": {
|
||||
"en": "You can post letters here"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:letter_from=no",
|
||||
"then": {
|
||||
"en": "You can't post letters here"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "parcel-from",
|
||||
"render": {
|
||||
"en": "You can post parcels with these companies: {post_office:parcel_from}"
|
||||
},
|
||||
"question": {
|
||||
"en": "Can you send a parcel here?"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "post_office:parcel_from",
|
||||
"type": "string"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office:parcel_from=yes",
|
||||
"then": {
|
||||
"en": "You can send parcels here"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:parcel_from=no",
|
||||
"then": {
|
||||
"en": "You can't send parcels here"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "parcel-pickup",
|
||||
"render": {
|
||||
"en": "You can pick up parcels from these companies: {post_office:parcel_pickup}"
|
||||
},
|
||||
"question": {
|
||||
"en": "Can you pick up missed parcels here?"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "post_office:parcel_pickup",
|
||||
"type": "string"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office:parcel_pickup=yes",
|
||||
"then": {
|
||||
"en": "You can pick up missed parcels here"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:parcel_pickup=no",
|
||||
"then": {
|
||||
"en": "You can't pick up missed parcels here"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "parcel-to",
|
||||
"render": {
|
||||
"en": "You can send parcels to here for pickup with these companies: {post_office:parcel_to}"
|
||||
},
|
||||
"question": {
|
||||
"en": "Can you send parcels to here for pickup?"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "post_office:parcel_to",
|
||||
"type": "string"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office:parcel_to=yes",
|
||||
"then": {
|
||||
"en": "You can send parcels to here for pickup"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:parcel_to=no",
|
||||
"then": {
|
||||
"en": "You can't send parcels to here for pickup"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "stamps",
|
||||
"render": {
|
||||
"en": "You can buy stamps from companies: {post_office:stamps}"
|
||||
},
|
||||
"question": {
|
||||
"en": "Can you buy stamps here?"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "post_office:stamps",
|
||||
"type": "string"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "post_office:stamps=yes",
|
||||
"then": {
|
||||
"en": "You can buy stamps here"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "post_office:stamps=no",
|
||||
"then": {
|
||||
"en": "You can't buy stamps here"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"presets": [
|
||||
|
@ -132,6 +393,10 @@
|
|||
{
|
||||
"if": "opening_hours~*",
|
||||
"then": "isOpen"
|
||||
},
|
||||
{
|
||||
"if": "shop~*",
|
||||
"then": "./assets/themes/shops/shop.svg"
|
||||
}
|
||||
],
|
||||
"iconSize": "40,40,center",
|
||||
|
@ -145,4 +410,4 @@
|
|||
"width": "1"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -50,4 +50,4 @@
|
|||
"postoffices",
|
||||
"parcel_lockers"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue