-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathgis-stack.dot
More file actions
34 lines (27 loc) · 1.12 KB
/
gis-stack.dot
File metadata and controls
34 lines (27 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
digraph gis_stack{
fontname="Microsoft YaHei";
fontsize=12;
rankdir=LR;
graph [dpi=180];
node [shape="Mrecord", fontname="Microsoft YaHei", fontsize=10];
edge [color="#F1C40F", fontname="Microsoft YaHei", fontsize=10];
openlayers [shape="none", image="logos/browser-icon-chrome-resized.png", label=""];
leaflet [shape="none", image="logos/browser-icon-firefox-resized.png", label=""];
tile_cache [label="TileCache", style="filled", color="orange"];
mapnik [label="Mapnik", style="filled", color="orange"];
subgraph cluster_datasource {
label = "Datasource"
style="filled";
color="cornsilk";
node [style="filled", color="orange"];
postgis [label="PostGIS database"]
shapefile [label="ERSI shapefiles"]
osm [label="OpenStreetMap"]
}
openlayers -> tile_cache [label="WMS over HTTP"];
leaflet -> tile_cache [label="WMS over HTTP"];
tile_cache -> mapnik [label="fetching & caching"];
mapnik -> postgis [label="rendering & styling"];
mapnik -> shapefile [style="dashed"];
mapnik -> osm [style="dashed"];
}