@loaders.gl/loader-utils
Version:
Framework-independent loaders for 3D graphics formats
12 lines (11 loc) • 339 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import { DataSource } from "./data-source.js";
/**
* ImageSource - data sources that allow images to be queried by (geospatial) extents
*/
export class ImageSource extends DataSource {
static type = 'template';
static testURL = (url) => false;
}