c8y-openlayer
Version:
This module is designed to help integrate Openlayer with Cumulocity IoT
17 lines (15 loc) • 517 B
JavaScript
/**
* @enum {string}
* Render mode for vector layers:
* * `'image'`: Vector layers are rendered as images. Great performance, but
* point symbols and texts are always rotated with the view and pixels are
* scaled during zoom animations.
* * `'vector'`: Vector layers are rendered as vectors. Most accurate rendering
* even during animations, but slower performance.
* @api
*/
var _ol_layer_VectorRenderType_ = {
IMAGE: 'image',
VECTOR: 'vector'
};
export default _ol_layer_VectorRenderType_;