(mapInfo)
| 329 | } |
| 330 | |
| 331 | _registerMapCRS(mapInfo) { |
| 332 | const { crs } = mapInfo; |
| 333 | let epsgCode = crs; |
| 334 | if (typeof crs === 'object') { |
| 335 | crsManager.registerCRS(crs); |
| 336 | epsgCode = crs.name; |
| 337 | } |
| 338 | return epsgCode; |
| 339 | } |
| 340 | _getFieldCaption(msDatasetId) { |
| 341 | const { datas = [] } = this._mapResourceInfo; |
| 342 | let fieldCaptions = null; |
no test coverage detected