@kimap/indoor-positioning-sdk-vue2 4.1.3 → 4.1.4
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 +1 -1
- package/src/core/KimapSDK.js +4 -0
package/package.json
CHANGED
package/src/core/KimapSDK.js
CHANGED
|
@@ -517,6 +517,10 @@ KimapSDK.prototype.getControls = function() {
|
|
|
517
517
|
return this.core ? this.core.controls : null;
|
|
518
518
|
};
|
|
519
519
|
|
|
520
|
+
KimapSDK.prototype.getCoordinateSystem = function() {
|
|
521
|
+
return this.core ? this.core.coordinateSystem : null;
|
|
522
|
+
};
|
|
523
|
+
|
|
520
524
|
/**
|
|
521
525
|
* 销毁 SDK
|
|
522
526
|
*/
|