* @private * @function WebMapV3.prototype._getMapRelatedInfo * @description 获取地图关联信息的 JSON 信息。
()
| 463 | * @description 获取地图关联信息的 JSON 信息。 |
| 464 | */ |
| 465 | _getMapRelatedInfo() { |
| 466 | const mapResourceUrl = transformUrl( |
| 467 | Object.assign({ url: `${this.options.server}web/maps/${this.mapId}` }, this.options) |
| 468 | ); |
| 469 | return FetchRequest.get(mapResourceUrl, null, { withCredentials: this.options.withCredentials }).then((response) => |
| 470 | response.json() |
| 471 | ); |
| 472 | } |
| 473 | |
| 474 | /** |
| 475 | * @private |
no test coverage detected