egovamap 0.29.2 → 0.29.3

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.
@@ -2738,6 +2738,10 @@ var EGovaGISMap = function (
2738
2738
  that.callMap("closePointSelect");
2739
2739
  }
2740
2740
 
2741
+ that.coordConvert = function (type, x, y, callback) {
2742
+ that.callMap("coordConvert", type, x, y, callback);
2743
+ }
2744
+
2741
2745
  that.init();
2742
2746
  };
2743
2747
 
@@ -5212,6 +5212,16 @@ var EGovaMap = function (
5212
5212
  }
5213
5213
  }
5214
5214
 
5215
+ // 坐标转换
5216
+ that.coordConvert = function (type, x, y, callback) {
5217
+ if (scene == null) {
5218
+ return;
5219
+ }
5220
+ if (gisMap != null) {
5221
+ gisMap.coordConvert(type, x, y, callback);
5222
+ }
5223
+ }
5224
+
5215
5225
  that.initMap(containerID, callback, mapType, mapConfig);
5216
5226
 
5217
5227
  // EGovaBI(globeMap).bind(this)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.29.2",
3
+ "version": "0.29.3",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {