@kimap/indoor-positioning-sdk-vue2 3.6.0 → 3.6.1
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/package.json +2 -1
- package/src/KimapCore.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimap/indoor-positioning-sdk-vue2",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.1",
|
|
4
4
|
"description": "Vue2自包含室内定位SDK - 完全兼容Webpack3+Babel6 | Vue2 Self-Contained Indoor Positioning SDK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"EXAMPLE.vue"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
+
"build": "node build.js",
|
|
15
16
|
"prepublishOnly": "echo 'Ready to publish'"
|
|
16
17
|
},
|
|
17
18
|
"keywords": [
|
package/src/KimapCore.js
CHANGED
|
@@ -1357,7 +1357,7 @@ KimapSDK.prototype.loadKMData = function() {
|
|
|
1357
1357
|
})
|
|
1358
1358
|
.then(function(result) {
|
|
1359
1359
|
console.log('✅ 3D家具模型加载完成:', result);
|
|
1360
|
-
return { success: true,
|
|
1360
|
+
return { success: true, loaded: result.loaded, failed: result.failed };
|
|
1361
1361
|
})
|
|
1362
1362
|
.catch(function(error) {
|
|
1363
1363
|
console.error('❌ 加载3D家具模型失败:', error);
|