egovamap 0.35.16 → 0.35.17
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/egovamap/egovaglobe.js +9 -0
- package/egovamap/egovamap.js +9 -0
- package/package.json +1 -1
package/egovamap/egovaglobe.js
CHANGED
|
@@ -3769,6 +3769,15 @@ var EGovaGlobeMap = function (
|
|
|
3769
3769
|
false
|
|
3770
3770
|
);
|
|
3771
3771
|
};
|
|
3772
|
+
that.bar3D = function (options) {
|
|
3773
|
+
if (scene == null) return;
|
|
3774
|
+
scene.fire(
|
|
3775
|
+
msgPrefix + ':bar3D',
|
|
3776
|
+
{ args: [options] },
|
|
3777
|
+
parentScene,
|
|
3778
|
+
false
|
|
3779
|
+
);
|
|
3780
|
+
};
|
|
3772
3781
|
that.init();
|
|
3773
3782
|
};
|
|
3774
3783
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5616,6 +5616,15 @@ var EGovaMap = function (
|
|
|
5616
5616
|
globeMap.changeImageryPriority(options);
|
|
5617
5617
|
}
|
|
5618
5618
|
};
|
|
5619
|
+
/**
|
|
5620
|
+
* 添加3d柱状图
|
|
5621
|
+
*/
|
|
5622
|
+
that.bar3D = function (options) {
|
|
5623
|
+
if (scene == null) return;
|
|
5624
|
+
if (globeMap != null) {
|
|
5625
|
+
globeMap.bar3D(options);
|
|
5626
|
+
}
|
|
5627
|
+
};
|
|
5619
5628
|
|
|
5620
5629
|
that.initMap(containerID, callback, mapType, mapConfig, mapParam);
|
|
5621
5630
|
|