ol
Version:
OpenLayers mapping library
231 lines • 7.41 kB
TypeScript
/**
* Create a geometry from an `ol/render/Feature`
* @param {RenderFeature} renderFeature
* Render Feature
* @return {Point|MultiPoint|LineString|MultiLineString|Polygon|MultiPolygon}
* New geometry instance.
* @api
*/
export function toGeometry(renderFeature: RenderFeature): Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon;
/**
* Create an `ol/Feature` from an `ol/render/Feature`
* @param {RenderFeature} renderFeature RenderFeature
* @param {string} [geometryName] Geometry name to use
* when creating the Feature.
* @return {Feature} Newly constructed `ol/Feature` with properties,
* geometry, and id copied over.
* @api
*/
export function toFeature(renderFeature: RenderFeature, geometryName?: string): Feature;
export default RenderFeature;
/**
* The geometry type. One of `'Point'`, `'LineString'`, `'LinearRing'`,
* `'Polygon'`, `'MultiPoint'` or 'MultiLineString'`.
*/
export type Type = "Point" | "LineString" | "LinearRing" | "Polygon" | "MultiPoint" | "MultiLineString";
/**
* Lightweight, read-only, {@link module:ol/Feature~Feature} and {@link module:ol/geom/Geometry~Geometry} like
* structure, optimized for vector tile rendering and styling. Geometry access
* through the API is limited to getting the type and extent of the geometry.
*/
declare class RenderFeature {
/**
* @param {Type} type Geometry type.
* @param {Array<number>} flatCoordinates Flat coordinates. These always need
* to be right-handed for polygons.
* @param {Array<number>} ends Ends.
* @param {number} stride Stride.
* @param {Object<string, *>} properties Properties.
* @param {number|string|undefined} id Feature id.
*/
constructor(type: Type, flatCoordinates: Array<number>, ends: Array<number>, stride: number, properties: {
[x: string]: any;
}, id: number | string | undefined);
/**
* @type {import("../style/Style.js").StyleFunction|undefined}
*/
styleFunction: import("../style/Style.js").StyleFunction | undefined;
/**
* @private
* @type {import("../extent.js").Extent|undefined}
*/
private extent_;
/**
* @private
* @type {number|string|undefined}
*/
private id_;
/**
* @private
* @type {Type}
*/
private type_;
/**
* @private
* @type {Array<number>}
*/
private flatCoordinates_;
/**
* @private
* @type {Array<number>}
*/
private flatInteriorPoints_;
/**
* @private
* @type {Array<number>}
*/
private flatMidpoints_;
/**
* @private
* @type {Array<number>|null}
*/
private ends_;
/**
* @private
* @type {Object<string, *>}
*/
private properties_;
/**
* @private
* @type {number}
*/
private squaredTolerance_;
/**
* @private
* @type {number}
*/
private stride_;
/**
* @private
* @type {RenderFeature}
*/
private simplifiedGeometry_;
/**
* Get a feature property by its key.
* @param {string} key Key
* @return {*} Value for the requested key.
* @api
*/
get(key: string): any;
/**
* Get the extent of this feature's geometry.
* @return {import("../extent.js").Extent} Extent.
* @api
*/
getExtent(): import("../extent.js").Extent;
/**
* @return {Array<number>} Flat interior points.
*/
getFlatInteriorPoint(): Array<number>;
/**
* @return {Array<number>} Flat interior points.
*/
getFlatInteriorPoints(): Array<number>;
/**
* @return {Array<number>} Flat midpoint.
*/
getFlatMidpoint(): Array<number>;
/**
* @return {Array<number>} Flat midpoints.
*/
getFlatMidpoints(): Array<number>;
/**
* Get the feature identifier. This is a stable identifier for the feature and
* is set when reading data from a remote source.
* @return {number|string|undefined} Id.
* @api
*/
getId(): number | string | undefined;
/**
* @return {Array<number>} Flat coordinates.
*/
getOrientedFlatCoordinates(): Array<number>;
/**
* For API compatibility with {@link module:ol/Feature~Feature}, this method is useful when
* determining the geometry type in style function (see {@link #getType}).
* @return {RenderFeature} Feature.
* @api
*/
getGeometry(): RenderFeature;
/**
* @param {number} squaredTolerance Squared tolerance.
* @return {RenderFeature} Simplified geometry.
*/
getSimplifiedGeometry(squaredTolerance: number): RenderFeature;
/**
* Get a transformed and simplified version of the geometry.
* @param {number} squaredTolerance Squared tolerance.
* @param {import("../proj.js").TransformFunction} [transform] Optional transform function.
* @return {RenderFeature} Simplified geometry.
*/
simplifyTransformed(squaredTolerance: number, transform?: import("../proj.js").TransformFunction): RenderFeature;
/**
* Get the feature properties.
* @return {Object<string, *>} Feature properties.
* @api
*/
getProperties(): {
[x: string]: any;
};
/**
* Get an object of all property names and values. This has the same behavior as getProperties,
* but is here to conform with the {@link module:ol/Feature~Feature} interface.
* @return {Object<string, *>?} Object.
*/
getPropertiesInternal(): {
[x: string]: any;
} | null;
/**
* @return {number} Stride.
*/
getStride(): number;
/**
* @return {import('../style/Style.js').StyleFunction|undefined} Style
*/
getStyleFunction(): import("../style/Style.js").StyleFunction | undefined;
/**
* Get the type of this feature's geometry.
* @return {Type} Geometry type.
* @api
*/
getType(): Type;
/**
* Transform geometry coordinates from tile pixel space to projected.
*
* @param {import("../proj.js").ProjectionLike} projection The data projection
*/
transform(projection: import("../proj.js").ProjectionLike): void;
/**
* Apply a transform function to the coordinates of the geometry.
* The geometry is modified in place.
* If you do not want the geometry modified in place, first `clone()` it and
* then use this function on the clone.
* @param {import("../proj.js").TransformFunction} transformFn Transform function.
*/
applyTransform(transformFn: import("../proj.js").TransformFunction): void;
/**
* @return {RenderFeature} A cloned render feature.
*/
clone(): RenderFeature;
/**
* @return {Array<number>|null} Ends.
*/
getEnds(): Array<number> | null;
/**
* Add transform and resolution based geometry simplification to this instance.
* @return {RenderFeature} This render feature.
*/
enableSimplifyTransformed(): RenderFeature;
/**
* @return {Array<number>} Flat coordinates.
*/
getFlatCoordinates: () => Array<number>;
}
import { Point } from '../geom.js';
import { MultiPoint } from '../geom.js';
import { LineString } from '../geom.js';
import { MultiLineString } from '../geom.js';
import { Polygon } from '../geom.js';
import { MultiPolygon } from '../geom.js';
import Feature from '../Feature.js';
//# sourceMappingURL=Feature.d.ts.map