API / geotoolkit3d / scene / surface / contour / MajorMinorStrategy / MajorMinorStrategy
contour.MajorMinorStrategy.MajorMinorStrategy
Type Aliases
Type Aliases
Ƭ Options: Omit<OptionsBase, "contour">
The options
Ƭ OptionsBase: Object
The options for MajorMinorStrategy.
| Name | Type | Description |
|---|---|---|
contour? | Contour | - |
majorstep? | number | The step between each major Isoline, in elevation unit. When set, the major isolines will attempt to generate on elevations multiples of majorstep. ex: if (majorstep=100, zmin=899, zmax=1202) major isolines will generate at [900, 1000, 1100, 1200]. |
minorincrement? | number | The number of increments between each major isoline, which will be separated by minor isolines. The number of minor isolines generated between each major isoline will be (minorincrement - 1). For example, minorincrement=2 will split the space between two major isoline in 2, separated by 1 minor Isoline. Minimum accepted value is 1. |
Ƭ OptionsBaseOut: Required<OptionsBase>