egovamap 0.35.50 → 0.35.52
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/egovagis.js
CHANGED
|
@@ -1100,12 +1100,12 @@ var EGovaGISMap = function (
|
|
|
1100
1100
|
/**
|
|
1101
1101
|
* 新聚类传入数据的接口
|
|
1102
1102
|
*/
|
|
1103
|
-
that.showMultiObjectCurrentPositionWithData = function (jsonInfo) {
|
|
1103
|
+
that.showMultiObjectCurrentPositionWithData = function (jsonInfo, layerID) {
|
|
1104
1104
|
if (scene == null) return;
|
|
1105
1105
|
scene.fire(
|
|
1106
1106
|
msgPrefix + ":showMultiObjectCurrentPositionWithData",
|
|
1107
1107
|
{
|
|
1108
|
-
args: [jsonInfo],
|
|
1108
|
+
args: [jsonInfo, layerID],
|
|
1109
1109
|
},
|
|
1110
1110
|
parentScene,
|
|
1111
1111
|
false
|
|
@@ -1212,11 +1212,12 @@ var EGovaGISMap = function (
|
|
|
1212
1212
|
/**
|
|
1213
1213
|
* 新聚类传入数据的接口
|
|
1214
1214
|
*/
|
|
1215
|
-
that.showMultiObjectCurrentPositionWithData = function (jsonInfo) {
|
|
1215
|
+
that.showMultiObjectCurrentPositionWithData = function (jsonInfo, layerID) {
|
|
1216
1216
|
if (scene == null) return;
|
|
1217
1217
|
that.callMap(
|
|
1218
1218
|
"showMultiObjectCurrentPositionWithData",
|
|
1219
|
-
jsonInfo
|
|
1219
|
+
jsonInfo,
|
|
1220
|
+
layerID
|
|
1220
1221
|
);
|
|
1221
1222
|
};
|
|
1222
1223
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -2206,7 +2206,7 @@ var EGovaMap = function (
|
|
|
2206
2206
|
/**
|
|
2207
2207
|
* 新聚类传入数据的接口
|
|
2208
2208
|
*/
|
|
2209
|
-
that.showMultiObjectCurrentPositionWithData = function (jsonInfo) {
|
|
2209
|
+
that.showMultiObjectCurrentPositionWithData = function (jsonInfo, layerID) {
|
|
2210
2210
|
if (scene == null) return;
|
|
2211
2211
|
if (gisMap != null) {
|
|
2212
2212
|
gisMap.showMultiObjectCurrentPositionWithData.apply(
|
package/egovamap/egovamobile.js
CHANGED