egovamap 0.18.9 → 0.18.10
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/egovamap.js +4 -2
- package/package.json +1 -1
package/egovamap/egovamap.js
CHANGED
|
@@ -1327,8 +1327,10 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
|
|
|
1327
1327
|
if (globeMap != null && gisMap != null) {
|
|
1328
1328
|
//三维先调用queryFeature查询要素再用locateFeatureByCoords显示
|
|
1329
1329
|
var keyvalueWhere = '';
|
|
1330
|
-
if (!keyValue || keyValue.trim() == '' || !keyField || keyField.trim() == '')
|
|
1331
|
-
|
|
1330
|
+
if (!keyValue || keyValue.trim() == '' || !keyField || keyField.trim() == ''){
|
|
1331
|
+
|
|
1332
|
+
keyvalueWhere = '';
|
|
1333
|
+
}
|
|
1332
1334
|
else {
|
|
1333
1335
|
var whereList = [];
|
|
1334
1336
|
|