(projection)
| 2953 | } |
| 2954 | |
| 2955 | _getProjectionWKT(projection) { |
| 2956 | let epsgCode = toEpsgCode(projection); |
| 2957 | const reg = /^EPSG:/; |
| 2958 | return epsgCode && projection.match(reg) ? getProjection(epsgCode, this.specifiedProj4) : projection; |
| 2959 | } |
| 2960 | |
| 2961 | _fetchRequest(url, type, options) { |
| 2962 | return FetchRequest.get(url, null, options) |
no test coverage detected