You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ol 6.12.0
ol-ext 3.2.22
While animation all icons (cluster and single markers) will ignored the image style settings for scale. Before and after animation all looks fine. That means, while animation the symbols get to small.
The only case, where happens this, is in a android webview (Andoid Hybrid App). No problems with desktop browsers.
All works fine in an android app with ol 6.1.1. and ol-ext 3.1.8
Sourcecode:
function getStyleDoCTarget(feature){
return new ol.style.Style({
image: new ol.style.Icon(/** @type {olx.style.IconOptions} */ ({
anchor: [0.50, 53], scale: 1.60, <- dont work while animation
anchorXUnits: 'fraction',
anchorYUnits: 'pixels',
opacity: 1,
src: 'images/doc_target.png'
}))
});
}
The text was updated successfully, but these errors were encountered:
ol 6.12.0
ol-ext 3.2.22
While animation all icons (cluster and single markers) will ignored the image style settings for scale. Before and after animation all looks fine. That means, while animation the symbols get to small.
The only case, where happens this, is in a android webview (Andoid Hybrid App). No problems with desktop browsers.
All works fine in an android app with ol 6.1.1. and ol-ext 3.1.8
Sourcecode:
function getStyleDoCTarget(feature){
return new ol.style.Style({
image: new ol.style.Icon(/** @type {olx.style.IconOptions} */ ({
anchor: [0.50, 53],
scale: 1.60, <- dont work while animation
anchorXUnits: 'fraction',
anchorYUnits: 'pixels',
opacity: 1,
src: 'images/doc_target.png'
}))
});
}
The text was updated successfully, but these errors were encountered: