egovamap 0.35.41 → 0.35.42
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 +7 -0
- package/package.json +1 -1
package/egovamap/egovaglobe.js
CHANGED
|
@@ -3821,6 +3821,15 @@ var EGovaGlobeMap = function (
|
|
|
3821
3821
|
parentScene,
|
|
3822
3822
|
false
|
|
3823
3823
|
);
|
|
3824
|
+
};
|
|
3825
|
+
that.setToolBarStyle = function (position, direction, display, style) {
|
|
3826
|
+
if (scene == null) return;
|
|
3827
|
+
scene.fire(
|
|
3828
|
+
msgPrefix + ':setToolBarStyle',
|
|
3829
|
+
{ args: [position, direction, display, style] },
|
|
3830
|
+
parentScene,
|
|
3831
|
+
false
|
|
3832
|
+
);
|
|
3824
3833
|
};
|
|
3825
3834
|
that.init();
|
|
3826
3835
|
};
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5672,6 +5672,13 @@ var EGovaMap = function (
|
|
|
5672
5672
|
globeMap.longitudinalSectionalAnalysis(layerName, data, options);
|
|
5673
5673
|
}
|
|
5674
5674
|
};
|
|
5675
|
+
|
|
5676
|
+
that.setToolBarStyle = function (position, direction, display, style) {
|
|
5677
|
+
if (scene == null) return;
|
|
5678
|
+
if (globeMap != null) {
|
|
5679
|
+
globeMap.setToolBarStyle(position, direction, display, style);
|
|
5680
|
+
}
|
|
5681
|
+
};
|
|
5675
5682
|
|
|
5676
5683
|
that.addAnimatedLines = function (data, options) {
|
|
5677
5684
|
if (scene == null) return;
|