forked from MapGIS/WebClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayerType.js
More file actions
63 lines (55 loc) · 904 Bytes
/
LayerType.js
File metadata and controls
63 lines (55 loc) · 904 Bytes
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
import { CesiumZondy } from '../core/Base';
/**
* 描述图层类型.
*
* @author 基础平台研发中心·冯桂英
* @enum {Number}
*
* @see Layer#type
*/
const LayerType = {
/**
* 未知类型.
*
* @type {Number}
* @constant
*/
UNKNOWN: 0,
/**
* 简单要素类矢量层.
*
* @type {Number}
* @constant
*/
VECTORLAYER: 1,
/**
* 简单要素类模型层.
*
* @type {Number}
* @constant
*/
MODELLAYER: 2,
/**
* 地形层.
*
* @type {Number}
* @constant
*/
TERRAINLAYER: 3,
/**
* 瓦片层.
*
* @type {Number}
* @constant
*/
TILEIMAGELAYER: 8,
/**
* m3d模型层.
*
* @type {Number}
* @constant
*/
M3DLAYER: 10
};
export default Object.freeze(LayerType);
CesiumZondy.LayerType = LayerType;