UNPKG

c8y-openlayer

Version:

This module is designed to help integrate Openlayer with Cumulocity IoT

21 lines (19 loc) 788 B
/** * @enum {string} * Render mode for vector tiles: * * `'image'`: Vector tiles are rendered as images. Great performance, but * point symbols and texts are always rotated with the view and pixels are * scaled during zoom animations. * * `'hybrid'`: Polygon and line elements are rendered as images, so pixels * are scaled during zoom animations. Point symbols and texts are accurately * rendered as vectors and can stay upright on rotated views. * * `'vector'`: Vector tiles are rendered as vectors. Most accurate rendering * even during animations, but slower performance than the other options. * @api */ var _ol_layer_VectorTileRenderType_ = { IMAGE: 'image', HYBRID: 'hybrid', VECTOR: 'vector' }; export default _ol_layer_VectorTileRenderType_;