Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
propertiesZoomStyle.d.ts 565 B
import ol from 'custom-ol';
/**
 * A style function based on properties and zoom level, wraps normal feature, resolution function
 * @callback propertiesZoomStyle
 * @param {object} properties the feature properties
 * @param {number} zoom level
 *
 */
/**
 * wrapper to define a style function by properties and zoom level
 * @param {propertiesZoomStyle|*} styleFunc - style function
 * @returns {function|*} new function
 */
declare function propertiesZoomStyle(styleFunc: any): (feature: ol.Feature, resolution: any) => void;
export default propertiesZoomStyle;