egovamap 0.21.1 → 0.21.2
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/egovaBI.js +8 -0
- package/package.json +1 -1
package/egovamap/egovaBI.js
CHANGED
|
@@ -1255,6 +1255,14 @@ var egovaBI = function(globeMap, gisMap, mapType){
|
|
|
1255
1255
|
gisMap.setMapOpacity(opacity);
|
|
1256
1256
|
}
|
|
1257
1257
|
}
|
|
1258
|
+
|
|
1259
|
+
//地理坐标转屏幕坐标
|
|
1260
|
+
this.convertMapToScreen=function (list) {
|
|
1261
|
+
if (gisMap != null) {
|
|
1262
|
+
return gisMap.convertMapToScreen(list);
|
|
1263
|
+
}
|
|
1264
|
+
return list;
|
|
1265
|
+
}
|
|
1258
1266
|
}
|
|
1259
1267
|
|
|
1260
1268
|
|