UNPKG

@itwin/core-backend

Version:
20 lines 1.09 kB
"use strict"; /*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** @packageDocumentation * @module iModels */ Object.defineProperty(exports, "__esModule", { value: true }); exports.getAvailableCoordinateReferenceSystems = getAvailableCoordinateReferenceSystems; const NativePlatform_1 = require("./internal/NativePlatform"); /** Get a list of Geographic Coordinate Reference Systems. * @param options Specifies the parameters to filter the returned list. * @returns The list of Geographic Coordinate Reference Systems, according to the supplied parameters. * @beta */ async function getAvailableCoordinateReferenceSystems(args) { return NativePlatform_1.IModelNative.platform.GeoServices.getListOfCRS(args.extent, args.includeWorld); } //# sourceMappingURL=GeographicCRSServices.js.map