forked from 11D-Beyonder/Simple-Digital-Earth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigitalMap.earth
83 lines (83 loc) · 2.49 KB
/
DigitalMap.earth
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<map name="globe" type="geocentric" version="2">
<!-- 定义全球影像-->
<image name="globeImage" driver="gdal">
<url>../data/globe/globe.tif</url>
</image>
<!-- 全球高程-->
<heightfield name="globeHeightfiled" driver="gdal">
<url>../data/heightfield/30m.tif</url>
</heightfield>
<image name="detail" driver="composite">
<!-- 局部高清纹理-->
<image name="zhejiangImage" driver="gdal">
<url>../data/detail/zhejiang.tif</url>
</image>
<!-- <image name="huzhouImage" driver="gdal">
<url>../data/detail/huzhou.tif</url>
</image> -->
<image name="deqingImage" driver="gdal">
<url>../data/detail/deqing.tif</url>
</image>
<image name="plateauImage" driver="gdal">
<url>../data/detail/plateau.tif</url>
</image>
</image>
<!-- 国界线(黄色)与省界线(白色)-->
<image name="countryBoundary" driver="agglite">
<features name="world" driver="ogr">
<url>../data/shpFile/world.shp</url>
<build_spatial_index>true</build_spatial_index>
</features>
<geomerty_type>line</geomerty_type>
<relative_line_size>true</relative_line_size>
<styles>
<style type="text/css">
world {
stroke: #ffff00;
stroke-opacity: 1.0;
stroke-width: 2.0;
}
</style>
</styles>
</image>
<image name="provinceBoundary" driver="agglite">
<features name="china" driver="ogr">
<url>../data/shpFile/china.shp</url>
<build_spatial_index>true</build_spatial_index>
</features>
<geomerty_type>line</geomerty_type>
<relative_line_size>true</relative_line_size>
<styles>
<style type="text/css">
china {
stroke: #ffffff;
stroke-opacity: 1.0;
stroke-width: 1.5;
}
</style>
</styles>
</image>
<image name="contour" driver="agglite">
<features name="contour" driver="ogr">
<url>../data/shpFile/plateau.shp</url>
<build_spatial_index>true</build_spatial_index>
</features>
<geomerty_type>line</geomerty_type>
<relative_line_size>true</relative_line_size>
<styles>
<style type="text/css">
china {
stroke: #000000;
stroke-opacity: 1.0;
stroke-width: 2;
}
</style>
</styles>
</image>
<!-- 文件缓存-->
<options>
<cache type="filesystem">
<path>./FileCache</path>
</cache>
</options>
</map>