@kq_npm/client3d_webgl_vue 3.0.8-beta → 3.0.9-beta
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/adddata/index.js +250 -142
- package/adddata/style/adddata.css +1 -1
- package/baseterraingallery/index.js +2 -1
- package/baseterraingallery/style/baseterraingallery.css +1 -1
- package/excavatefillanalysis/index.js +2 -13
- package/flight/index.js +42 -177
- package/floodanalysis/index.js +56 -194
- package/gpuspatialquery/index.js +42 -177
- package/headertemp/index.js +34 -83
- package/index.js +1011 -564
- package/isolineanalysis/index.js +42 -177
- package/measure/index.js +42 -177
- package/modelselect/index.js +41 -177
- package/package.json +1 -1
- package/particleeffect/index.js +40 -176
- package/planeclip/index.js +42 -177
- package/profileanalysis/index.js +42 -177
- package/roller/index.js +43 -188
- package/scenceview/index.js +1065 -635
- package/screenshot/index.js +47 -179
- package/screenshot/style/screenshot.css +1 -1
- package/shadowanalysis/index.js +42 -177
- package/sightlineanalysis/index.js +41 -177
- package/skylineanalysis/index.js +42 -177
- package/slopeanalysis/index.js +42 -177
- package/style.css +1 -1
- package/terrainoperation/index.js +42 -177
- package/underground/index.js +32 -20
- package/viewshedanalysis/index.js +40 -176
- package/weathereffect/index.js +42 -177
package/scenceview/index.js
CHANGED
|
@@ -184,183 +184,271 @@ class AddDataViewModel {
|
|
|
184
184
|
this._layerManager = scenceView._layerManager;
|
|
185
185
|
this._geojsonStyle.billboard.image = options.billboardImage;
|
|
186
186
|
this._language = scenceView._language;
|
|
187
|
+
this._geometryServerUrl = options.geometryServerUrl;
|
|
188
|
+
this._geometryServerToken = options.geometryServerToken;
|
|
187
189
|
} //解析文件
|
|
188
190
|
|
|
189
191
|
|
|
190
|
-
parseFile(file,
|
|
191
|
-
var reader = new FileReader();
|
|
192
|
-
reader.readAsText(file); //文本
|
|
193
|
-
//readAsDataURL(file); //base64 图片
|
|
194
|
-
//readAsArrayBuffer(file); //原始二进制数据
|
|
195
|
-
//readAsBinaryString(file);//二进制字符串
|
|
196
|
-
//reader.readAsBinaryString(file);
|
|
197
|
-
|
|
192
|
+
parseFile(file, cb) {
|
|
198
193
|
var that = this;
|
|
199
|
-
|
|
200
|
-
reader.onload = function (event) {
|
|
201
|
-
var ret = event.target.result;
|
|
194
|
+
return new Promise((resolve, reject) => {
|
|
202
195
|
var ext = file.name.replace(/.+\./, "").toLowerCase(); //文件扩展名
|
|
203
196
|
|
|
204
197
|
var name = file.name.replace(/(.*\/)*([^.]+).*/gi, "$2"); //文件名
|
|
205
198
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
199
|
+
if (ext === "zip") {
|
|
200
|
+
(0,util_.uploadSHP)(that._geometryServerUrl, file, that._geometryServerToken, null, function (res) {
|
|
201
|
+
if (res) {
|
|
202
|
+
if (res.srs) {
|
|
203
|
+
//返回的geojson数据已经做了处理,返回数据坐标系为4326
|
|
204
|
+
delete res.srs;
|
|
205
|
+
}
|
|
212
206
|
|
|
213
|
-
|
|
214
|
-
|
|
207
|
+
var ds = new Cesium.Kq3dGeoJsonDataSource(name);
|
|
208
|
+
ds.load(res, that._geojsonStyle).then(ds => {
|
|
209
|
+
ds.entities.values.forEach(entity => {
|
|
210
|
+
if (entity.polygon) {
|
|
211
|
+
entity.polyline = {
|
|
212
|
+
positions: entity.polygon.hierarchy._value.positions,
|
|
213
|
+
width: that._geojsonStyle.polygon.outlineWidth,
|
|
214
|
+
material: that._geojsonStyle.polygon.outlineColor
|
|
215
|
+
};
|
|
216
|
+
}
|
|
217
|
+
});
|
|
215
218
|
|
|
216
|
-
|
|
217
|
-
ret = data;
|
|
218
|
-
}
|
|
219
|
-
} catch (e) {}
|
|
219
|
+
that._viewer.dataSources.add(ds);
|
|
220
220
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
221
|
+
ds.autoAvoid(that._viewer);
|
|
222
|
+
|
|
223
|
+
that._viewer.flyTo(ds);
|
|
224
|
+
|
|
225
|
+
resolve("success");
|
|
226
|
+
var layer = {
|
|
227
|
+
guid: ds.guid,
|
|
228
|
+
name: name,
|
|
229
|
+
visible: true,
|
|
230
|
+
serverType: "datasource",
|
|
231
|
+
lsType: "ls"
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
that._layerManager.addTempLayerNode(layer);
|
|
235
|
+
|
|
236
|
+
cb && cb(layer);
|
|
231
237
|
});
|
|
238
|
+
} else {
|
|
239
|
+
reject(file.name + " service parse error.");
|
|
240
|
+
cb && cb("error");
|
|
241
|
+
}
|
|
242
|
+
});
|
|
243
|
+
} else if (ext === "txt") {
|
|
244
|
+
let dataUrl = that._geometryServerUrl + (that._geometryServerToken ? "?ua_token=" + that._geometryServerToken : "");
|
|
245
|
+
(0,util_.readTxT)(file, dataUrl, "4326", res => {
|
|
246
|
+
if (res) {
|
|
247
|
+
var ds = new Cesium.Kq3dGeoJsonDataSource(name);
|
|
248
|
+
ds.load(res, that._geojsonStyle).then(ds => {
|
|
249
|
+
ds.entities.values.forEach(entity => {
|
|
250
|
+
if (entity.polygon) {
|
|
251
|
+
entity.polyline = {
|
|
252
|
+
positions: entity.polygon.hierarchy._value.positions,
|
|
253
|
+
width: that._geojsonStyle.polygon.outlineWidth,
|
|
254
|
+
material: that._geojsonStyle.polygon.outlineColor
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
});
|
|
232
258
|
|
|
233
|
-
|
|
259
|
+
that._viewer.dataSources.add(ds);
|
|
234
260
|
|
|
235
|
-
|
|
261
|
+
ds.autoAvoid(that._viewer);
|
|
236
262
|
|
|
237
|
-
|
|
263
|
+
that._viewer.flyTo(ds);
|
|
238
264
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
265
|
+
resolve("success");
|
|
266
|
+
var layer = {
|
|
267
|
+
guid: ds.guid,
|
|
268
|
+
name: name,
|
|
269
|
+
visible: true,
|
|
270
|
+
serverType: "datasource",
|
|
271
|
+
lsType: "ls"
|
|
272
|
+
};
|
|
246
273
|
|
|
247
|
-
|
|
274
|
+
that._layerManager.addTempLayerNode(layer);
|
|
248
275
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
276
|
+
cb && cb(layer);
|
|
277
|
+
});
|
|
278
|
+
} else {
|
|
279
|
+
reject(file.name + " service parse error.");
|
|
280
|
+
}
|
|
281
|
+
});
|
|
282
|
+
} else {
|
|
283
|
+
var reader = new FileReader();
|
|
284
|
+
reader.readAsText(file); //文本
|
|
285
|
+
//readAsDataURL(file); //base64 图片
|
|
286
|
+
//readAsArrayBuffer(file); //原始二进制数据
|
|
287
|
+
//readAsBinaryString(file);//二进制字符串
|
|
288
|
+
//reader.readAsBinaryString(file);
|
|
289
|
+
|
|
290
|
+
reader.onload = function (event) {
|
|
291
|
+
var ret = event.target.result;
|
|
292
|
+
|
|
293
|
+
switch (ext) {
|
|
294
|
+
case "json":
|
|
295
|
+
case "geojson":
|
|
296
|
+
case "topojson":
|
|
297
|
+
ret = ret.replace(/(^\s*)|(\s*$)/, "");
|
|
298
|
+
ret = ret.substring(ret.indexOf("{"));
|
|
299
|
+
|
|
300
|
+
try {
|
|
301
|
+
var data = JSON.parse(ret);
|
|
302
|
+
|
|
303
|
+
if (typeof data == "object" && data) {
|
|
304
|
+
ret = data;
|
|
305
|
+
}
|
|
306
|
+
} catch (e) {}
|
|
307
|
+
|
|
308
|
+
var ds = new Cesium.Kq3dGeoJsonDataSource(name);
|
|
309
|
+
ds.load(ret, that._geojsonStyle).then(ds => {
|
|
310
|
+
ds.entities.values.forEach(entity => {
|
|
311
|
+
if (entity.polygon) {
|
|
312
|
+
entity.polyline = {
|
|
313
|
+
positions: entity.polygon.hierarchy._value.positions,
|
|
314
|
+
width: that._geojsonStyle.polygon.outlineWidth,
|
|
315
|
+
material: that._geojsonStyle.polygon.outlineColor
|
|
316
|
+
};
|
|
317
|
+
}
|
|
318
|
+
});
|
|
252
319
|
|
|
253
|
-
|
|
254
|
-
ret = ret.replace(/(^\s*)|(\s*$)/, "");
|
|
255
|
-
var options = {
|
|
256
|
-
name: name,
|
|
257
|
-
camera: that._viewer.scene.camera,
|
|
258
|
-
canvas: that._viewer.scene.canvas
|
|
259
|
-
};
|
|
260
|
-
var ds = new Cesium.KmlDataSource(options);
|
|
261
|
-
var data = new Blob([ret], {
|
|
262
|
-
type: "text/xml"
|
|
263
|
-
});
|
|
264
|
-
ds.load(data).then(ds => {
|
|
265
|
-
that._viewer.dataSources.add(ds);
|
|
320
|
+
that._viewer.dataSources.add(ds);
|
|
266
321
|
|
|
267
|
-
|
|
322
|
+
ds.autoAvoid(that._viewer);
|
|
268
323
|
|
|
269
|
-
|
|
270
|
-
guid: ds.guid,
|
|
271
|
-
name: name,
|
|
272
|
-
visible: true,
|
|
273
|
-
serverType: "datasource",
|
|
274
|
-
lsType: "ls"
|
|
275
|
-
};
|
|
324
|
+
that._viewer.flyTo(ds);
|
|
276
325
|
|
|
277
|
-
|
|
326
|
+
resolve("success");
|
|
327
|
+
var layer = {
|
|
328
|
+
guid: ds.guid,
|
|
329
|
+
name: name,
|
|
330
|
+
visible: true,
|
|
331
|
+
serverType: "datasource",
|
|
332
|
+
lsType: "ls"
|
|
333
|
+
};
|
|
278
334
|
|
|
279
|
-
|
|
280
|
-
});
|
|
281
|
-
break;
|
|
335
|
+
that._layerManager.addTempLayerNode(layer);
|
|
282
336
|
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
camera: that._viewer.scene.camera,
|
|
287
|
-
canvas: that._viewer.scene.canvas
|
|
288
|
-
};
|
|
289
|
-
var ds = new Cesium.KmlDataSource(options);
|
|
290
|
-
ds.load(file).then(ds => {
|
|
291
|
-
that._viewer.dataSources.add(ds);
|
|
337
|
+
cb && cb(layer);
|
|
338
|
+
});
|
|
339
|
+
break;
|
|
292
340
|
|
|
293
|
-
|
|
341
|
+
case "kml":
|
|
342
|
+
ret = ret.replace(/(^\s*)|(\s*$)/, "");
|
|
343
|
+
var options = {
|
|
344
|
+
name: name,
|
|
345
|
+
camera: that._viewer.scene.camera,
|
|
346
|
+
canvas: that._viewer.scene.canvas
|
|
347
|
+
};
|
|
348
|
+
var ds = new Cesium.KmlDataSource(options);
|
|
349
|
+
var data = new Blob([ret], {
|
|
350
|
+
type: "text/xml"
|
|
351
|
+
});
|
|
352
|
+
ds.load(data).then(ds => {
|
|
353
|
+
that._viewer.dataSources.add(ds);
|
|
294
354
|
|
|
295
|
-
|
|
296
|
-
guid: ds.guid,
|
|
297
|
-
name: name,
|
|
298
|
-
visible: true,
|
|
299
|
-
serverType: "datasource",
|
|
300
|
-
lsType: "ls"
|
|
301
|
-
};
|
|
355
|
+
that._viewer.flyTo(ds);
|
|
302
356
|
|
|
303
|
-
|
|
357
|
+
resolve("success");
|
|
358
|
+
var layer = {
|
|
359
|
+
guid: ds.guid,
|
|
360
|
+
name: name,
|
|
361
|
+
visible: true,
|
|
362
|
+
serverType: "datasource",
|
|
363
|
+
lsType: "ls"
|
|
364
|
+
};
|
|
304
365
|
|
|
305
|
-
|
|
306
|
-
});
|
|
307
|
-
break;
|
|
366
|
+
that._layerManager.addTempLayerNode(layer);
|
|
308
367
|
|
|
309
|
-
|
|
310
|
-
|
|
368
|
+
cb && cb(layer);
|
|
369
|
+
});
|
|
370
|
+
break;
|
|
311
371
|
|
|
312
|
-
|
|
313
|
-
|
|
372
|
+
case "kmz":
|
|
373
|
+
var options = {
|
|
374
|
+
name: name,
|
|
375
|
+
camera: that._viewer.scene.camera,
|
|
376
|
+
canvas: that._viewer.scene.canvas
|
|
377
|
+
};
|
|
378
|
+
var ds = new Cesium.KmlDataSource(options);
|
|
379
|
+
ds.load(file).then(ds => {
|
|
380
|
+
that._viewer.dataSources.add(ds);
|
|
314
381
|
|
|
315
|
-
|
|
316
|
-
ret = data;
|
|
317
|
-
}
|
|
318
|
-
} catch (e) {}
|
|
382
|
+
that._viewer.flyTo(ds);
|
|
319
383
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
384
|
+
resolve("success");
|
|
385
|
+
var layer = {
|
|
386
|
+
guid: ds.guid,
|
|
387
|
+
name: name,
|
|
388
|
+
visible: true,
|
|
389
|
+
serverType: "datasource",
|
|
390
|
+
lsType: "ls"
|
|
391
|
+
};
|
|
324
392
|
|
|
325
|
-
|
|
326
|
-
guid: ds.guid,
|
|
327
|
-
name: name,
|
|
328
|
-
visible: true,
|
|
329
|
-
serverType: "datasource",
|
|
330
|
-
lsType: "ls"
|
|
331
|
-
};
|
|
393
|
+
that._layerManager.addTempLayerNode(layer);
|
|
332
394
|
|
|
333
|
-
|
|
395
|
+
cb && cb(layer);
|
|
396
|
+
});
|
|
397
|
+
break;
|
|
334
398
|
|
|
335
|
-
|
|
336
|
-
|
|
399
|
+
case "czml":
|
|
400
|
+
ret = ret.replace(/(^\s*)|(\s*$)/, "");
|
|
337
401
|
|
|
338
|
-
|
|
402
|
+
try {
|
|
403
|
+
var data = JSON.parse(ret);
|
|
339
404
|
|
|
340
|
-
|
|
341
|
-
|
|
405
|
+
if (typeof data == "object" && data) {
|
|
406
|
+
ret = data;
|
|
407
|
+
}
|
|
408
|
+
} catch (e) {}
|
|
342
409
|
|
|
343
|
-
|
|
344
|
-
|
|
410
|
+
that._viewer.dataSources.add(Cesium.CzmlDataSource.load(ret, {
|
|
411
|
+
name: name
|
|
412
|
+
})).then(ds => {
|
|
413
|
+
that._viewer.flyTo(ds);
|
|
345
414
|
|
|
346
|
-
|
|
347
|
-
|
|
415
|
+
resolve("success");
|
|
416
|
+
var layer = {
|
|
417
|
+
guid: ds.guid,
|
|
418
|
+
name: name,
|
|
419
|
+
visible: true,
|
|
420
|
+
serverType: "datasource",
|
|
421
|
+
lsType: "ls"
|
|
422
|
+
};
|
|
348
423
|
|
|
349
|
-
|
|
350
|
-
case "xlsx":
|
|
351
|
-
break;
|
|
424
|
+
that._layerManager.addTempLayerNode(layer);
|
|
352
425
|
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
}
|
|
426
|
+
cb && cb(layer);
|
|
427
|
+
});
|
|
356
428
|
|
|
357
|
-
|
|
358
|
-
};
|
|
429
|
+
break;
|
|
359
430
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
431
|
+
case "txt":
|
|
432
|
+
break;
|
|
433
|
+
|
|
434
|
+
case "csv":
|
|
435
|
+
break;
|
|
436
|
+
|
|
437
|
+
case "xls":
|
|
438
|
+
case "xlsx":
|
|
439
|
+
break;
|
|
440
|
+
|
|
441
|
+
default:
|
|
442
|
+
break;
|
|
443
|
+
}
|
|
444
|
+
};
|
|
445
|
+
|
|
446
|
+
reader.onerror = function () {
|
|
447
|
+
console.log(file.name + " read error.");
|
|
448
|
+
reject(file.name + " read error.");
|
|
449
|
+
};
|
|
450
|
+
}
|
|
451
|
+
});
|
|
364
452
|
} //解析数据源
|
|
365
453
|
|
|
366
454
|
|
|
@@ -964,6 +1052,16 @@ const __default__ = {
|
|
|
964
1052
|
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
965
1053
|
*/
|
|
966
1054
|
position: [String, Object],
|
|
1055
|
+
// 几何服务地址前缀,例:http://support.kqgeo.com:29800/geometry-proxy/kqgis/rest/services/geometry
|
|
1056
|
+
geometryServerUrl: {
|
|
1057
|
+
type: String,
|
|
1058
|
+
required: true
|
|
1059
|
+
},
|
|
1060
|
+
// 几何服务token,例:eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJob3N0IiwiY3JlYXRlZCI6MTY1NTk2MzU1NzUyMywiZXhwIjoxNzY3MTEwNDAwfQ.BiNOr6vL6liHzlMK89XSvqmFY9fuWiYqDEwYmWxk-6vFKBgLeMC8FloBXyKcxOCl9Rd28y_pX4PhVRYP5cZTwA
|
|
1061
|
+
geometryServerToken: {
|
|
1062
|
+
type: String,
|
|
1063
|
+
required: true
|
|
1064
|
+
},
|
|
967
1065
|
// 当前展示的tab标签页
|
|
968
1066
|
activeName: {
|
|
969
1067
|
type: String,
|
|
@@ -1016,7 +1114,8 @@ const __default__ = {
|
|
|
1016
1114
|
});
|
|
1017
1115
|
let upload_ref = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
1018
1116
|
let upload_btn_ref = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
1019
|
-
let fileList = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
|
|
1117
|
+
let fileList = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
|
|
1118
|
+
let loadingFile = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); // 获取组件传参
|
|
1020
1119
|
|
|
1021
1120
|
let operatorArray = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.computed)(() => {
|
|
1022
1121
|
let array = [];
|
|
@@ -1164,7 +1263,9 @@ const __default__ = {
|
|
|
1164
1263
|
];
|
|
1165
1264
|
dataSourceType.value = dataSourceTypeList.value[0];
|
|
1166
1265
|
let options = {
|
|
1167
|
-
billboardImage: const_image_.BILLBOARD_IMAGE_URL
|
|
1266
|
+
billboardImage: const_image_.BILLBOARD_IMAGE_URL,
|
|
1267
|
+
geometryServerUrl: props.geometryServerUrl,
|
|
1268
|
+
geometryServerToken: props.geometryServerToken
|
|
1168
1269
|
};
|
|
1169
1270
|
viewModel = new AddDataViewModel(scenceView, options);
|
|
1170
1271
|
}
|
|
@@ -1214,8 +1315,14 @@ const __default__ = {
|
|
|
1214
1315
|
|
|
1215
1316
|
|
|
1216
1317
|
function loadFiles() {
|
|
1318
|
+
loadingFile.value = true;
|
|
1319
|
+
let promiseList = [];
|
|
1217
1320
|
fileList.value.forEach(file => {
|
|
1218
|
-
viewModel.parseFile(file.raw,
|
|
1321
|
+
promiseList.push(viewModel.parseFile(file.raw, props.loadCallback));
|
|
1322
|
+
});
|
|
1323
|
+
Promise.all(promiseList).then(() => {
|
|
1324
|
+
removeFiles();
|
|
1325
|
+
loadingFile.value = false;
|
|
1219
1326
|
});
|
|
1220
1327
|
} //加载URL
|
|
1221
1328
|
|
|
@@ -1284,7 +1391,7 @@ const __default__ = {
|
|
|
1284
1391
|
name: "upload"
|
|
1285
1392
|
}, {
|
|
1286
1393
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
1287
|
-
class: ""
|
|
1394
|
+
class: "kq3d-add-data-title"
|
|
1288
1395
|
}, {
|
|
1289
1396
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fileFormatDescription), 1
|
|
1290
1397
|
/* TEXT */
|
|
@@ -1308,7 +1415,7 @@ const __default__ = {
|
|
|
1308
1415
|
"auto-upload": false,
|
|
1309
1416
|
"file-list": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(fileList),
|
|
1310
1417
|
"onUpdate:file-list": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(fileList) ? fileList.value = $event : fileList = $event),
|
|
1311
|
-
accept: ".geojson,.topojson,.json,.kml,.kmz,.czml",
|
|
1418
|
+
accept: ".zip,.geojson,.topojson,.json,.kml,.kmz,.czml,.txt",
|
|
1312
1419
|
"on-change": changeFile,
|
|
1313
1420
|
ref_key: "upload_ref",
|
|
1314
1421
|
ref: upload_ref
|
|
@@ -1376,7 +1483,7 @@ const __default__ = {
|
|
|
1376
1483
|
action: "",
|
|
1377
1484
|
"show-file-list": false,
|
|
1378
1485
|
"auto-upload": false,
|
|
1379
|
-
accept: ".geojson,.topojson,.json,.kml,.kmz,.czml",
|
|
1486
|
+
accept: ".zip,.geojson,.topojson,.json,.kml,.kmz,.czml,.txt",
|
|
1380
1487
|
ref_key: "upload_btn_ref",
|
|
1381
1488
|
ref: upload_btn_ref,
|
|
1382
1489
|
class: "kq3d-add-data-footer-upload",
|
|
@@ -1417,7 +1524,8 @@ const __default__ = {
|
|
|
1417
1524
|
onClick: _cache[2] || (_cache[2] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => loadFiles(), ["stop"])),
|
|
1418
1525
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).loadFiles,
|
|
1419
1526
|
type: "primary",
|
|
1420
|
-
disabled: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(disabled)
|
|
1527
|
+
disabled: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(disabled),
|
|
1528
|
+
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadingFile)
|
|
1421
1529
|
}, {
|
|
1422
1530
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).loadFiles), 1
|
|
1423
1531
|
/* TEXT */
|
|
@@ -1427,7 +1535,7 @@ const __default__ = {
|
|
|
1427
1535
|
|
|
1428
1536
|
}, 8
|
|
1429
1537
|
/* PROPS */
|
|
1430
|
-
, ["title", "disabled"])])])]),
|
|
1538
|
+
, ["title", "disabled", "loading"])])])]),
|
|
1431
1539
|
_: 3
|
|
1432
1540
|
/* FORWARDED */
|
|
1433
1541
|
|
|
@@ -2310,7 +2418,8 @@ const __default__ = {
|
|
|
2310
2418
|
},
|
|
2311
2419
|
// HeaderTemp标题
|
|
2312
2420
|
headerTempTitle: {
|
|
2313
|
-
type: String
|
|
2421
|
+
type: String,
|
|
2422
|
+
default: "在线地形"
|
|
2314
2423
|
},
|
|
2315
2424
|
// HeaderTemp图标
|
|
2316
2425
|
headerTempIcon: {
|
|
@@ -4671,8 +4780,6 @@ const __default__ = {
|
|
|
4671
4780
|
clearResult
|
|
4672
4781
|
});
|
|
4673
4782
|
return (_ctx, _cache) => {
|
|
4674
|
-
const _component_HeaderTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("HeaderTemp");
|
|
4675
|
-
|
|
4676
4783
|
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
|
|
4677
4784
|
|
|
4678
4785
|
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
@@ -4705,16 +4812,7 @@ const __default__ = {
|
|
|
4705
4812
|
ref: headerTempRef
|
|
4706
4813
|
}, null, 512
|
|
4707
4814
|
/* NEED_PATCH */
|
|
4708
|
-
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true),
|
|
4709
|
-
key: 1,
|
|
4710
|
-
showShadow: __props.showShadow,
|
|
4711
|
-
headerTempTitle: __props.headerTempTitle || (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).excavateFillAnalysis,
|
|
4712
|
-
headerTempIcon: __props.headerTempIcon,
|
|
4713
|
-
isCollapse: __props.isCollapseHeaderTemp,
|
|
4714
|
-
isRight: __props.isRight
|
|
4715
|
-
}, null, 8
|
|
4716
|
-
/* PROPS */
|
|
4717
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
4815
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
4718
4816
|
style: {
|
|
4719
4817
|
"display": "flex"
|
|
4720
4818
|
}
|
|
@@ -4722,7 +4820,7 @@ const __default__ = {
|
|
|
4722
4820
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
4723
4821
|
class: "kq3d-excavate-fill-analysis-label",
|
|
4724
4822
|
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
4725
|
-
width: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentLang) === 'zh' ? '
|
|
4823
|
+
width: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentLang) === 'zh' ? '100px' : '130px'
|
|
4726
4824
|
})
|
|
4727
4825
|
}, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).altitudeHeight), 5
|
|
4728
4826
|
/* TEXT, STYLE */
|
|
@@ -5500,8 +5598,8 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
5500
5598
|
var gis_utils_ = __webpack_require__(826);
|
|
5501
5599
|
// EXTERNAL MODULE: ./src/webgl/flight/FlightViewModel.js
|
|
5502
5600
|
var FlightViewModel = __webpack_require__(5372);
|
|
5503
|
-
// EXTERNAL MODULE:
|
|
5504
|
-
var
|
|
5601
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
5602
|
+
var util_ = __webpack_require__(9519);
|
|
5505
5603
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/flight/Flight.vue?vue&type=script&setup=true&lang=js
|
|
5506
5604
|
|
|
5507
5605
|
const _hoisted_1 = {
|
|
@@ -5562,6 +5660,11 @@ const __default__ = {
|
|
|
5562
5660
|
deleteFlightPath: {
|
|
5563
5661
|
type: Function
|
|
5564
5662
|
},
|
|
5663
|
+
|
|
5664
|
+
/**
|
|
5665
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
5666
|
+
*/
|
|
5667
|
+
position: [String, Object],
|
|
5565
5668
|
// 是否生成HeaderTemp
|
|
5566
5669
|
showHeaderTemp: {
|
|
5567
5670
|
type: Boolean,
|
|
@@ -5612,9 +5715,22 @@ const __default__ = {
|
|
|
5612
5715
|
color: "var(--kq-color-info)",
|
|
5613
5716
|
"font-size": "14px"
|
|
5614
5717
|
};
|
|
5615
|
-
};
|
|
5718
|
+
}; // 组件容器Ref
|
|
5719
|
+
|
|
5720
|
+
|
|
5721
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
5616
5722
|
|
|
5723
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
5724
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
5617
5725
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
5726
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
5727
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
5728
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
5729
|
+
});
|
|
5730
|
+
watchCreateHeaderTemp();
|
|
5731
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
5732
|
+
watchCreateHeaderTemp();
|
|
5733
|
+
});
|
|
5618
5734
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
5619
5735
|
if (scenceView) {
|
|
5620
5736
|
language.value = scenceView._language;
|
|
@@ -5643,7 +5759,18 @@ const __default__ = {
|
|
|
5643
5759
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
5644
5760
|
viewModel.stop();
|
|
5645
5761
|
document.removeEventListener("click", hideDropDownMenu);
|
|
5646
|
-
});
|
|
5762
|
+
});
|
|
5763
|
+
/**
|
|
5764
|
+
* @description 监听header生成
|
|
5765
|
+
*/
|
|
5766
|
+
|
|
5767
|
+
const watchCreateHeaderTemp = () => {
|
|
5768
|
+
if (props.showHeaderTemp) {
|
|
5769
|
+
// 生成headerTemp
|
|
5770
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
5771
|
+
}
|
|
5772
|
+
}; //新建路径
|
|
5773
|
+
|
|
5647
5774
|
|
|
5648
5775
|
function addPath() {
|
|
5649
5776
|
pathList.forEach(path => {
|
|
@@ -5964,17 +6091,16 @@ const __default__ = {
|
|
|
5964
6091
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
5965
6092
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq-flight3d", {
|
|
5966
6093
|
'kq-box-shadow': __props.showShadow
|
|
5967
|
-
}])
|
|
5968
|
-
|
|
6094
|
+
}]),
|
|
6095
|
+
ref_key: "boxRef",
|
|
6096
|
+
ref: boxRef
|
|
6097
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
5969
6098
|
key: 0,
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
}, null, 8
|
|
5976
|
-
/* PROPS */
|
|
5977
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [!(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isAdd) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
6099
|
+
ref_key: "headerTempRef",
|
|
6100
|
+
ref: headerTempRef
|
|
6101
|
+
}, null, 512
|
|
6102
|
+
/* NEED_PATCH */
|
|
6103
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [!(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isAdd) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5978
6104
|
onClick: addPath,
|
|
5979
6105
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addPath
|
|
5980
6106
|
}, {
|
|
@@ -6635,8 +6761,8 @@ class FloodAnalysisViewModel {
|
|
|
6635
6761
|
}
|
|
6636
6762
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
6637
6763
|
var client_icons_vue_ = __webpack_require__(348);
|
|
6638
|
-
// EXTERNAL MODULE:
|
|
6639
|
-
var
|
|
6764
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
6765
|
+
var util_ = __webpack_require__(9519);
|
|
6640
6766
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/floodanalysis/FloodAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
6641
6767
|
|
|
6642
6768
|
const _hoisted_1 = {
|
|
@@ -6673,6 +6799,11 @@ const __default__ = {
|
|
|
6673
6799
|
type: Boolean,
|
|
6674
6800
|
default: true
|
|
6675
6801
|
},
|
|
6802
|
+
|
|
6803
|
+
/**
|
|
6804
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
6805
|
+
*/
|
|
6806
|
+
position: [String, Object],
|
|
6676
6807
|
// 是否生成HeaderTemp
|
|
6677
6808
|
showHeaderTemp: {
|
|
6678
6809
|
type: Boolean,
|
|
@@ -6685,7 +6816,8 @@ const __default__ = {
|
|
|
6685
6816
|
},
|
|
6686
6817
|
// HeaderTemp标题
|
|
6687
6818
|
headerTempTitle: {
|
|
6688
|
-
type: String
|
|
6819
|
+
type: String,
|
|
6820
|
+
default: "淹没分析"
|
|
6689
6821
|
},
|
|
6690
6822
|
// HeaderTemp图标
|
|
6691
6823
|
headerTempIcon: {
|
|
@@ -6704,8 +6836,7 @@ const __default__ = {
|
|
|
6704
6836
|
}) {
|
|
6705
6837
|
const props = __props;
|
|
6706
6838
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
6707
|
-
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
6708
|
-
let headerTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(""); // 淹没色调图片
|
|
6839
|
+
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(""); // 淹没色调图片
|
|
6709
6840
|
|
|
6710
6841
|
const colorImages = [{
|
|
6711
6842
|
value: "0",
|
|
@@ -6752,8 +6883,21 @@ const __default__ = {
|
|
|
6752
6883
|
floodColorImage: props.settingParams && props.settingParams.floodColorImage || "0" // 淹没纹理色带值
|
|
6753
6884
|
|
|
6754
6885
|
});
|
|
6755
|
-
let viewModel = null;
|
|
6886
|
+
let viewModel = null; // 组件容器Ref
|
|
6887
|
+
|
|
6888
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
6889
|
+
|
|
6890
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
6891
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
6756
6892
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
6893
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
6894
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
6895
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
6896
|
+
});
|
|
6897
|
+
watchCreateHeaderTemp();
|
|
6898
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
6899
|
+
watchCreateHeaderTemp();
|
|
6900
|
+
});
|
|
6757
6901
|
gis_utils_.utils.getWebMap(props.target, scenceView => {
|
|
6758
6902
|
if (scenceView) {
|
|
6759
6903
|
language.value = scenceView._language;
|
|
@@ -6766,23 +6910,31 @@ const __default__ = {
|
|
|
6766
6910
|
maxHeight: formItem.floodMaxHeight,
|
|
6767
6911
|
colorImage: formItem.floodColorImage
|
|
6768
6912
|
}); //设置HeaderTemp标题
|
|
6769
|
-
|
|
6770
|
-
if (props.
|
|
6771
|
-
|
|
6772
|
-
} else {
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
6780
|
-
}
|
|
6781
|
-
}
|
|
6782
|
-
}
|
|
6913
|
+
// if (!props.headerTempTitle) {
|
|
6914
|
+
// if (props.isShowMode) {
|
|
6915
|
+
// props.headerTempTitle = scenceView._language.floodAnalysis;
|
|
6916
|
+
// } else {
|
|
6917
|
+
// if (formItem.floodMode === 0) {
|
|
6918
|
+
// props.headerTempTitle = scenceView._language.floodTerrain + scenceView._language.floodAnalysis1;
|
|
6919
|
+
// } else if (formItem.floodMode === 1) {
|
|
6920
|
+
// props.headerTempTitle = scenceView._language.floodModel + scenceView._language.floodAnalysis1;
|
|
6921
|
+
// }
|
|
6922
|
+
// }
|
|
6923
|
+
// }
|
|
6783
6924
|
}
|
|
6784
6925
|
});
|
|
6785
|
-
});
|
|
6926
|
+
});
|
|
6927
|
+
/**
|
|
6928
|
+
* @description 监听header生成
|
|
6929
|
+
*/
|
|
6930
|
+
|
|
6931
|
+
const watchCreateHeaderTemp = () => {
|
|
6932
|
+
if (props.showHeaderTemp) {
|
|
6933
|
+
// 生成headerTemp
|
|
6934
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
6935
|
+
}
|
|
6936
|
+
}; //获取图片路径
|
|
6937
|
+
|
|
6786
6938
|
|
|
6787
6939
|
function getImagePath(value) {
|
|
6788
6940
|
var imagePath = "";
|
|
@@ -6884,17 +7036,16 @@ const __default__ = {
|
|
|
6884
7036
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
6885
7037
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-flood-analysis", {
|
|
6886
7038
|
'kq-box-shadow': __props.showShadow
|
|
6887
|
-
}])
|
|
6888
|
-
|
|
7039
|
+
}]),
|
|
7040
|
+
ref_key: "boxRef",
|
|
7041
|
+
ref: boxRef
|
|
7042
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
6889
7043
|
key: 0,
|
|
6890
|
-
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
6894
|
-
|
|
6895
|
-
}, null, 8
|
|
6896
|
-
/* PROPS */
|
|
6897
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
7044
|
+
ref_key: "headerTempRef",
|
|
7045
|
+
ref: headerTempRef
|
|
7046
|
+
}, null, 512
|
|
7047
|
+
/* NEED_PATCH */
|
|
7048
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
6898
7049
|
class: "kq3d-flood-analysis-tip"
|
|
6899
7050
|
}, {
|
|
6900
7051
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).floodTips), 1
|
|
@@ -7648,8 +7799,8 @@ var external_xe_utils_namespaceObject = require("xe-utils");
|
|
|
7648
7799
|
var external_xe_utils_default = /*#__PURE__*/__webpack_require__.n(external_xe_utils_namespaceObject);
|
|
7649
7800
|
// EXTERNAL MODULE: ./src/webgl/gpuspatialquery/GPUSpatialQueryViewModel.js
|
|
7650
7801
|
var GPUSpatialQueryViewModel = __webpack_require__(7775);
|
|
7651
|
-
// EXTERNAL MODULE:
|
|
7652
|
-
var
|
|
7802
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
7803
|
+
var util_ = __webpack_require__(9519);
|
|
7653
7804
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/gpuspatialquery/GPUSpatialQuery.vue?vue&type=script&setup=true&lang=js
|
|
7654
7805
|
|
|
7655
7806
|
const _hoisted_1 = {
|
|
@@ -7700,6 +7851,11 @@ const __default__ = {
|
|
|
7700
7851
|
type: Boolean,
|
|
7701
7852
|
default: true
|
|
7702
7853
|
},
|
|
7854
|
+
|
|
7855
|
+
/**
|
|
7856
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
7857
|
+
*/
|
|
7858
|
+
position: [String, Object],
|
|
7703
7859
|
// 是否生成HeaderTemp
|
|
7704
7860
|
showHeaderTemp: {
|
|
7705
7861
|
type: Boolean,
|
|
@@ -7763,12 +7919,25 @@ const __default__ = {
|
|
|
7763
7919
|
maxZRotate: props.settingParams && props.settingParams.maxZRotate || 90 // 绕Z轴旋转最大值
|
|
7764
7920
|
|
|
7765
7921
|
});
|
|
7766
|
-
let viewModel = null;
|
|
7922
|
+
let viewModel = null; // 组件容器Ref
|
|
7923
|
+
|
|
7924
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
7925
|
+
|
|
7926
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
7927
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
7767
7928
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
|
|
7929
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
7930
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
7931
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
7932
|
+
});
|
|
7933
|
+
watchCreateHeaderTemp();
|
|
7934
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
7935
|
+
watchCreateHeaderTemp();
|
|
7936
|
+
});
|
|
7937
|
+
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
7938
|
+
if (scenceView) {
|
|
7939
|
+
language.value = scenceView._language;
|
|
7940
|
+
viewModel = new GPUSpatialQueryViewModel/* default */.Z(scenceView, {
|
|
7772
7941
|
volumeType: formItem.volumeType,
|
|
7773
7942
|
positionMode: formItem.positionMode,
|
|
7774
7943
|
scale: formItem.scale,
|
|
@@ -7778,7 +7947,18 @@ const __default__ = {
|
|
|
7778
7947
|
});
|
|
7779
7948
|
}
|
|
7780
7949
|
});
|
|
7781
|
-
});
|
|
7950
|
+
});
|
|
7951
|
+
/**
|
|
7952
|
+
* @description 监听header生成
|
|
7953
|
+
*/
|
|
7954
|
+
|
|
7955
|
+
const watchCreateHeaderTemp = () => {
|
|
7956
|
+
if (props.showHeaderTemp) {
|
|
7957
|
+
// 生成headerTemp
|
|
7958
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
7959
|
+
}
|
|
7960
|
+
}; // 参数切换
|
|
7961
|
+
|
|
7782
7962
|
|
|
7783
7963
|
function paramsChanged(key) {
|
|
7784
7964
|
switch (key) {
|
|
@@ -7856,17 +8036,16 @@ const __default__ = {
|
|
|
7856
8036
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
7857
8037
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-gpu-spatial-query", {
|
|
7858
8038
|
'kq-box-shadow': __props.showShadow
|
|
7859
|
-
}])
|
|
7860
|
-
|
|
8039
|
+
}]),
|
|
8040
|
+
ref_key: "boxRef",
|
|
8041
|
+
ref: boxRef
|
|
8042
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
7861
8043
|
key: 0,
|
|
7862
|
-
|
|
7863
|
-
|
|
7864
|
-
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
}, null, 8
|
|
7868
|
-
/* PROPS */
|
|
7869
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
8044
|
+
ref_key: "headerTempRef",
|
|
8045
|
+
ref: headerTempRef
|
|
8046
|
+
}, null, 512
|
|
8047
|
+
/* NEED_PATCH */
|
|
8048
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
7870
8049
|
"label-width": "100px",
|
|
7871
8050
|
"label-position": "left"
|
|
7872
8051
|
}, {
|
|
@@ -8471,169 +8650,6 @@ Hawkeye.install = (Vue, opts) => {
|
|
|
8471
8650
|
|
|
8472
8651
|
|
|
8473
8652
|
|
|
8474
|
-
/***/ }),
|
|
8475
|
-
|
|
8476
|
-
/***/ 519:
|
|
8477
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
// EXPORTS
|
|
8481
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
8482
|
-
"default": function() { return /* reexport */ HeaderTemp; }
|
|
8483
|
-
});
|
|
8484
|
-
|
|
8485
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
8486
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
8487
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
8488
|
-
var util_ = __webpack_require__(9519);
|
|
8489
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
|
|
8490
|
-
|
|
8491
|
-
const _hoisted_1 = {
|
|
8492
|
-
class: "kq-control-header-temp"
|
|
8493
|
-
};
|
|
8494
|
-
const _hoisted_2 = {
|
|
8495
|
-
class: "_title"
|
|
8496
|
-
};
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
const __default__ = {
|
|
8500
|
-
name: "Kq3dHeaderTemp"
|
|
8501
|
-
};
|
|
8502
|
-
/* harmony default export */ var HeaderTempvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
8503
|
-
props: {
|
|
8504
|
-
// 是否显示阴影效果
|
|
8505
|
-
showShadow: {
|
|
8506
|
-
type: Boolean,
|
|
8507
|
-
default: true
|
|
8508
|
-
},
|
|
8509
|
-
// HeaderTemp标题
|
|
8510
|
-
headerTempTitle: {
|
|
8511
|
-
type: String,
|
|
8512
|
-
default: ""
|
|
8513
|
-
},
|
|
8514
|
-
// HeaderTemp图标
|
|
8515
|
-
headerTempIcon: {
|
|
8516
|
-
type: Object
|
|
8517
|
-
},
|
|
8518
|
-
// HeaderTemp是否折叠
|
|
8519
|
-
isCollapse: {
|
|
8520
|
-
type: Boolean,
|
|
8521
|
-
default: false
|
|
8522
|
-
},
|
|
8523
|
-
// HeaderTemp Title&Icon的位置
|
|
8524
|
-
isRight: {
|
|
8525
|
-
type: Boolean,
|
|
8526
|
-
default: true
|
|
8527
|
-
}
|
|
8528
|
-
},
|
|
8529
|
-
|
|
8530
|
-
setup(__props, {
|
|
8531
|
-
expose
|
|
8532
|
-
}) {
|
|
8533
|
-
const props = __props;
|
|
8534
|
-
const proxy = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)(); // 获取组件传参
|
|
8535
|
-
// 图标组件
|
|
8536
|
-
|
|
8537
|
-
let iconBtn = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
8538
|
-
let isCollapse = props.isCollapse;
|
|
8539
|
-
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
8540
|
-
iconBtn.value = props.headerTempIcon;
|
|
8541
|
-
let dom = proxy.parent.vnode.el;
|
|
8542
|
-
|
|
8543
|
-
if (!props.isRight) {
|
|
8544
|
-
(0,util_.addClass)(dom, ["kq-is-show", "kq-is-left"]);
|
|
8545
|
-
}
|
|
8546
|
-
|
|
8547
|
-
if (isCollapse) {
|
|
8548
|
-
if (props.showShadow) {
|
|
8549
|
-
(0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
8550
|
-
(0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
8551
|
-
} else {
|
|
8552
|
-
(0,util_.addClass)(dom, "kq-is-hide");
|
|
8553
|
-
(0,util_.removeClass)(dom, "kq-is-show");
|
|
8554
|
-
}
|
|
8555
|
-
} else {
|
|
8556
|
-
if (props.showShadow) {
|
|
8557
|
-
(0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
8558
|
-
(0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
8559
|
-
} else {
|
|
8560
|
-
(0,util_.removeClass)(dom, "kq-is-hide");
|
|
8561
|
-
(0,util_.addClass)(dom, "kq-is-show");
|
|
8562
|
-
}
|
|
8563
|
-
}
|
|
8564
|
-
}); // 图标按钮点击事件
|
|
8565
|
-
|
|
8566
|
-
function btnClick() {
|
|
8567
|
-
isCollapse = !isCollapse;
|
|
8568
|
-
let dom = proxy.parent.vnode.el;
|
|
8569
|
-
|
|
8570
|
-
if (isCollapse) {
|
|
8571
|
-
// 折叠
|
|
8572
|
-
if (props.showShadow) {
|
|
8573
|
-
(0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
8574
|
-
(0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
8575
|
-
} else {
|
|
8576
|
-
(0,util_.addClass)(dom, "kq-is-hide");
|
|
8577
|
-
(0,util_.removeClass)(dom, "kq-is-show");
|
|
8578
|
-
}
|
|
8579
|
-
} else {
|
|
8580
|
-
// 展开
|
|
8581
|
-
if (props.showShadow) {
|
|
8582
|
-
(0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
8583
|
-
(0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
8584
|
-
} else {
|
|
8585
|
-
(0,util_.addClass)(dom, "kq-is-show");
|
|
8586
|
-
(0,util_.removeClass)(dom, "kq-is-hide");
|
|
8587
|
-
}
|
|
8588
|
-
}
|
|
8589
|
-
}
|
|
8590
|
-
|
|
8591
|
-
expose({
|
|
8592
|
-
btnClick
|
|
8593
|
-
});
|
|
8594
|
-
return (_ctx, _cache) => {
|
|
8595
|
-
const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
|
|
8596
|
-
|
|
8597
|
-
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(__props.headerTempTitle), 1
|
|
8598
|
-
/* TEXT */
|
|
8599
|
-
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
8600
|
-
class: "_btn kq-control-header-temp_btn",
|
|
8601
|
-
onClick: btnClick
|
|
8602
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
8603
|
-
size: 16
|
|
8604
|
-
}, {
|
|
8605
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(iconBtn))))]),
|
|
8606
|
-
_: 1
|
|
8607
|
-
/* STABLE */
|
|
8608
|
-
|
|
8609
|
-
})])]);
|
|
8610
|
-
};
|
|
8611
|
-
}
|
|
8612
|
-
|
|
8613
|
-
}));
|
|
8614
|
-
;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
|
|
8615
|
-
|
|
8616
|
-
;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
const __exports__ = HeaderTempvue_type_script_setup_true_lang_js;
|
|
8621
|
-
|
|
8622
|
-
/* harmony default export */ var HeaderTemp = (__exports__);
|
|
8623
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
8624
|
-
var init_js_ = __webpack_require__(5406);
|
|
8625
|
-
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
8626
|
-
;// CONCATENATED MODULE: ./src/webgl/headertemp/index.js
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
HeaderTemp.install = (Vue, opts) => {
|
|
8631
|
-
init_js_default()(Vue, opts);
|
|
8632
|
-
Vue.component(HeaderTemp.name, HeaderTemp);
|
|
8633
|
-
};
|
|
8634
|
-
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
8653
|
/***/ }),
|
|
8638
8654
|
|
|
8639
8655
|
/***/ 9783:
|
|
@@ -8995,8 +9011,8 @@ class IsolineAnalysisViewModel {
|
|
|
8995
9011
|
}
|
|
8996
9012
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
8997
9013
|
var client_icons_vue_ = __webpack_require__(348);
|
|
8998
|
-
// EXTERNAL MODULE:
|
|
8999
|
-
var
|
|
9014
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
9015
|
+
var util_ = __webpack_require__(9519);
|
|
9000
9016
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/isolineanalysis/IsolineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
9001
9017
|
|
|
9002
9018
|
const _hoisted_1 = {
|
|
@@ -9086,6 +9102,11 @@ const __default__ = {
|
|
|
9086
9102
|
type: Boolean,
|
|
9087
9103
|
default: true
|
|
9088
9104
|
},
|
|
9105
|
+
|
|
9106
|
+
/**
|
|
9107
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
9108
|
+
*/
|
|
9109
|
+
position: [String, Object],
|
|
9089
9110
|
// 是否生成HeaderTemp
|
|
9090
9111
|
showHeaderTemp: {
|
|
9091
9112
|
type: Boolean,
|
|
@@ -9209,8 +9230,21 @@ const __default__ = {
|
|
|
9209
9230
|
surfaceAlpha: props.settingParams && props.settingParams.surfaceAlpha || 0.6 // 面透明度
|
|
9210
9231
|
|
|
9211
9232
|
});
|
|
9212
|
-
let viewModel = null;
|
|
9233
|
+
let viewModel = null; // 组件容器Ref
|
|
9234
|
+
|
|
9235
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
9236
|
+
|
|
9237
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
9238
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
9213
9239
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
9240
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
9241
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
9242
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
9243
|
+
});
|
|
9244
|
+
watchCreateHeaderTemp();
|
|
9245
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
9246
|
+
watchCreateHeaderTemp();
|
|
9247
|
+
});
|
|
9214
9248
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
9215
9249
|
|
|
9216
9250
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -9251,7 +9285,18 @@ const __default__ = {
|
|
|
9251
9285
|
viewModel = new IsolineAnalysisViewModel(scenceView, options);
|
|
9252
9286
|
}
|
|
9253
9287
|
});
|
|
9254
|
-
});
|
|
9288
|
+
});
|
|
9289
|
+
/**
|
|
9290
|
+
* @description 监听header生成
|
|
9291
|
+
*/
|
|
9292
|
+
|
|
9293
|
+
const watchCreateHeaderTemp = () => {
|
|
9294
|
+
if (props.showHeaderTemp) {
|
|
9295
|
+
// 生成headerTemp
|
|
9296
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
9297
|
+
}
|
|
9298
|
+
}; // 刷新自定义样式数组
|
|
9299
|
+
|
|
9255
9300
|
|
|
9256
9301
|
function refactorArr(type) {
|
|
9257
9302
|
if (!dataList || !dataList.length) return;
|
|
@@ -9442,17 +9487,16 @@ const __default__ = {
|
|
|
9442
9487
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
9443
9488
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-isoline-analysis", {
|
|
9444
9489
|
'kq-box-shadow': __props.showShadow
|
|
9445
|
-
}])
|
|
9446
|
-
|
|
9490
|
+
}]),
|
|
9491
|
+
ref_key: "boxRef",
|
|
9492
|
+
ref: boxRef
|
|
9493
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
9447
9494
|
key: 0,
|
|
9448
|
-
|
|
9449
|
-
|
|
9450
|
-
|
|
9451
|
-
|
|
9452
|
-
|
|
9453
|
-
}, null, 8
|
|
9454
|
-
/* PROPS */
|
|
9455
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
9495
|
+
ref_key: "headerTempRef",
|
|
9496
|
+
ref: headerTempRef
|
|
9497
|
+
}, null, 512
|
|
9498
|
+
/* NEED_PATCH */
|
|
9499
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
9456
9500
|
gutter: 20
|
|
9457
9501
|
}, {
|
|
9458
9502
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
@@ -11396,8 +11440,8 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
11396
11440
|
var gis_utils_ = __webpack_require__(826);
|
|
11397
11441
|
// EXTERNAL MODULE: ./src/webgl/measure/MeasureViewModel.js
|
|
11398
11442
|
var MeasureViewModel = __webpack_require__(193);
|
|
11399
|
-
// EXTERNAL MODULE:
|
|
11400
|
-
var
|
|
11443
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
11444
|
+
var util_ = __webpack_require__(9519);
|
|
11401
11445
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/measure/Measure.vue?vue&type=script&setup=true&lang=js
|
|
11402
11446
|
|
|
11403
11447
|
const _hoisted_1 = {
|
|
@@ -11524,6 +11568,11 @@ const __default__ = {
|
|
|
11524
11568
|
type: Boolean,
|
|
11525
11569
|
default: true
|
|
11526
11570
|
},
|
|
11571
|
+
|
|
11572
|
+
/**
|
|
11573
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
11574
|
+
*/
|
|
11575
|
+
position: [String, Object],
|
|
11527
11576
|
// 是否生成HeaderTemp
|
|
11528
11577
|
showHeaderTemp: {
|
|
11529
11578
|
type: Boolean,
|
|
@@ -11583,8 +11632,21 @@ const __default__ = {
|
|
|
11583
11632
|
}, {
|
|
11584
11633
|
label: "km²",
|
|
11585
11634
|
value: "km²"
|
|
11586
|
-
}]);
|
|
11635
|
+
}]); // 组件容器Ref
|
|
11636
|
+
|
|
11637
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
11638
|
+
|
|
11639
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
11640
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
11587
11641
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
11642
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
11643
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
11644
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
11645
|
+
});
|
|
11646
|
+
watchCreateHeaderTemp();
|
|
11647
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
11648
|
+
watchCreateHeaderTemp();
|
|
11649
|
+
});
|
|
11588
11650
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
11589
11651
|
if (scenceView) {
|
|
11590
11652
|
language.value = scenceView._language;
|
|
@@ -11628,7 +11690,18 @@ const __default__ = {
|
|
|
11628
11690
|
});
|
|
11629
11691
|
}
|
|
11630
11692
|
});
|
|
11631
|
-
});
|
|
11693
|
+
});
|
|
11694
|
+
/**
|
|
11695
|
+
* @description 监听header生成
|
|
11696
|
+
*/
|
|
11697
|
+
|
|
11698
|
+
const watchCreateHeaderTemp = () => {
|
|
11699
|
+
if (props.showHeaderTemp) {
|
|
11700
|
+
// 生成headerTemp
|
|
11701
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
11702
|
+
}
|
|
11703
|
+
}; //加载测量模式数据
|
|
11704
|
+
|
|
11632
11705
|
|
|
11633
11706
|
function loadModeData() {
|
|
11634
11707
|
modeList.push({
|
|
@@ -11778,17 +11851,16 @@ const __default__ = {
|
|
|
11778
11851
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
11779
11852
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq-measure3d", {
|
|
11780
11853
|
'kq-box-shadow': __props.showShadow
|
|
11781
|
-
}])
|
|
11782
|
-
|
|
11854
|
+
}]),
|
|
11855
|
+
ref_key: "boxRef",
|
|
11856
|
+
ref: boxRef
|
|
11857
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
11783
11858
|
key: 0,
|
|
11784
|
-
|
|
11785
|
-
|
|
11786
|
-
|
|
11787
|
-
|
|
11788
|
-
|
|
11789
|
-
}, null, 8
|
|
11790
|
-
/* PROPS */
|
|
11791
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).mode), 1
|
|
11859
|
+
ref_key: "headerTempRef",
|
|
11860
|
+
ref: headerTempRef
|
|
11861
|
+
}, null, 512
|
|
11862
|
+
/* NEED_PATCH */
|
|
11863
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).mode), 1
|
|
11792
11864
|
/* TEXT */
|
|
11793
11865
|
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
11794
11866
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(mode),
|
|
@@ -12122,8 +12194,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
12122
12194
|
var ModelSelectViewModel = __webpack_require__(5394);
|
|
12123
12195
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
12124
12196
|
var client_icons_vue_ = __webpack_require__(348);
|
|
12125
|
-
// EXTERNAL MODULE:
|
|
12126
|
-
var
|
|
12197
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
12198
|
+
var util_ = __webpack_require__(9519);
|
|
12127
12199
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/modelselect/ModelSelect.vue?vue&type=script&setup=true&lang=js
|
|
12128
12200
|
|
|
12129
12201
|
const _hoisted_1 = {
|
|
@@ -12161,6 +12233,11 @@ const __default__ = {
|
|
|
12161
12233
|
type: Boolean,
|
|
12162
12234
|
default: true
|
|
12163
12235
|
},
|
|
12236
|
+
|
|
12237
|
+
/**
|
|
12238
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
12239
|
+
*/
|
|
12240
|
+
position: [String, Object],
|
|
12164
12241
|
// 是否生成HeaderTemp
|
|
12165
12242
|
showHeaderTemp: {
|
|
12166
12243
|
type: Boolean,
|
|
@@ -12210,10 +12287,23 @@ const __default__ = {
|
|
|
12210
12287
|
color: "var(--kq-color-info)",
|
|
12211
12288
|
"font-size": "14px"
|
|
12212
12289
|
};
|
|
12213
|
-
};
|
|
12290
|
+
}; // 组件容器Ref
|
|
12291
|
+
|
|
12214
12292
|
|
|
12293
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
12294
|
+
|
|
12295
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12296
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12215
12297
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
12216
|
-
|
|
12298
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
12299
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
12300
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
12301
|
+
});
|
|
12302
|
+
watchCreateHeaderTemp();
|
|
12303
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
12304
|
+
watchCreateHeaderTemp();
|
|
12305
|
+
}); //父组件ScenceView初始化完成后执行
|
|
12306
|
+
|
|
12217
12307
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
12218
12308
|
if (scenceView) {
|
|
12219
12309
|
language.value = scenceView._language;
|
|
@@ -12221,6 +12311,16 @@ const __default__ = {
|
|
|
12221
12311
|
}
|
|
12222
12312
|
});
|
|
12223
12313
|
});
|
|
12314
|
+
/**
|
|
12315
|
+
* @description 监听header生成
|
|
12316
|
+
*/
|
|
12317
|
+
|
|
12318
|
+
const watchCreateHeaderTemp = () => {
|
|
12319
|
+
if (props.showHeaderTemp) {
|
|
12320
|
+
// 生成headerTemp
|
|
12321
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
12322
|
+
}
|
|
12323
|
+
};
|
|
12224
12324
|
|
|
12225
12325
|
function setModeFiled(val) {
|
|
12226
12326
|
viewModel._modeFiled = val;
|
|
@@ -12284,17 +12384,16 @@ const __default__ = {
|
|
|
12284
12384
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
12285
12385
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-model-select", {
|
|
12286
12386
|
'kq-box-shadow': __props.showShadow
|
|
12287
|
-
}])
|
|
12288
|
-
|
|
12387
|
+
}]),
|
|
12388
|
+
ref_key: "boxRef",
|
|
12389
|
+
ref: boxRef
|
|
12390
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
12289
12391
|
key: 0,
|
|
12290
|
-
|
|
12291
|
-
|
|
12292
|
-
|
|
12293
|
-
|
|
12294
|
-
|
|
12295
|
-
}, null, 8
|
|
12296
|
-
/* PROPS */
|
|
12297
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
12392
|
+
ref_key: "headerTempRef",
|
|
12393
|
+
ref: headerTempRef
|
|
12394
|
+
}, null, 512
|
|
12395
|
+
/* NEED_PATCH */
|
|
12396
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
12298
12397
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
12299
12398
|
span: 8
|
|
12300
12399
|
}, {
|
|
@@ -12659,8 +12758,8 @@ class ParticleEffectViewModel {
|
|
|
12659
12758
|
}
|
|
12660
12759
|
|
|
12661
12760
|
}
|
|
12662
|
-
// EXTERNAL MODULE:
|
|
12663
|
-
var
|
|
12761
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
12762
|
+
var util_ = __webpack_require__(9519);
|
|
12664
12763
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/particleeffect/ParticleEffect.vue?vue&type=script&setup=true&lang=js
|
|
12665
12764
|
|
|
12666
12765
|
const _hoisted_1 = {
|
|
@@ -12688,6 +12787,11 @@ const __default__ = {
|
|
|
12688
12787
|
type: Boolean,
|
|
12689
12788
|
default: true
|
|
12690
12789
|
},
|
|
12790
|
+
|
|
12791
|
+
/**
|
|
12792
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
12793
|
+
*/
|
|
12794
|
+
position: [String, Object],
|
|
12691
12795
|
// 是否生成HeaderTemp
|
|
12692
12796
|
showHeaderTemp: {
|
|
12693
12797
|
type: Boolean,
|
|
@@ -12737,8 +12841,21 @@ const __default__ = {
|
|
|
12737
12841
|
endScale: props.settingParams && props.settingParams.endScale || 1.0,
|
|
12738
12842
|
gravity: props.settingParams && props.settingParams.gravity || 0.0
|
|
12739
12843
|
});
|
|
12740
|
-
let viewModel = null;
|
|
12844
|
+
let viewModel = null; // 组件容器Ref
|
|
12845
|
+
|
|
12846
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
12847
|
+
|
|
12848
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12849
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12741
12850
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
12851
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
12852
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
12853
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
12854
|
+
});
|
|
12855
|
+
watchCreateHeaderTemp();
|
|
12856
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
12857
|
+
watchCreateHeaderTemp();
|
|
12858
|
+
});
|
|
12742
12859
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
12743
12860
|
|
|
12744
12861
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -12748,6 +12865,16 @@ const __default__ = {
|
|
|
12748
12865
|
}
|
|
12749
12866
|
});
|
|
12750
12867
|
});
|
|
12868
|
+
/**
|
|
12869
|
+
* @description 监听header生成
|
|
12870
|
+
*/
|
|
12871
|
+
|
|
12872
|
+
const watchCreateHeaderTemp = () => {
|
|
12873
|
+
if (props.showHeaderTemp) {
|
|
12874
|
+
// 生成headerTemp
|
|
12875
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
12876
|
+
}
|
|
12877
|
+
};
|
|
12751
12878
|
|
|
12752
12879
|
function changeMode(mode) {
|
|
12753
12880
|
if (formItem.mode !== mode) {
|
|
@@ -12861,17 +12988,16 @@ const __default__ = {
|
|
|
12861
12988
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
12862
12989
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-particle-effect", {
|
|
12863
12990
|
'kq-box-shadow': __props.showShadow
|
|
12864
|
-
}])
|
|
12865
|
-
|
|
12991
|
+
}]),
|
|
12992
|
+
ref_key: "boxRef",
|
|
12993
|
+
ref: boxRef
|
|
12994
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
12866
12995
|
key: 0,
|
|
12867
|
-
|
|
12868
|
-
|
|
12869
|
-
|
|
12870
|
-
|
|
12871
|
-
|
|
12872
|
-
}, null, 8
|
|
12873
|
-
/* PROPS */
|
|
12874
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
12996
|
+
ref_key: "headerTempRef",
|
|
12997
|
+
ref: headerTempRef
|
|
12998
|
+
}, null, 512
|
|
12999
|
+
/* NEED_PATCH */
|
|
13000
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
12875
13001
|
gutter: 20,
|
|
12876
13002
|
class: "rowclass"
|
|
12877
13003
|
}, {
|
|
@@ -13698,8 +13824,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
13698
13824
|
var PlaneClipViewModel = __webpack_require__(5673);
|
|
13699
13825
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
13700
13826
|
var client_icons_vue_ = __webpack_require__(348);
|
|
13701
|
-
// EXTERNAL MODULE:
|
|
13702
|
-
var
|
|
13827
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
13828
|
+
var util_ = __webpack_require__(9519);
|
|
13703
13829
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/planeclip/PlaneClip.vue?vue&type=script&setup=true&lang=js
|
|
13704
13830
|
|
|
13705
13831
|
const _hoisted_1 = {
|
|
@@ -13736,6 +13862,11 @@ const __default__ = {
|
|
|
13736
13862
|
type: Boolean,
|
|
13737
13863
|
default: true
|
|
13738
13864
|
},
|
|
13865
|
+
|
|
13866
|
+
/**
|
|
13867
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
13868
|
+
*/
|
|
13869
|
+
position: [String, Object],
|
|
13739
13870
|
// 是否生成HeaderTemp
|
|
13740
13871
|
showHeaderTemp: {
|
|
13741
13872
|
type: Boolean,
|
|
@@ -13782,8 +13913,21 @@ const __default__ = {
|
|
|
13782
13913
|
boxEnable: props.settingParams && props.settingParams.boxEnable !== undefined || false,
|
|
13783
13914
|
clipDistance: props.settingParams && props.settingParams.clipDistance || 0
|
|
13784
13915
|
});
|
|
13785
|
-
let viewModel = null;
|
|
13916
|
+
let viewModel = null; // 组件容器Ref
|
|
13917
|
+
|
|
13918
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
13919
|
+
|
|
13920
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
13921
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
13786
13922
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
13923
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
13924
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
13925
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
13926
|
+
});
|
|
13927
|
+
watchCreateHeaderTemp();
|
|
13928
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
13929
|
+
watchCreateHeaderTemp();
|
|
13930
|
+
});
|
|
13787
13931
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
13788
13932
|
//父组 件ScenceView初始化完成后执行
|
|
13789
13933
|
|
|
@@ -13811,7 +13955,18 @@ const __default__ = {
|
|
|
13811
13955
|
}
|
|
13812
13956
|
}
|
|
13813
13957
|
}, 1000);
|
|
13814
|
-
});
|
|
13958
|
+
});
|
|
13959
|
+
/**
|
|
13960
|
+
* @description 监听header生成
|
|
13961
|
+
*/
|
|
13962
|
+
|
|
13963
|
+
const watchCreateHeaderTemp = () => {
|
|
13964
|
+
if (props.showHeaderTemp) {
|
|
13965
|
+
// 生成headerTemp
|
|
13966
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
13967
|
+
}
|
|
13968
|
+
}; // 参数改变
|
|
13969
|
+
|
|
13815
13970
|
|
|
13816
13971
|
function paramsChanged(key) {
|
|
13817
13972
|
switch (key) {
|
|
@@ -13891,17 +14046,16 @@ const __default__ = {
|
|
|
13891
14046
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
13892
14047
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-plane-clip", {
|
|
13893
14048
|
'kq-box-shadow': __props.showShadow
|
|
13894
|
-
}])
|
|
13895
|
-
|
|
14049
|
+
}]),
|
|
14050
|
+
ref_key: "boxRef",
|
|
14051
|
+
ref: boxRef
|
|
14052
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
13896
14053
|
key: 0,
|
|
13897
|
-
|
|
13898
|
-
|
|
13899
|
-
|
|
13900
|
-
|
|
13901
|
-
|
|
13902
|
-
}, null, 8
|
|
13903
|
-
/* PROPS */
|
|
13904
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
14054
|
+
ref_key: "headerTempRef",
|
|
14055
|
+
ref: headerTempRef
|
|
14056
|
+
}, null, 512
|
|
14057
|
+
/* NEED_PATCH */
|
|
14058
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
13905
14059
|
gutter: 20,
|
|
13906
14060
|
class: "rowClass"
|
|
13907
14061
|
}, {
|
|
@@ -14537,8 +14691,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
14537
14691
|
var ProfileAnalysisViewModel = __webpack_require__(6132);
|
|
14538
14692
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
14539
14693
|
var client_icons_vue_ = __webpack_require__(348);
|
|
14540
|
-
// EXTERNAL MODULE:
|
|
14541
|
-
var
|
|
14694
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
14695
|
+
var util_ = __webpack_require__(9519);
|
|
14542
14696
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/profileanalysis/ProfileAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
14543
14697
|
|
|
14544
14698
|
const _hoisted_1 = {
|
|
@@ -14573,6 +14727,11 @@ const __default__ = {
|
|
|
14573
14727
|
type: Boolean,
|
|
14574
14728
|
default: true
|
|
14575
14729
|
},
|
|
14730
|
+
|
|
14731
|
+
/**
|
|
14732
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
14733
|
+
*/
|
|
14734
|
+
position: [String, Object],
|
|
14576
14735
|
// 是否生成HeaderTemp
|
|
14577
14736
|
showHeaderTemp: {
|
|
14578
14737
|
type: Boolean,
|
|
@@ -14638,8 +14797,21 @@ const __default__ = {
|
|
|
14638
14797
|
// 相机高度范围最大值
|
|
14639
14798
|
enablePerspective: props.settingParams && props.settingParams.isLabel !== undefined || true // 是否透视
|
|
14640
14799
|
|
|
14641
|
-
});
|
|
14800
|
+
}); // 组件容器Ref
|
|
14801
|
+
|
|
14802
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
14803
|
+
|
|
14804
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
14805
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
14642
14806
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
14807
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
14808
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
14809
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
14810
|
+
});
|
|
14811
|
+
watchCreateHeaderTemp();
|
|
14812
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
14813
|
+
watchCreateHeaderTemp();
|
|
14814
|
+
});
|
|
14643
14815
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
14644
14816
|
if (scenceView) {
|
|
14645
14817
|
language.value = scenceView._language;
|
|
@@ -14659,7 +14831,18 @@ const __default__ = {
|
|
|
14659
14831
|
resultCahrtVis.value = false;
|
|
14660
14832
|
}
|
|
14661
14833
|
});
|
|
14662
|
-
});
|
|
14834
|
+
});
|
|
14835
|
+
/**
|
|
14836
|
+
* @description 监听header生成
|
|
14837
|
+
*/
|
|
14838
|
+
|
|
14839
|
+
const watchCreateHeaderTemp = () => {
|
|
14840
|
+
if (props.showHeaderTemp) {
|
|
14841
|
+
// 生成headerTemp
|
|
14842
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
14843
|
+
}
|
|
14844
|
+
}; // 开始分析
|
|
14845
|
+
|
|
14663
14846
|
|
|
14664
14847
|
function startAnalysis() {
|
|
14665
14848
|
viewModel && viewModel.start();
|
|
@@ -14732,17 +14915,16 @@ const __default__ = {
|
|
|
14732
14915
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
14733
14916
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-profile-analysis", {
|
|
14734
14917
|
'kq-box-shadow': __props.showShadow
|
|
14735
|
-
}])
|
|
14736
|
-
|
|
14918
|
+
}]),
|
|
14919
|
+
ref_key: "boxRef",
|
|
14920
|
+
ref: boxRef
|
|
14921
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
14737
14922
|
key: 0,
|
|
14738
|
-
|
|
14739
|
-
|
|
14740
|
-
|
|
14741
|
-
|
|
14742
|
-
|
|
14743
|
-
}, null, 8
|
|
14744
|
-
/* PROPS */
|
|
14745
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
14923
|
+
ref_key: "headerTempRef",
|
|
14924
|
+
ref: headerTempRef
|
|
14925
|
+
}, null, 512
|
|
14926
|
+
/* NEED_PATCH */
|
|
14927
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
14746
14928
|
class: "kq3d-profile-analysis-tip"
|
|
14747
14929
|
}, {
|
|
14748
14930
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).profileTips), 1
|
|
@@ -15462,8 +15644,8 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
15462
15644
|
var gis_utils_ = __webpack_require__(826);
|
|
15463
15645
|
// EXTERNAL MODULE: ./src/webgl/roller/RollerViewModel.js
|
|
15464
15646
|
var RollerViewModel = __webpack_require__(6561);
|
|
15465
|
-
// EXTERNAL MODULE:
|
|
15466
|
-
var
|
|
15647
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
15648
|
+
var util_ = __webpack_require__(9519);
|
|
15467
15649
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/roller/Roller.vue?vue&type=script&setup=true&lang=js
|
|
15468
15650
|
|
|
15469
15651
|
const _hoisted_1 = {
|
|
@@ -15482,19 +15664,15 @@ const __default__ = {
|
|
|
15482
15664
|
};
|
|
15483
15665
|
/* harmony default export */ var Rollervue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
15484
15666
|
props: {
|
|
15485
|
-
//设置参数
|
|
15486
|
-
top: {
|
|
15487
|
-
type: Number,
|
|
15488
|
-
default: 16
|
|
15489
|
-
},
|
|
15490
|
-
right: {
|
|
15491
|
-
type: Number,
|
|
15492
|
-
default: 16
|
|
15493
|
-
},
|
|
15494
15667
|
showShadow: {
|
|
15495
15668
|
type: Boolean,
|
|
15496
15669
|
default: true
|
|
15497
15670
|
},
|
|
15671
|
+
|
|
15672
|
+
/**
|
|
15673
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
15674
|
+
*/
|
|
15675
|
+
position: [String, Object],
|
|
15498
15676
|
// 是否生成HeaderTemp
|
|
15499
15677
|
showHeaderTemp: {
|
|
15500
15678
|
type: Boolean,
|
|
@@ -15540,8 +15718,21 @@ const __default__ = {
|
|
|
15540
15718
|
mode: props.settingParams && props.settingParams.mode || null
|
|
15541
15719
|
});
|
|
15542
15720
|
let layers = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
|
|
15543
|
-
let viewModel = null;
|
|
15721
|
+
let viewModel = null; // 组件容器Ref
|
|
15722
|
+
|
|
15723
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
15724
|
+
|
|
15725
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
15726
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
15544
15727
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
15728
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
15729
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
15730
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
15731
|
+
});
|
|
15732
|
+
watchCreateHeaderTemp();
|
|
15733
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
15734
|
+
watchCreateHeaderTemp();
|
|
15735
|
+
});
|
|
15545
15736
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
15546
15737
|
if (scenceView) {
|
|
15547
15738
|
language.value = scenceView._language;
|
|
@@ -15551,7 +15742,18 @@ const __default__ = {
|
|
|
15551
15742
|
viewModel = new RollerViewModel/* default */.Z(scenceView, options);
|
|
15552
15743
|
}
|
|
15553
15744
|
});
|
|
15554
|
-
});
|
|
15745
|
+
});
|
|
15746
|
+
/**
|
|
15747
|
+
* @description 监听header生成
|
|
15748
|
+
*/
|
|
15749
|
+
|
|
15750
|
+
const watchCreateHeaderTemp = () => {
|
|
15751
|
+
if (props.showHeaderTemp) {
|
|
15752
|
+
// 生成headerTemp
|
|
15753
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
15754
|
+
}
|
|
15755
|
+
}; // 切换模式
|
|
15756
|
+
|
|
15555
15757
|
|
|
15556
15758
|
function changeMode() {
|
|
15557
15759
|
let mode = formItem.mode;
|
|
@@ -15599,17 +15801,15 @@ const __default__ = {
|
|
|
15599
15801
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-roller", {
|
|
15600
15802
|
'kq-box-shadow': __props.showShadow
|
|
15601
15803
|
}]),
|
|
15602
|
-
|
|
15603
|
-
|
|
15804
|
+
ref_key: "boxRef",
|
|
15805
|
+
ref: boxRef
|
|
15806
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
15604
15807
|
key: 0,
|
|
15605
|
-
|
|
15606
|
-
|
|
15607
|
-
|
|
15608
|
-
|
|
15609
|
-
|
|
15610
|
-
}, null, 8
|
|
15611
|
-
/* PROPS */
|
|
15612
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
15808
|
+
ref_key: "headerTempRef",
|
|
15809
|
+
ref: headerTempRef
|
|
15810
|
+
}, null, 512
|
|
15811
|
+
/* NEED_PATCH */
|
|
15812
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
15613
15813
|
style: {
|
|
15614
15814
|
"margin-bottom": "8px"
|
|
15615
15815
|
}
|
|
@@ -15782,8 +15982,8 @@ const __default__ = {
|
|
|
15782
15982
|
|
|
15783
15983
|
}, 512
|
|
15784
15984
|
/* NEED_PATCH */
|
|
15785
|
-
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).mode !== null]])])],
|
|
15786
|
-
/* CLASS
|
|
15985
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).mode !== null]])])], 2
|
|
15986
|
+
/* CLASS */
|
|
15787
15987
|
);
|
|
15788
15988
|
};
|
|
15789
15989
|
}
|
|
@@ -15990,11 +16190,14 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
15990
16190
|
var gis_utils_ = __webpack_require__(826);
|
|
15991
16191
|
// EXTERNAL MODULE: ./src/webgl/screenshot/ScreenshotViewModel.js
|
|
15992
16192
|
var ScreenshotViewModel = __webpack_require__(1248);
|
|
15993
|
-
// EXTERNAL MODULE:
|
|
15994
|
-
var
|
|
16193
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
16194
|
+
var util_ = __webpack_require__(9519);
|
|
15995
16195
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/screenshot/Screenshot.vue?vue&type=script&setup=true&lang=js
|
|
15996
16196
|
|
|
15997
16197
|
const _hoisted_1 = {
|
|
16198
|
+
class: "kq3d-screenshot-box"
|
|
16199
|
+
};
|
|
16200
|
+
const _hoisted_2 = {
|
|
15998
16201
|
class: "kq3d-screenshot-footer"
|
|
15999
16202
|
};
|
|
16000
16203
|
|
|
@@ -16016,6 +16219,11 @@ const __default__ = {
|
|
|
16016
16219
|
type: Boolean,
|
|
16017
16220
|
default: true
|
|
16018
16221
|
},
|
|
16222
|
+
|
|
16223
|
+
/**
|
|
16224
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
16225
|
+
*/
|
|
16226
|
+
position: [String, Object],
|
|
16019
16227
|
// 是否生成HeaderTemp
|
|
16020
16228
|
showHeaderTemp: {
|
|
16021
16229
|
type: Boolean,
|
|
@@ -16072,8 +16280,21 @@ const __default__ = {
|
|
|
16072
16280
|
//倾斜摄影名称
|
|
16073
16281
|
tilesetStyle: props.settingParams && props.settingParams.tilesetStyle || style // 倾斜摄影样式
|
|
16074
16282
|
|
|
16075
|
-
});
|
|
16283
|
+
}); // 组件容器Ref
|
|
16284
|
+
|
|
16285
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
16286
|
+
|
|
16287
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
16288
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
16076
16289
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
16290
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
16291
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
16292
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
16293
|
+
});
|
|
16294
|
+
watchCreateHeaderTemp();
|
|
16295
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
16296
|
+
watchCreateHeaderTemp();
|
|
16297
|
+
});
|
|
16077
16298
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
16078
16299
|
if (scenceView) {
|
|
16079
16300
|
language.value = scenceView._language;
|
|
@@ -16085,7 +16306,18 @@ const __default__ = {
|
|
|
16085
16306
|
viewModel = new ScreenshotViewModel/* default */.Z(scenceView._viewer, formItem);
|
|
16086
16307
|
}
|
|
16087
16308
|
});
|
|
16088
|
-
});
|
|
16309
|
+
});
|
|
16310
|
+
/**
|
|
16311
|
+
* @description 监听header生成
|
|
16312
|
+
*/
|
|
16313
|
+
|
|
16314
|
+
const watchCreateHeaderTemp = () => {
|
|
16315
|
+
if (props.showHeaderTemp) {
|
|
16316
|
+
// 生成headerTemp
|
|
16317
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
16318
|
+
}
|
|
16319
|
+
}; // 场景出图
|
|
16320
|
+
|
|
16089
16321
|
|
|
16090
16322
|
function sceneFigure() {
|
|
16091
16323
|
viewModel && viewModel.sceneFigure();
|
|
@@ -16151,17 +16383,16 @@ const __default__ = {
|
|
|
16151
16383
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
16152
16384
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-screenshot", {
|
|
16153
16385
|
'kq-box-shadow': __props.showShadow
|
|
16154
|
-
}])
|
|
16155
|
-
|
|
16386
|
+
}]),
|
|
16387
|
+
ref_key: "boxRef",
|
|
16388
|
+
ref: boxRef
|
|
16389
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
16156
16390
|
key: 0,
|
|
16157
|
-
|
|
16158
|
-
|
|
16159
|
-
|
|
16160
|
-
|
|
16161
|
-
|
|
16162
|
-
}, null, 8
|
|
16163
|
-
/* PROPS */
|
|
16164
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
16391
|
+
ref_key: "headerTempRef",
|
|
16392
|
+
ref: headerTempRef
|
|
16393
|
+
}, null, 512
|
|
16394
|
+
/* NEED_PATCH */
|
|
16395
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
16165
16396
|
"label-width": "120px",
|
|
16166
16397
|
"label-position": "left"
|
|
16167
16398
|
}, {
|
|
@@ -16316,7 +16547,7 @@ const __default__ = {
|
|
|
16316
16547
|
_: 1
|
|
16317
16548
|
/* STABLE */
|
|
16318
16549
|
|
|
16319
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
16550
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
16320
16551
|
onClick: _cache[8] || (_cache[8] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => sceneFigure(), ["stop"])),
|
|
16321
16552
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenshotTips,
|
|
16322
16553
|
type: "primary"
|
|
@@ -16329,7 +16560,7 @@ const __default__ = {
|
|
|
16329
16560
|
|
|
16330
16561
|
}, 8
|
|
16331
16562
|
/* PROPS */
|
|
16332
|
-
, ["title"])])], 2
|
|
16563
|
+
, ["title"])])])], 2
|
|
16333
16564
|
/* CLASS */
|
|
16334
16565
|
);
|
|
16335
16566
|
};
|
|
@@ -16621,8 +16852,8 @@ var ShadowAnalysisViewModel = __webpack_require__(4167);
|
|
|
16621
16852
|
var const_image_ = __webpack_require__(9702);
|
|
16622
16853
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
16623
16854
|
var client_icons_vue_ = __webpack_require__(348);
|
|
16624
|
-
// EXTERNAL MODULE:
|
|
16625
|
-
var
|
|
16855
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
16856
|
+
var util_ = __webpack_require__(9519);
|
|
16626
16857
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/shadowanalysis/ShadowAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
16627
16858
|
|
|
16628
16859
|
const _hoisted_1 = {
|
|
@@ -16668,6 +16899,11 @@ const __default__ = {
|
|
|
16668
16899
|
type: Boolean,
|
|
16669
16900
|
default: true
|
|
16670
16901
|
},
|
|
16902
|
+
|
|
16903
|
+
/**
|
|
16904
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
16905
|
+
*/
|
|
16906
|
+
position: [String, Object],
|
|
16671
16907
|
// 是否生成HeaderTemp
|
|
16672
16908
|
showHeaderTemp: {
|
|
16673
16909
|
type: Boolean,
|
|
@@ -16781,20 +17017,33 @@ const __default__ = {
|
|
|
16781
17017
|
// 透明缩放范围最小值
|
|
16782
17018
|
maxAlphaScale: props.settingParams && props.settingParams.alphaScale || 1 // 透明缩放范围最大值
|
|
16783
17019
|
|
|
16784
|
-
});
|
|
16785
|
-
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
16786
|
-
time.value = [formItem.startTime, formItem.endTime];
|
|
16787
|
-
currentLang.value = proxy.$i18n.locale; // 获取当前语言类型
|
|
17020
|
+
}); // 组件容器Ref
|
|
16788
17021
|
|
|
16789
|
-
|
|
16790
|
-
|
|
16791
|
-
|
|
16792
|
-
|
|
16793
|
-
|
|
16794
|
-
|
|
16795
|
-
|
|
16796
|
-
|
|
16797
|
-
|
|
17022
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
17023
|
+
|
|
17024
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
17025
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
17026
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
17027
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
17028
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
17029
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
17030
|
+
});
|
|
17031
|
+
watchCreateHeaderTemp();
|
|
17032
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
17033
|
+
watchCreateHeaderTemp();
|
|
17034
|
+
});
|
|
17035
|
+
time.value = [formItem.startTime, formItem.endTime];
|
|
17036
|
+
currentLang.value = proxy.$i18n.locale; // 获取当前语言类型
|
|
17037
|
+
|
|
17038
|
+
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
17039
|
+
if (scenceView) {
|
|
17040
|
+
language.value = scenceView._language;
|
|
17041
|
+
viewModel = new ShadowAnalysisViewModel/* default */.Z(scenceView, {
|
|
17042
|
+
showVoxel: formItem.showBuilding,
|
|
17043
|
+
// 显示体素
|
|
17044
|
+
baseHeight: formItem.baseHeight,
|
|
17045
|
+
// 基地高度
|
|
17046
|
+
extrudeHeight: formItem.extrudeHeight,
|
|
16798
17047
|
// 拉伸高度
|
|
16799
17048
|
width: formItem.width,
|
|
16800
17049
|
// 体素大小
|
|
@@ -16814,7 +17063,18 @@ const __default__ = {
|
|
|
16814
17063
|
});
|
|
16815
17064
|
}
|
|
16816
17065
|
});
|
|
16817
|
-
});
|
|
17066
|
+
});
|
|
17067
|
+
/**
|
|
17068
|
+
* @description 监听header生成
|
|
17069
|
+
*/
|
|
17070
|
+
|
|
17071
|
+
const watchCreateHeaderTemp = () => {
|
|
17072
|
+
if (props.showHeaderTemp) {
|
|
17073
|
+
// 生成headerTemp
|
|
17074
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
17075
|
+
}
|
|
17076
|
+
}; // 获取当前日期
|
|
17077
|
+
|
|
16818
17078
|
|
|
16819
17079
|
function GetDateStr() {
|
|
16820
17080
|
var dd = new Date();
|
|
@@ -16937,17 +17197,16 @@ const __default__ = {
|
|
|
16937
17197
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
16938
17198
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-shadow-analysis", {
|
|
16939
17199
|
'kq-box-shadow': __props.showShadow
|
|
16940
|
-
}])
|
|
16941
|
-
|
|
17200
|
+
}]),
|
|
17201
|
+
ref_key: "boxRef",
|
|
17202
|
+
ref: boxRef
|
|
17203
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
16942
17204
|
key: 0,
|
|
16943
|
-
|
|
16944
|
-
|
|
16945
|
-
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
}, null, 8
|
|
16949
|
-
/* PROPS */
|
|
16950
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
17205
|
+
ref_key: "headerTempRef",
|
|
17206
|
+
ref: headerTempRef
|
|
17207
|
+
}, null, 512
|
|
17208
|
+
/* NEED_PATCH */
|
|
17209
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
16951
17210
|
class: "kq3d-shadow-analysis-datetime"
|
|
16952
17211
|
}, {
|
|
16953
17212
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
@@ -17777,8 +18036,8 @@ class SightlineAnalysisViewModel {
|
|
|
17777
18036
|
}
|
|
17778
18037
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
17779
18038
|
var client_icons_vue_ = __webpack_require__(348);
|
|
17780
|
-
// EXTERNAL MODULE:
|
|
17781
|
-
var
|
|
18039
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
18040
|
+
var util_ = __webpack_require__(9519);
|
|
17782
18041
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sightlineanalysis/SightlineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
17783
18042
|
|
|
17784
18043
|
const _hoisted_1 = {
|
|
@@ -17806,6 +18065,11 @@ const __default__ = {
|
|
|
17806
18065
|
type: Boolean,
|
|
17807
18066
|
default: true
|
|
17808
18067
|
},
|
|
18068
|
+
|
|
18069
|
+
/**
|
|
18070
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
18071
|
+
*/
|
|
18072
|
+
position: [String, Object],
|
|
17809
18073
|
// 是否生成HeaderTemp
|
|
17810
18074
|
showHeaderTemp: {
|
|
17811
18075
|
type: Boolean,
|
|
@@ -17848,9 +18112,22 @@ const __default__ = {
|
|
|
17848
18112
|
highlightObstacle: props.settingParams && props.settingParams.highlightObstacle !== undefined || false,
|
|
17849
18113
|
isLabel: props.settingParams && props.settingParams.isLabel !== undefined || true
|
|
17850
18114
|
});
|
|
17851
|
-
let viewModel = null;
|
|
18115
|
+
let viewModel = null; // 组件容器Ref
|
|
18116
|
+
|
|
18117
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
18118
|
+
|
|
18119
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
18120
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
17852
18121
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
17853
|
-
|
|
18122
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
18123
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
18124
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
18125
|
+
});
|
|
18126
|
+
watchCreateHeaderTemp();
|
|
18127
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
18128
|
+
watchCreateHeaderTemp();
|
|
18129
|
+
}); //父组件ScenceView初始化完成后执行
|
|
18130
|
+
|
|
17854
18131
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
17855
18132
|
if (scenceView) {
|
|
17856
18133
|
language.value = scenceView._language;
|
|
@@ -17865,6 +18142,16 @@ const __default__ = {
|
|
|
17865
18142
|
}
|
|
17866
18143
|
});
|
|
17867
18144
|
});
|
|
18145
|
+
/**
|
|
18146
|
+
* @description 监听header生成
|
|
18147
|
+
*/
|
|
18148
|
+
|
|
18149
|
+
const watchCreateHeaderTemp = () => {
|
|
18150
|
+
if (props.showHeaderTemp) {
|
|
18151
|
+
// 生成headerTemp
|
|
18152
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
18153
|
+
}
|
|
18154
|
+
};
|
|
17868
18155
|
|
|
17869
18156
|
function paramsChanged(key) {
|
|
17870
18157
|
switch (key) {
|
|
@@ -17937,17 +18224,16 @@ const __default__ = {
|
|
|
17937
18224
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
17938
18225
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-sightline-analysis", {
|
|
17939
18226
|
'kq-box-shadow': __props.showShadow
|
|
17940
|
-
}])
|
|
17941
|
-
|
|
18227
|
+
}]),
|
|
18228
|
+
ref_key: "boxRef",
|
|
18229
|
+
ref: boxRef
|
|
18230
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
17942
18231
|
key: 0,
|
|
17943
|
-
|
|
17944
|
-
|
|
17945
|
-
|
|
17946
|
-
|
|
17947
|
-
|
|
17948
|
-
}, null, 8
|
|
17949
|
-
/* PROPS */
|
|
17950
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
18232
|
+
ref_key: "headerTempRef",
|
|
18233
|
+
ref: headerTempRef
|
|
18234
|
+
}, null, 512
|
|
18235
|
+
/* NEED_PATCH */
|
|
18236
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
17951
18237
|
class: "kq3d-sightline-analysis-tip"
|
|
17952
18238
|
}, {
|
|
17953
18239
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).sightTips), 1
|
|
@@ -18428,8 +18714,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
18428
18714
|
var SkylineAnalysisViewModel = __webpack_require__(3084);
|
|
18429
18715
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
18430
18716
|
var client_icons_vue_ = __webpack_require__(348);
|
|
18431
|
-
// EXTERNAL MODULE:
|
|
18432
|
-
var
|
|
18717
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
18718
|
+
var util_ = __webpack_require__(9519);
|
|
18433
18719
|
;// CONCATENATED MODULE: external "echarts"
|
|
18434
18720
|
var external_echarts_namespaceObject = require("echarts");
|
|
18435
18721
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/skylineanalysis/SkylineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
@@ -18469,6 +18755,11 @@ const __default__ = {
|
|
|
18469
18755
|
type: Boolean,
|
|
18470
18756
|
default: true
|
|
18471
18757
|
},
|
|
18758
|
+
|
|
18759
|
+
/**
|
|
18760
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
18761
|
+
*/
|
|
18762
|
+
position: [String, Object],
|
|
18472
18763
|
// 是否生成HeaderTemp
|
|
18473
18764
|
showHeaderTemp: {
|
|
18474
18765
|
type: Boolean,
|
|
@@ -18526,8 +18817,21 @@ const __default__ = {
|
|
|
18526
18817
|
// 限高体透明度范围最大值
|
|
18527
18818
|
skylineWidth: 2 // 天际线宽度
|
|
18528
18819
|
|
|
18529
|
-
});
|
|
18820
|
+
}); // 组件容器Ref
|
|
18821
|
+
|
|
18822
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
18823
|
+
|
|
18824
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
18825
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
18530
18826
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
18827
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
18828
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
18829
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
18830
|
+
});
|
|
18831
|
+
watchCreateHeaderTemp();
|
|
18832
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
18833
|
+
watchCreateHeaderTemp();
|
|
18834
|
+
});
|
|
18531
18835
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
18532
18836
|
if (scenceView) {
|
|
18533
18837
|
language.value = scenceView._language;
|
|
@@ -18541,7 +18845,18 @@ const __default__ = {
|
|
|
18541
18845
|
viewModel._skylineAnalysisChartTitle = language.value["skylineAnalysisChartTitle"];
|
|
18542
18846
|
}
|
|
18543
18847
|
});
|
|
18544
|
-
});
|
|
18848
|
+
});
|
|
18849
|
+
/**
|
|
18850
|
+
* @description 监听header生成
|
|
18851
|
+
*/
|
|
18852
|
+
|
|
18853
|
+
const watchCreateHeaderTemp = () => {
|
|
18854
|
+
if (props.showHeaderTemp) {
|
|
18855
|
+
// 生成headerTemp
|
|
18856
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
18857
|
+
}
|
|
18858
|
+
}; // 提取天际线
|
|
18859
|
+
|
|
18545
18860
|
|
|
18546
18861
|
function pickSkyLine() {
|
|
18547
18862
|
resultEcahrtVis.value = true;
|
|
@@ -18626,17 +18941,16 @@ const __default__ = {
|
|
|
18626
18941
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
18627
18942
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-skyline-analysis", {
|
|
18628
18943
|
'kq-box-shadow': __props.showShadow
|
|
18629
|
-
}])
|
|
18630
|
-
|
|
18944
|
+
}]),
|
|
18945
|
+
ref_key: "boxRef",
|
|
18946
|
+
ref: boxRef
|
|
18947
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
18631
18948
|
key: 0,
|
|
18632
|
-
|
|
18633
|
-
|
|
18634
|
-
|
|
18635
|
-
|
|
18636
|
-
|
|
18637
|
-
}, null, 8
|
|
18638
|
-
/* PROPS */
|
|
18639
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
18949
|
+
ref_key: "headerTempRef",
|
|
18950
|
+
ref: headerTempRef
|
|
18951
|
+
}, null, 512
|
|
18952
|
+
/* NEED_PATCH */
|
|
18953
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
18640
18954
|
"model-value": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(collapseValue),
|
|
18641
18955
|
class: "kq3d-skyline-analysis-collapse"
|
|
18642
18956
|
}, {
|
|
@@ -19218,8 +19532,8 @@ class SlopeAnalysisViewModel {
|
|
|
19218
19532
|
}
|
|
19219
19533
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
19220
19534
|
var client_icons_vue_ = __webpack_require__(348);
|
|
19221
|
-
// EXTERNAL MODULE:
|
|
19222
|
-
var
|
|
19535
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
19536
|
+
var util_ = __webpack_require__(9519);
|
|
19223
19537
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/slopeanalysis/SlopeAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
19224
19538
|
|
|
19225
19539
|
const _hoisted_1 = {
|
|
@@ -19276,6 +19590,11 @@ const __default__ = {
|
|
|
19276
19590
|
type: Boolean,
|
|
19277
19591
|
default: true
|
|
19278
19592
|
},
|
|
19593
|
+
|
|
19594
|
+
/**
|
|
19595
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
19596
|
+
*/
|
|
19597
|
+
position: [String, Object],
|
|
19279
19598
|
// 是否生成HeaderTemp
|
|
19280
19599
|
showHeaderTemp: {
|
|
19281
19600
|
type: Boolean,
|
|
@@ -19355,8 +19674,21 @@ const __default__ = {
|
|
|
19355
19674
|
maxSlope: props.settingParams && props.settingParams.maxSlope || 60,
|
|
19356
19675
|
slopeColorAlpha: props.settingParams && props.settingParams.slopeColorAlpha || 0.3,
|
|
19357
19676
|
slopeColorText: props.settingParams && props.settingParams.slopeColorText || "#FF0000"
|
|
19358
|
-
});
|
|
19677
|
+
}); // 组件容器Ref
|
|
19678
|
+
|
|
19679
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
19680
|
+
|
|
19681
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
19682
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
19359
19683
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
19684
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
19685
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
19686
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
19687
|
+
});
|
|
19688
|
+
watchCreateHeaderTemp();
|
|
19689
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
19690
|
+
watchCreateHeaderTemp();
|
|
19691
|
+
});
|
|
19360
19692
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
19361
19693
|
|
|
19362
19694
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -19367,7 +19699,18 @@ const __default__ = {
|
|
|
19367
19699
|
// viewModel.setColorImage(imageUrl);
|
|
19368
19700
|
}
|
|
19369
19701
|
});
|
|
19370
|
-
});
|
|
19702
|
+
});
|
|
19703
|
+
/**
|
|
19704
|
+
* @description 监听header生成
|
|
19705
|
+
*/
|
|
19706
|
+
|
|
19707
|
+
const watchCreateHeaderTemp = () => {
|
|
19708
|
+
if (props.showHeaderTemp) {
|
|
19709
|
+
// 生成headerTemp
|
|
19710
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
19711
|
+
}
|
|
19712
|
+
}; // 刷新自定义样式数组
|
|
19713
|
+
|
|
19371
19714
|
|
|
19372
19715
|
function refactorArr(type) {
|
|
19373
19716
|
if (!dataList || !dataList.length) return;
|
|
@@ -19502,17 +19845,16 @@ const __default__ = {
|
|
|
19502
19845
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
19503
19846
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-slope-analysis", {
|
|
19504
19847
|
'kq-box-shadow': __props.showShadow
|
|
19505
|
-
}])
|
|
19506
|
-
|
|
19848
|
+
}]),
|
|
19849
|
+
ref_key: "boxRef",
|
|
19850
|
+
ref: boxRef
|
|
19851
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
19507
19852
|
key: 0,
|
|
19508
|
-
|
|
19509
|
-
|
|
19510
|
-
|
|
19511
|
-
|
|
19512
|
-
|
|
19513
|
-
}, null, 8
|
|
19514
|
-
/* PROPS */
|
|
19515
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle !== 'slopeFilter' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
19853
|
+
ref_key: "headerTempRef",
|
|
19854
|
+
ref: headerTempRef
|
|
19855
|
+
}, null, 512
|
|
19856
|
+
/* NEED_PATCH */
|
|
19857
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle !== 'slopeFilter' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
19516
19858
|
key: 0,
|
|
19517
19859
|
class: "kq3d-slope-analysis-tip"
|
|
19518
19860
|
}, {
|
|
@@ -20409,8 +20751,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
20409
20751
|
var TerrainOperationViewModel = __webpack_require__(5925);
|
|
20410
20752
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
20411
20753
|
var client_icons_vue_ = __webpack_require__(348);
|
|
20412
|
-
// EXTERNAL MODULE:
|
|
20413
|
-
var
|
|
20754
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
20755
|
+
var util_ = __webpack_require__(9519);
|
|
20414
20756
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/terrainoperation/TerrainOperation.vue?vue&type=script&setup=true&lang=js
|
|
20415
20757
|
|
|
20416
20758
|
const _hoisted_1 = {
|
|
@@ -20449,6 +20791,11 @@ const __default__ = {
|
|
|
20449
20791
|
type: Boolean,
|
|
20450
20792
|
default: true
|
|
20451
20793
|
},
|
|
20794
|
+
|
|
20795
|
+
/**
|
|
20796
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
20797
|
+
*/
|
|
20798
|
+
position: [String, Object],
|
|
20452
20799
|
// 是否生成HeaderTemp
|
|
20453
20800
|
showHeaderTemp: {
|
|
20454
20801
|
type: Boolean,
|
|
@@ -20495,8 +20842,21 @@ const __default__ = {
|
|
|
20495
20842
|
maxExcavationDepth: props.settingParams && props.settingParams.maxExcavationDepth || 5000 // 地形开挖深度范围最大值
|
|
20496
20843
|
|
|
20497
20844
|
});
|
|
20498
|
-
let viewModel = null;
|
|
20845
|
+
let viewModel = null; // 组件容器Ref
|
|
20846
|
+
|
|
20847
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
20848
|
+
|
|
20849
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
20850
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
20499
20851
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
20852
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
20853
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
20854
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
20855
|
+
});
|
|
20856
|
+
watchCreateHeaderTemp();
|
|
20857
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
20858
|
+
watchCreateHeaderTemp();
|
|
20859
|
+
});
|
|
20500
20860
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
20501
20861
|
|
|
20502
20862
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -20512,7 +20872,18 @@ const __default__ = {
|
|
|
20512
20872
|
});
|
|
20513
20873
|
}
|
|
20514
20874
|
});
|
|
20515
|
-
});
|
|
20875
|
+
});
|
|
20876
|
+
/**
|
|
20877
|
+
* @description 监听header生成
|
|
20878
|
+
*/
|
|
20879
|
+
|
|
20880
|
+
const watchCreateHeaderTemp = () => {
|
|
20881
|
+
if (props.showHeaderTemp) {
|
|
20882
|
+
// 生成headerTemp
|
|
20883
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
20884
|
+
}
|
|
20885
|
+
}; // 改变样式
|
|
20886
|
+
|
|
20516
20887
|
|
|
20517
20888
|
function changeStyle() {
|
|
20518
20889
|
viewModel && viewModel.setTerrainStyle(formItem.terrainStyle);
|
|
@@ -20559,17 +20930,16 @@ const __default__ = {
|
|
|
20559
20930
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
20560
20931
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-terrain-operation-analysis", {
|
|
20561
20932
|
'kq-box-shadow': __props.showShadow
|
|
20562
|
-
}])
|
|
20563
|
-
|
|
20933
|
+
}]),
|
|
20934
|
+
ref_key: "boxRef",
|
|
20935
|
+
ref: boxRef
|
|
20936
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
20564
20937
|
key: 0,
|
|
20565
|
-
|
|
20566
|
-
|
|
20567
|
-
|
|
20568
|
-
|
|
20569
|
-
|
|
20570
|
-
}, null, 8
|
|
20571
|
-
/* PROPS */
|
|
20572
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [__props.operationMode === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
20938
|
+
ref_key: "headerTempRef",
|
|
20939
|
+
ref: headerTempRef
|
|
20940
|
+
}, null, 512
|
|
20941
|
+
/* NEED_PATCH */
|
|
20942
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [__props.operationMode === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
20573
20943
|
key: 0
|
|
20574
20944
|
}, {
|
|
20575
20945
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -20813,28 +21183,26 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
|
|
|
20813
21183
|
var gis_utils_ = __webpack_require__(826);
|
|
20814
21184
|
// EXTERNAL MODULE: ./src/webgl/underground/UndergroundViewModel.js
|
|
20815
21185
|
var UndergroundViewModel = __webpack_require__(7656);
|
|
21186
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
21187
|
+
var util_ = __webpack_require__(9519);
|
|
20816
21188
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/underground/Underground.vue?vue&type=script&setup=true&lang=js
|
|
20817
21189
|
|
|
20818
21190
|
const _hoisted_1 = {
|
|
20819
|
-
class: "kq3d-underground"
|
|
21191
|
+
class: "kq3d-underground-switch"
|
|
20820
21192
|
};
|
|
20821
21193
|
|
|
20822
21194
|
|
|
20823
21195
|
|
|
21196
|
+
|
|
20824
21197
|
const __default__ = {
|
|
20825
21198
|
name: "kq3dUnderground"
|
|
20826
21199
|
};
|
|
20827
21200
|
/* harmony default export */ var Undergroundvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
20828
21201
|
props: {
|
|
20829
|
-
|
|
20830
|
-
|
|
20831
|
-
|
|
20832
|
-
|
|
20833
|
-
},
|
|
20834
|
-
right: {
|
|
20835
|
-
type: Number,
|
|
20836
|
-
default: 20
|
|
20837
|
-
}
|
|
21202
|
+
/**
|
|
21203
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
21204
|
+
*/
|
|
21205
|
+
position: [String, Object]
|
|
20838
21206
|
},
|
|
20839
21207
|
emits: ["undergroundChange"],
|
|
20840
21208
|
|
|
@@ -20850,8 +21218,14 @@ const __default__ = {
|
|
|
20850
21218
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
20851
21219
|
let isUndergroundMode = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
20852
21220
|
let viewer = null;
|
|
20853
|
-
let viewModel = null;
|
|
21221
|
+
let viewModel = null; // 组件容器Ref
|
|
21222
|
+
|
|
21223
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
20854
21224
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
21225
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
21226
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
21227
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
21228
|
+
});
|
|
20855
21229
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
20856
21230
|
if (scenceView) {
|
|
20857
21231
|
viewer = scenceView._viewer;
|
|
@@ -20883,14 +21257,15 @@ const __default__ = {
|
|
|
20883
21257
|
|
|
20884
21258
|
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
|
|
20885
21259
|
|
|
20886
|
-
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section",
|
|
21260
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
21261
|
+
class: "kq3d-underground",
|
|
21262
|
+
ref_key: "boxRef",
|
|
21263
|
+
ref: boxRef
|
|
21264
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
20887
21265
|
"label-width": "120px",
|
|
20888
21266
|
"label-position": "left"
|
|
20889
21267
|
}, {
|
|
20890
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
20891
|
-
class: "kq3d-underground-switch",
|
|
20892
|
-
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)('top: ' + props.top + 'px; right: ' + props.right + 'px;')
|
|
20893
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_switch, {
|
|
21268
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_switch, {
|
|
20894
21269
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isUndergroundMode),
|
|
20895
21270
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(isUndergroundMode) ? isUndergroundMode.value = $event : isUndergroundMode = $event),
|
|
20896
21271
|
onChange: undergroundChange,
|
|
@@ -20903,13 +21278,13 @@ const __default__ = {
|
|
|
20903
21278
|
}
|
|
20904
21279
|
}, null, 8
|
|
20905
21280
|
/* PROPS */
|
|
20906
|
-
, ["modelValue", "active-text"])],
|
|
20907
|
-
/* STYLE */
|
|
20908
|
-
)]),
|
|
21281
|
+
, ["modelValue", "active-text"])])]),
|
|
20909
21282
|
_: 1
|
|
20910
21283
|
/* STABLE */
|
|
20911
21284
|
|
|
20912
|
-
})]
|
|
21285
|
+
})], 512
|
|
21286
|
+
/* NEED_PATCH */
|
|
21287
|
+
);
|
|
20913
21288
|
};
|
|
20914
21289
|
}
|
|
20915
21290
|
|
|
@@ -21065,8 +21440,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
21065
21440
|
var ViewshedAnalysisViewModel = __webpack_require__(9721);
|
|
21066
21441
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
21067
21442
|
var client_icons_vue_ = __webpack_require__(348);
|
|
21068
|
-
// EXTERNAL MODULE:
|
|
21069
|
-
var
|
|
21443
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
21444
|
+
var util_ = __webpack_require__(9519);
|
|
21070
21445
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/viewshedanalysis/ViewshedAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
21071
21446
|
|
|
21072
21447
|
const _hoisted_1 = {
|
|
@@ -21094,6 +21469,11 @@ const __default__ = {
|
|
|
21094
21469
|
type: Boolean,
|
|
21095
21470
|
default: true
|
|
21096
21471
|
},
|
|
21472
|
+
|
|
21473
|
+
/**
|
|
21474
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
21475
|
+
*/
|
|
21476
|
+
position: [String, Object],
|
|
21097
21477
|
// 是否生成HeaderTemp
|
|
21098
21478
|
showHeaderTemp: {
|
|
21099
21479
|
type: Boolean,
|
|
@@ -21156,8 +21536,21 @@ const __default__ = {
|
|
|
21156
21536
|
// 不可见颜色
|
|
21157
21537
|
lineColor: props.settingParams && props.settingParams.lineColor || "#E6A23C"
|
|
21158
21538
|
});
|
|
21159
|
-
let viewModel = null;
|
|
21539
|
+
let viewModel = null; // 组件容器Ref
|
|
21540
|
+
|
|
21541
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
21542
|
+
|
|
21543
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
21544
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
21160
21545
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
21546
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
21547
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
21548
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
21549
|
+
});
|
|
21550
|
+
watchCreateHeaderTemp();
|
|
21551
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
21552
|
+
watchCreateHeaderTemp();
|
|
21553
|
+
});
|
|
21161
21554
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言类型
|
|
21162
21555
|
|
|
21163
21556
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -21174,6 +21567,16 @@ const __default__ = {
|
|
|
21174
21567
|
}
|
|
21175
21568
|
});
|
|
21176
21569
|
});
|
|
21570
|
+
/**
|
|
21571
|
+
* @description 监听header生成
|
|
21572
|
+
*/
|
|
21573
|
+
|
|
21574
|
+
const watchCreateHeaderTemp = () => {
|
|
21575
|
+
if (props.showHeaderTemp) {
|
|
21576
|
+
// 生成headerTemp
|
|
21577
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
21578
|
+
}
|
|
21579
|
+
};
|
|
21177
21580
|
|
|
21178
21581
|
function paramsChanged(key) {
|
|
21179
21582
|
switch (key) {
|
|
@@ -21249,17 +21652,16 @@ const __default__ = {
|
|
|
21249
21652
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
21250
21653
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-viewshed-analysis", {
|
|
21251
21654
|
'kq-box-shadow': __props.showShadow
|
|
21252
|
-
}])
|
|
21253
|
-
|
|
21655
|
+
}]),
|
|
21656
|
+
ref_key: "boxRef",
|
|
21657
|
+
ref: boxRef
|
|
21658
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
21254
21659
|
key: 0,
|
|
21255
|
-
|
|
21256
|
-
|
|
21257
|
-
|
|
21258
|
-
|
|
21259
|
-
|
|
21260
|
-
}, null, 8
|
|
21261
|
-
/* PROPS */
|
|
21262
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21660
|
+
ref_key: "headerTempRef",
|
|
21661
|
+
ref: headerTempRef
|
|
21662
|
+
}, null, 512
|
|
21663
|
+
/* NEED_PATCH */
|
|
21664
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21263
21665
|
class: "kq3d-viewshed-analysis-tip"
|
|
21264
21666
|
}, {
|
|
21265
21667
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).viewshedTips), 1
|
|
@@ -21752,8 +22154,8 @@ class WeatherEffectViewModel {
|
|
|
21752
22154
|
}
|
|
21753
22155
|
|
|
21754
22156
|
}
|
|
21755
|
-
// EXTERNAL MODULE:
|
|
21756
|
-
var
|
|
22157
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
22158
|
+
var util_ = __webpack_require__(9519);
|
|
21757
22159
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/weathereffect/WeatherEffect.vue?vue&type=script&setup=true&lang=js
|
|
21758
22160
|
|
|
21759
22161
|
const _hoisted_1 = {
|
|
@@ -21781,6 +22183,11 @@ const __default__ = {
|
|
|
21781
22183
|
type: Boolean,
|
|
21782
22184
|
default: true
|
|
21783
22185
|
},
|
|
22186
|
+
|
|
22187
|
+
/**
|
|
22188
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
22189
|
+
*/
|
|
22190
|
+
position: [String, Object],
|
|
21784
22191
|
// 是否生成HeaderTemp
|
|
21785
22192
|
showHeaderTemp: {
|
|
21786
22193
|
type: Boolean,
|
|
@@ -21828,8 +22235,21 @@ const __default__ = {
|
|
|
21828
22235
|
endScale: props.settingParams && props.settingParams.endScale || 1.3,
|
|
21829
22236
|
gravity: props.settingParams && props.settingParams.gravity || 1
|
|
21830
22237
|
});
|
|
21831
|
-
let viewModel = null;
|
|
22238
|
+
let viewModel = null; // 组件容器Ref
|
|
22239
|
+
|
|
22240
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
22241
|
+
|
|
22242
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
22243
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
21832
22244
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
22245
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
22246
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
22247
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
22248
|
+
});
|
|
22249
|
+
watchCreateHeaderTemp();
|
|
22250
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
22251
|
+
watchCreateHeaderTemp();
|
|
22252
|
+
});
|
|
21833
22253
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
21834
22254
|
|
|
21835
22255
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -21838,7 +22258,18 @@ const __default__ = {
|
|
|
21838
22258
|
viewModel = new WeatherEffectViewModel(scenceView);
|
|
21839
22259
|
}
|
|
21840
22260
|
});
|
|
21841
|
-
});
|
|
22261
|
+
});
|
|
22262
|
+
/**
|
|
22263
|
+
* @description 监听header生成
|
|
22264
|
+
*/
|
|
22265
|
+
|
|
22266
|
+
const watchCreateHeaderTemp = () => {
|
|
22267
|
+
if (props.showHeaderTemp) {
|
|
22268
|
+
// 生成headerTemp
|
|
22269
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
22270
|
+
}
|
|
22271
|
+
}; //切换雨雪天气特效
|
|
22272
|
+
|
|
21842
22273
|
|
|
21843
22274
|
function changeMode(mode) {
|
|
21844
22275
|
if (formItem.mode !== mode) {
|
|
@@ -21932,17 +22363,16 @@ const __default__ = {
|
|
|
21932
22363
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
21933
22364
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-weather-effect", {
|
|
21934
22365
|
'kq-box-shadow': __props.showShadow
|
|
21935
|
-
}])
|
|
21936
|
-
|
|
22366
|
+
}]),
|
|
22367
|
+
ref_key: "boxRef",
|
|
22368
|
+
ref: boxRef
|
|
22369
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
21937
22370
|
key: 0,
|
|
21938
|
-
|
|
21939
|
-
|
|
21940
|
-
|
|
21941
|
-
|
|
21942
|
-
|
|
21943
|
-
}, null, 8
|
|
21944
|
-
/* PROPS */
|
|
21945
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
22371
|
+
ref_key: "headerTempRef",
|
|
22372
|
+
ref: headerTempRef
|
|
22373
|
+
}, null, 512
|
|
22374
|
+
/* NEED_PATCH */
|
|
22375
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21946
22376
|
gutter: 20,
|
|
21947
22377
|
class: "rowclass"
|
|
21948
22378
|
}, {
|