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.
@@ -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
  };
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.41",
3
+ "version": "0.35.42",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {