@loaders.gl/loader-utils
Version:
Framework-independent loaders for 3D graphics formats
14 lines (13 loc) • 431 B
JavaScript
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import { DataSource } from "./data-source.js";
/**
* VectorSource - data sources that allow features to be queried by (geospatial) extents
* @note
* - If geospatial, bounding box is expected to be in web mercator coordinates
*/
export class VectorSource extends DataSource {
static type = 'template';
static testURL = (url) => false;
}