diff options
author | Keith Packard <keithp@keithp.com> | 2018-10-06 12:00:45 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-06 12:01:21 -0700 |
commit | 5a95ed9c9419c15352b8dc1d895c9adce30f99f5 (patch) | |
tree | 2c3d40dc4c361d6221f6dfe184e4430f0405d9af /doc/map-loading.dot | |
parent | cc70746e8efa6cadb23cbfcb11ddb51574c512a9 (diff) |
Add map-loading documentation
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'doc/map-loading.dot')
-rw-r--r-- | doc/map-loading.dot | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/map-loading.dot b/doc/map-loading.dot new file mode 100644 index 00000000..f5be02ef --- /dev/null +++ b/doc/map-loading.dot @@ -0,0 +1,35 @@ +digraph map_loading { + edge [arrowsize=0.5; style="setlinewidth(2)"] + node [style=filled; fontcolor=white; color=invis; shape=box; arrowsize=0.5; fontname="DejaVu Sans,sans-serif"; fontsize=12; height=0.2;]; + edge [decorate=true; fontname="DejaVu Sans,sans-serif"; fontsize=8]; + graph [fontname="DejaVu Sans,sans-serif"; fontsize=15; ] + rankdir="TB"; + ranksep=0.5; + nodesep=0.5; + color=invis; + fillcolor="#c0c0c0"; + fontcolor="white"; + + app -> apache [label="AltOS Map URI"] + apache -> app [label="Google Map tile"] + + apache -> cgi_script [label="AltOS Map URI"] + cgi_script -> cache_manager [label="AltOS Tile Request"] + + cgi_script -> apache [label="Google Map tile"] + + cache_manager -> cgi_script [label="AltOS Tile Reply"] + + cache_manager -> disk_files [label="AltOS tile files" dir="both"] + cache_manager -> google_maps [label="Google Map URI"] + + google_maps -> cache_manager [label="Google Map tile"] + + app [color="#885931" label="Application"] + apache [color="#d12127" label="Apache Web Server"] + cgi_script [color="#551a8b" label="AltOS Map CGI Script"] + cache_manager [color="#c75b1c" label="AltOS Map Cache Manager"] + disk_files [color="#4f81bd" label="File System"] + google_maps [color="#4cbb44" label="Google Maps"] +} + |