(url, type, options)
| 2959 | } |
| 2960 | |
| 2961 | _fetchRequest(url, type, options) { |
| 2962 | return FetchRequest.get(url, null, options) |
| 2963 | .then((response) => { |
| 2964 | return response[type](); |
| 2965 | }) |
| 2966 | .then((results) => { |
| 2967 | return results; |
| 2968 | }) |
| 2969 | .catch((error) => { |
| 2970 | console.log(error); |
| 2971 | }); |
| 2972 | } |
| 2973 | |
| 2974 | getEpsgCodeWKT(projectionUrl, options) { |
| 2975 | if (!projectionUrl) { |
no test coverage detected