@kimap/indoor-positioning-sdk-vue2 4.2.6 → 4.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -34,6 +34,9 @@ var modules = require('./src/modules/index.js');
|
|
|
34
34
|
// 导出 DOM 标记类
|
|
35
35
|
var KMDOMMarker = require('./src/KMDOMMarker.js');
|
|
36
36
|
|
|
37
|
+
// 导出 KMUtil 工具类
|
|
38
|
+
var KMUtil = KimapCore.KMUtil;
|
|
39
|
+
|
|
37
40
|
module.exports = {
|
|
38
41
|
// Vue组件
|
|
39
42
|
KimapComponent: KimapComponent,
|
|
@@ -47,6 +50,9 @@ module.exports = {
|
|
|
47
50
|
// DOM 标记类(面向对象风格)
|
|
48
51
|
KMDOMMarker: KMDOMMarker,
|
|
49
52
|
|
|
53
|
+
// 路径规划工具类
|
|
54
|
+
KMUtil: KMUtil,
|
|
55
|
+
|
|
50
56
|
// 工具类
|
|
51
57
|
BuildingCoordSystem: utils.BuildingCoordSystem,
|
|
52
58
|
CoordTransformer: utils.CoordTransformer,
|