mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00
2 KiB
2 KiB
Frequently Asked Questions (FAQ)
Which syntax is allowed in description fields? {: #text-formatting }
*single star for italic*
→ single star for italic**double star for bold**
→ double star for bold# one hash for main heading
⤵one hash for main heading
## two hashes for second heading
⤵two hashes for second heading
### three hashes for third heading
⤵three hashes for third heading
Simple link: [[http://example.com]]
→ Simple link: http://example.comLink with text: [[http://example.com|text of the link]]
→ Link with text: text of the link--- for a horizontal rule
⤵
What are the available keyboard shortcuts? {: #keyboard-shortcuts}
With macOS, replace Ctrl
by Cmd
.
Globals
Ctrl+F
→ open search panelCtrl+E
→ switch to edit modeEscape
→ close open panel or dialogShift+drag
on the map → zoom to this map extentShift+click
on the zoom buttons → zoom in/out by 3 levels
In edit mode
Ctrl+E
→ back to preview modeCtrl+S
→ save mapCtrl+Z
→ undo all changes until last saveCtrl+M
→ add a new markerCtrl+P
→ start a new polygonCtrl+L
→ start a new lineCtrl+I
→ open importer panelCtrl+O
→ open importer panel and file browserCtrl++
→ zoom inCtrl+-
→ zoom outShift+click
on a feature → edit this featureCtrl+Shift+click
on a feature → edit this feature layer
Which syntax is allowed in conditional rules? {: #conditional-rules }
mycolumn=odd
→ will match features whose columnmycolumn
equalodd
mycolumn!=odd
→ will match features whose columnmycolumn
is missing or different fromodd
mycolumn>12
→ will match features whose columnmycolumn
is greater than12
(as number)mycolumn<12.34
→ will match features whose columnmycolumn
is lower than12.34
(as number)
When the condition match, the associated style will be applied to the corresponding feature.