Various small fixes to presets, add slow roads to speelplekken-theme

This commit is contained in:
Pieter Vander Vennet 2021-03-14 20:40:54 +01:00
parent a6c004d363
commit f4a59d3a9e
9 changed files with 233 additions and 8 deletions

View file

@ -140,8 +140,20 @@ export interface LayerConfigJson {
* NB: if no presets are defined, the popup to add new points doesn't show up at all
*/
presets?: {
/**
* The title - shown on the 'add-new'-button.
*/
title: string | any,
/**
* The tags to add. It determines the icon too
*/
tags: string[],
/**
* The _first sentence_ of the description is shown on the button of the `add` menu.
* The full description is shown in the confirmation dialog.
*
* (The first sentence is until the first '.'-character in the description)
*/
description?: string | any,
}[],