We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2f173 commit db43ce4Copy full SHA for db43ce4
doc/diagrams/tile-load-states.mmd
@@ -9,6 +9,10 @@ stateDiagram-v2
9
[*] --> unloaded
10
unloaded --> contentLoading: Start Async Loading
11
contentLoading --> contentLoaded: Done Async Loading
12
+ contentLoading --> failed: Load Failed
13
+ contentLoading --> failedTemp: Retry Later
14
+ failedTemp --> contentLoading: Start Async Loading
15
contentLoaded --> done: Main Thread Loading
16
contentLoaded --> unloaded: Unload Tile Content
- done --> unloaded: Unload Tile Content
17
+ done --> unloading: Start Unloading
18
+ unloading --> unloaded: Done Unloading
0 commit comments