2021-10-14 03:46:09 +02:00
|
|
|
export default interface MoveConfigJson {
|
|
|
|
/**
|
2023-06-23 17:28:44 +02:00
|
|
|
*
|
|
|
|
* question: Should moving this type of point to improve the accuracy be allowed?
|
|
|
|
* iftrue: This point can be moved to improve the accuracy
|
|
|
|
* ifunset: (default) This point can be moved to improve the accuracy
|
|
|
|
* iffalse: This point cannot be moved to improve the accuracy
|
2021-10-14 03:46:09 +02:00
|
|
|
*/
|
|
|
|
enableImproveAccuracy?: true | boolean
|
|
|
|
/**
|
2023-06-23 17:28:44 +02:00
|
|
|
*
|
|
|
|
* question: Should moving this type of point due to a relocation be allowed?
|
|
|
|
*
|
|
|
|
* This will erase the attributes `addr:street`, `addr:housenumber`, `addr:city` and `addr:postcode`
|
|
|
|
*
|
|
|
|
* iftrue: This type of point can be moved due to a relocation (and will remove address information when this is done)
|
|
|
|
* ifunset: (default) This type of point can be moved due to a relocation (and will remove address information when this is done)
|
|
|
|
* iffalse: This type of point cannot be moved due to a relocation
|
2021-10-14 03:46:09 +02:00
|
|
|
*/
|
|
|
|
enableRelocation?: true | boolean
|
|
|
|
}
|