forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVectorTileFormat.js
More file actions
34 lines (32 loc) · 887 Bytes
/
VectorTileFormat.js
File metadata and controls
34 lines (32 loc) · 887 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
/* Copyright© 2000 - 2023 SuperMap Software Co.Ltd. All rights reserved.
* This program are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
import '../core/Base';
/**
* @enum VectorTileFormat
* @category BaseTypes Constant
* @description 矢量瓦片格式。
* @type {string}
* @usage
* ```
* // 浏览器
* <script type="text/javascript" src="{cdn}"></script>
* <script>
* const result = {namespace}.VectorTileFormat.JSON;
*
* </script>
* // ES6 Import
* import { VectorTileFormat } from '{npm}';
*
* const result = VectorTileFormat.JSON;
* ```
*/
var VectorTileFormat = {
/** JSON */
JSON: "JSON",
/** MVT */
MVT: "MVT",
/** PBF */
PBF: "PBF"
};
export { VectorTileFormat };