| 2484 | } |
| 2485 | |
| 2486 | rectifyLayersOrder(appreciableLayers, topLayerBeforeId) { |
| 2487 | const exsitLayers = super.rectifyLayersOrder(appreciableLayers, topLayerBeforeId); |
| 2488 | const labelLayerIds = []; |
| 2489 | for (let index = exsitLayers.length - 1; index > -1; index--) { |
| 2490 | const targetlayerId = exsitLayers[index]; |
| 2491 | const labelLayerId = this._getSymbolLabelLayerName(targetlayerId); |
| 2492 | if (this.map.getLayer(labelLayerId)) { |
| 2493 | labelLayerIds.push(labelLayerId); |
| 2494 | } |
| 2495 | } |
| 2496 | labelLayerIds.reverse().forEach((layerId) => { |
| 2497 | this.map.moveLayer(layerId); |
| 2498 | }); |
| 2499 | } |
| 2500 | |
| 2501 | _getParamString(obj, existingUrl, uppercase = false) { |
| 2502 | const params = []; |