(baseUrl: string, path: string)
| 63 | } |
| 64 | |
| 65 | function joinSplatUrl(baseUrl: string, path: string): string { |
| 66 | const encoded = encodeUrlPath(path); |
| 67 | return baseUrl.endsWith('/') ? `${baseUrl}${encoded}` : `${baseUrl}/${encoded}`; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Merge a discovered remote splat catalog into the loaded files so every tile is |
no test coverage detected