Merge branch 'develop' into feature/maproulette

This commit is contained in:
Pieter Vander Vennet 2022-07-27 14:31:20 +02:00
commit 98d6806449
3 changed files with 21 additions and 7 deletions

View file

@ -102,7 +102,17 @@ export interface MappingConfigJson {
/**
* If chosen as answer, these tags will be applied as well onto the object.
* Not compatible with multiAnswer
* Not compatible with multiAnswer.
*
* This can be used e.g. to erase other keys which indicate the 'not' value:
*```json
* {
* "if": "crossing:marking=rainbow",
* "then": "This is a rainbow crossing",
* "addExtraTags": "not:crossing:marking="
* }
* ```
*
*/
addExtraTags?: string[]