@loaders.gl/wms
Advanced tools
Comparing version 4.1.0-alpha.2 to 4.1.0-alpha.3
import { parseCSWCapabilities } from "./lib/parsers/csw/parse-csw-capabilities.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const CSWCapabilitiesLoader = { | ||
@@ -4,0 +4,0 @@ id: 'csw-capabilities', |
import { parseCSWDomain } from "./lib/parsers/csw/parse-csw-domain.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const CSWDomainLoader = { | ||
@@ -4,0 +4,0 @@ id: 'csw-domain', |
import { parseCSWRecords } from "./lib/parsers/csw/parse-csw-records.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const CSWRecordsLoader = { | ||
@@ -4,0 +4,0 @@ id: 'csw-records', |
import { parseGML } from "./lib/parsers/gml/parse-gml.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const GMLLoader = { | ||
@@ -4,0 +4,0 @@ name: 'GML', |
import { parseWCSCapabilities } from "./lib/wcs/parse-wcs-capabilities.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const WCSCapabilitiesLoader = { | ||
@@ -4,0 +4,0 @@ id: 'wcs-capabilities', |
import { parseWFSCapabilities } from "./lib/wfs/parse-wfs-capabilities.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const WFSCapabilitiesLoader = { | ||
@@ -4,0 +4,0 @@ id: 'wfs-capabilities', |
@@ -33,7 +33,7 @@ import type { LoaderWithParser } from '@loaders.gl/loader-utils'; | ||
parseSync?: ((arrayBuffer: ArrayBuffer, options?: import("../wms-capabilities-loader").WMSCapabilitiesLoaderOptions | undefined, context?: import("@loaders.gl/loader-utils").LoaderContext | undefined) => import("../wms-capabilities-loader").WMSCapabilities) | undefined; | ||
parseText?: ((text: string, options?: import("../wms-capabilities-loader").WMSCapabilitiesLoaderOptions | undefined, context?: import("@loaders.gl/loader-utils").LoaderContext | undefined) => Promise<import("../wms-capabilities-loader").WMSCapabilities>) | undefined; | ||
parseInBatches?: ((iterator: AsyncIterable<ArrayBuffer> | Iterable<ArrayBuffer>, options?: import("../wms-capabilities-loader").WMSCapabilitiesLoaderOptions | undefined, context?: import("@loaders.gl/loader-utils").LoaderContext | undefined) => AsyncIterable<never>) | undefined; | ||
parseFileInBatches?: ((file: import("@loaders.gl/loader-utils").ReadableFile, options?: import("../wms-capabilities-loader").WMSCapabilitiesLoaderOptions | undefined, context?: import("@loaders.gl/loader-utils").LoaderContext | undefined) => AsyncIterable<never>) | undefined; | ||
parseText?: ((text: string, options?: import("../wms-capabilities-loader").WMSCapabilitiesLoaderOptions | undefined, context?: import("@loaders.gl/loader-utils").LoaderContext | undefined) => Promise<import("../wms-capabilities-loader").WMSCapabilities>) | undefined; | ||
}; | ||
export declare const _typecheckWMSFeatureInfoLoader: LoaderWithParser; | ||
//# sourceMappingURL=wms-layer-description-loader.d.ts.map |
import { parseWMTSCapabilities } from "./lib/wmts/parse-wmts-capabilities.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const WMTSCapabilitiesLoader = { | ||
@@ -4,0 +4,0 @@ id: 'wmts-capabilities', |
import { parseWMSCapabilities } from "./lib/parsers/wms/parse-wms-capabilities.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const WMSCapabilitiesLoader = { | ||
@@ -4,0 +4,0 @@ id: 'wms-capabilities', |
import { parseWMSError } from "./lib/parsers/wms/parse-wms-error.js"; | ||
const VERSION = typeof __VERSION__ !== 'undefined' ? __VERSION__ : 'latest'; | ||
const VERSION = typeof "4.1.0-alpha.3" !== 'undefined' ? "4.1.0-alpha.3" : 'latest'; | ||
export const WMSErrorLoader = { | ||
@@ -4,0 +4,0 @@ id: 'wms-error', |
{ | ||
"name": "@loaders.gl/wms", | ||
"version": "4.1.0-alpha.2", | ||
"version": "4.1.0-alpha.3", | ||
"description": "Framework-independent loaders for the WMS (Web Map Service) standard", | ||
@@ -54,10 +54,10 @@ "license": "MIT", | ||
"@babel/runtime": "^7.3.1", | ||
"@loaders.gl/images": "4.1.0-alpha.2", | ||
"@loaders.gl/loader-utils": "4.1.0-alpha.2", | ||
"@loaders.gl/schema": "4.1.0-alpha.2", | ||
"@loaders.gl/xml": "4.1.0-alpha.2", | ||
"@loaders.gl/images": "4.1.0-alpha.3", | ||
"@loaders.gl/loader-utils": "4.1.0-alpha.3", | ||
"@loaders.gl/schema": "4.1.0-alpha.3", | ||
"@loaders.gl/xml": "4.1.0-alpha.3", | ||
"@turf/rewind": "^5.1.5", | ||
"deep-strict-equal": "^0.2.0" | ||
}, | ||
"gitHead": "a248382edd20e846c1ccb23c15d089fb9b368dbc" | ||
"gitHead": "b78075a7cb8d4ecd4aac84805ce74b8ceb400cf7" | ||
} |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
@@ -1,2 +0,3 @@ | ||
// loaders.gl, MIT license | ||
// loaders.gl | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) vis.gl contributors | ||
@@ -3,0 +4,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
572222
7978
+ Added@loaders.gl/images@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/loader-utils@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/schema@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/worker-utils@4.1.0-alpha.3(transitive)
+ Added@loaders.gl/xml@4.1.0-alpha.3(transitive)
- Removed@loaders.gl/images@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/loader-utils@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/schema@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/worker-utils@4.1.0-alpha.2(transitive)
- Removed@loaders.gl/xml@4.1.0-alpha.2(transitive)