@@ -42,7 +42,6 @@ import {createDefaultStyle, toFunction as toStyleFunction} from '../style/Style.
|
|||||||
* means higher priority.
|
* means higher priority.
|
||||||
* @property {module:ol/style/Style|Array.<module:ol/style/Style>|module:ol/style/Style~StyleFunction} [style] Layer style. See
|
* @property {module:ol/style/Style|Array.<module:ol/style/Style>|module:ol/style/Style~StyleFunction} [style] Layer style. See
|
||||||
* {@link module:ol/style} for default style which will be used if this is not defined.
|
* {@link module:ol/style} for default style which will be used if this is not defined.
|
||||||
* @property {number} [maxTilesLoading=16] Maximum number tiles to load simultaneously.
|
|
||||||
* @property {boolean} [updateWhileAnimating=false] When set to `true` and `renderMode`
|
* @property {boolean} [updateWhileAnimating=false] When set to `true` and `renderMode`
|
||||||
* is `vector`, feature batches will be recreated during animations. This means that no
|
* is `vector`, feature batches will be recreated during animations. This means that no
|
||||||
* vectors will be shown clipped, but the setting will have a performance impact for large
|
* vectors will be shown clipped, but the setting will have a performance impact for large
|
||||||
|
|||||||
@@ -71,7 +71,6 @@ export const RenderType = {
|
|||||||
* `'hybrid'`.
|
* `'hybrid'`.
|
||||||
* @property {module:ol/style/Style|Array.<module:ol/style/Style>|module:ol/style/Style~StyleFunction} [style] Layer style. See
|
* @property {module:ol/style/Style|Array.<module:ol/style/Style>|module:ol/style/Style~StyleFunction} [style] Layer style. See
|
||||||
* {@link module:ol/style} for default style which will be used if this is not defined.
|
* {@link module:ol/style} for default style which will be used if this is not defined.
|
||||||
* @property {number} [maxTilesLoading=16] Maximum number tiles to load simultaneously.
|
|
||||||
* @property {boolean} [updateWhileAnimating=false] When set to `true`, feature batches will be
|
* @property {boolean} [updateWhileAnimating=false] When set to `true`, feature batches will be
|
||||||
* recreated during animations. This means that no vectors will be shown clipped, but the setting
|
* recreated during animations. This means that no vectors will be shown clipped, but the setting
|
||||||
* will have a performance impact for large amounts of vector data. When set to `false`, batches
|
* will have a performance impact for large amounts of vector data. When set to `false`, batches
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
* If no style is defined, the following default style is used:
|
* If no style is defined, the following default style is used:
|
||||||
* ```js
|
* ```js
|
||||||
* import {Fill, Stroke, Cirle, Style} from 'ol/style';
|
* import {Fill, Stroke, Circle, Style} from 'ol/style';
|
||||||
*
|
*
|
||||||
* var fill = new Fill({
|
* var fill = new Fill({
|
||||||
* color: 'rgba(255,255,255,0.4)'
|
* color: 'rgba(255,255,255,0.4)'
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
*
|
*
|
||||||
* A separate editing style has the following defaults:
|
* A separate editing style has the following defaults:
|
||||||
* ```js
|
* ```js
|
||||||
* import {Fill, Stroke, Cirle, Style} from 'ol/style';
|
* import {Fill, Stroke, Circle, Style} from 'ol/style';
|
||||||
* import GeometryType from 'ol/geom/GeometryType';
|
* import GeometryType from 'ol/geom/GeometryType';
|
||||||
*
|
*
|
||||||
* var white = [255, 255, 255, 1];
|
* var white = [255, 255, 255, 1];
|
||||||
@@ -79,8 +79,9 @@
|
|||||||
* ];
|
* ];
|
||||||
* styles[GeometryType.MULTI_POINT] =
|
* styles[GeometryType.MULTI_POINT] =
|
||||||
* styles[GeometryType.POINT];
|
* styles[GeometryType.POINT];
|
||||||
* styles[GEOMETRY_COLLECTION] =
|
* styles[GeometryType.GEOMETRY_COLLECTION] =
|
||||||
* styles[GeometryType.POLYGON].concat(
|
* styles[GeometryType.POLYGON].concat(
|
||||||
|
* styles[GeometryType.LINE_STRING],
|
||||||
* styles[GeometryType.POINT]
|
* styles[GeometryType.POINT]
|
||||||
* );
|
* );
|
||||||
* ```
|
* ```
|
||||||
|
|||||||
Reference in New Issue
Block a user