This commit is contained in:
92
node_modules/ol/format/EsriJSON.d.ts
generated
vendored
Normal file
92
node_modules/ol/format/EsriJSON.d.ts
generated
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
export default EsriJSON;
|
||||
export type EsriJSONFeature = import("arcgis-rest-api").Feature;
|
||||
export type EsriJSONFeatureSet = import("arcgis-rest-api").FeatureSet;
|
||||
export type EsriJSONGeometry = import("arcgis-rest-api").Geometry;
|
||||
export type EsriJSONPoint = import("arcgis-rest-api").Point;
|
||||
export type EsriJSONPolyline = import("arcgis-rest-api").Polyline;
|
||||
export type EsriJSONPolygon = import("arcgis-rest-api").Polygon;
|
||||
export type EsriJSONMultipoint = import("arcgis-rest-api").Multipoint;
|
||||
export type EsriJSONHasZM = import("arcgis-rest-api").HasZM;
|
||||
export type EsriJSONPosition = import("arcgis-rest-api").Position;
|
||||
export type EsriJSONSpatialReferenceWkid = import("arcgis-rest-api").SpatialReferenceWkid;
|
||||
export type EsriJSONMultiPolygon = {
|
||||
/**
|
||||
* Rings for the MultiPolygon.
|
||||
*/
|
||||
rings: Array<Array<Array<Array<number>>>>;
|
||||
/**
|
||||
* If the polygon coordinates have an M value.
|
||||
*/
|
||||
hasM?: boolean | undefined;
|
||||
/**
|
||||
* If the polygon coordinates have a Z value.
|
||||
*/
|
||||
hasZ?: boolean | undefined;
|
||||
/**
|
||||
* The coordinate reference system.
|
||||
*/
|
||||
spatialReference?: import("arcgis-rest-api").SpatialReferenceWkid | undefined;
|
||||
};
|
||||
export type Options = {
|
||||
/**
|
||||
* Geometry name to use when creating features.
|
||||
*/
|
||||
geometryName?: string | undefined;
|
||||
};
|
||||
/**
|
||||
* @typedef {Object} Options
|
||||
* @property {string} [geometryName] Geometry name to use when creating features.
|
||||
*/
|
||||
/**
|
||||
* @classdesc
|
||||
* Feature format for reading and writing data in the EsriJSON format.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
declare class EsriJSON extends JSONFeature {
|
||||
/**
|
||||
* @param {Options} [opt_options] Options.
|
||||
*/
|
||||
constructor(opt_options?: Options | undefined);
|
||||
/**
|
||||
* Name of the geometry attribute for features.
|
||||
* @type {string|undefined}
|
||||
* @private
|
||||
*/
|
||||
private geometryName_;
|
||||
/**
|
||||
* @param {Object} object Object.
|
||||
* @param {import("./Feature.js").ReadOptions} [opt_options] Read options.
|
||||
* @param {string} [opt_idField] Name of the field where to get the id from.
|
||||
* @protected
|
||||
* @return {import("../Feature.js").default} Feature.
|
||||
*/
|
||||
protected readFeatureFromObject(object: any, opt_options?: import("./Feature.js").ReadOptions | undefined, opt_idField?: string | undefined): import("../Feature.js").default;
|
||||
/**
|
||||
* @param {EsriJSONGeometry} object Object.
|
||||
* @param {import("./Feature.js").ReadOptions} [opt_options] Read options.
|
||||
* @protected
|
||||
* @return {import("../geom/Geometry.js").default} Geometry.
|
||||
*/
|
||||
protected readGeometryFromObject(object: EsriJSONGeometry, opt_options?: import("./Feature.js").ReadOptions | undefined): import("../geom/Geometry.js").default;
|
||||
/**
|
||||
* Encode a geometry as a EsriJSON object.
|
||||
*
|
||||
* @param {import("../geom/Geometry.js").default} geometry Geometry.
|
||||
* @param {import("./Feature.js").WriteOptions} [opt_options] Write options.
|
||||
* @return {EsriJSONGeometry} Object.
|
||||
* @api
|
||||
*/
|
||||
writeGeometryObject(geometry: import("../geom/Geometry.js").default, opt_options?: import("./Feature.js").WriteOptions | undefined): EsriJSONGeometry;
|
||||
/**
|
||||
* Encode an array of features as a EsriJSON object.
|
||||
*
|
||||
* @param {Array<import("../Feature.js").default>} features Features.
|
||||
* @param {import("./Feature.js").WriteOptions} [opt_options] Write options.
|
||||
* @return {EsriJSONFeatureSet} EsriJSON Object.
|
||||
* @api
|
||||
*/
|
||||
writeFeaturesObject(features: Array<import("../Feature.js").default>, opt_options?: import("./Feature.js").WriteOptions | undefined): EsriJSONFeatureSet;
|
||||
}
|
||||
import JSONFeature from "./JSONFeature.js";
|
||||
//# sourceMappingURL=EsriJSON.d.ts.map
|
||||
Reference in New Issue
Block a user