Richtext
Multiple lines of Markdown formatted text.
Richtextâ
The Richtext feature allows you to display multiple lines of formatted text. Unlike signs, though, they can't be used as a hyperlink.

Editorâ

Textâ
The text you want to display, in markdown format.
info
It is possible to style text using css by placing something like this after your text: {:style="color:red;background:green;font-size:18px"}
Blend modeâ
This is used to determine how the text is blended with whatever is behind it. The available options are Combine, Multiply, and Screen.
Invertedâ
When ticked, the text will be white on a black background, rather than the other way around.
Scripting Propertiesâ
Scripting Properties {.tabset}â
textâ
String;
get()â
feature.get('text')
// returns: "https://..."
set()â
feature.set({'text':"my paragraph"})
defaultâ
""
blendModeâ
String
get()â
feature.get('blendMode')
// returns: 'Combine'
set()â
feature.set({'blendMode': 'Combine'})
defaultâ
"Multiply"
invertedâ
Boolean;
get()â
feature.get('inverted')
// returns: false
set()â
feature.set({'inverted': true})
defaultâ
false
typeâ
String;
get()â
feature.get('type')
/* or */
feature.type
// returns: 'richtext'