Skip to content
Snippets Groups Projects
Commit 939b571f authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '574-opacity-is-not-working' into 'devel_12.1.x'

Resolve "Opacity is not working when highliting objects"

See merge request !502
parents bbedfd12 a2c33c85
No related branches found
No related tags found
2 merge requests!541version 12.1.3 into master,!502Resolve "Opacity is not working when highliting objects"
Pipeline #7443 passed
......@@ -202,7 +202,7 @@ MarkerSurfaceCollection.prototype.createSurfaceForDbOverlay = function (element,
map: map,
onClick: onclickFunctions,
color: element.getColor(),
fillOpacity: element.getOpacity(),
opacity: element.getOpacity(),
strokeWeight: element.getLineWeight(),
strokeColor: element.getLineColor(),
strokeOpacity: element.getLineOpacity()
......
......@@ -31,6 +31,11 @@ var Point = require('../canvas/Point');
* @param {IdentifiedElement} [params.element]
* @param {Alias} params.alias
* @param {AbstractCustomMap} params.map
* @param {string} [params.color]
* @param {number} [params.opacity]
* @param {number} [params.strokeWeight]
* @param {string} [params.strokeColor]
* @param {number} [params.strokeOpacity]
* @param {function|function[]} [params.onClick]
* @constructor
* @extends AbstractSurfaceElement
......@@ -38,9 +43,6 @@ var Point = require('../canvas/Point');
function AliasSurface(params) {
// call super constructor
AbstractSurfaceElement.call(this, params);
if (params.overlayAlias !== undefined) {
throw new Error();
}
this.setOverlayData(params.overlayData);
this.setStartX(params.startX);
......@@ -187,7 +189,7 @@ AliasSurface.prototype._computeColors = function () {
var self = this;
var overlayData = self.getOverlayData();
if (overlayData === undefined || overlayData.length === 0) {
return self.getColor();
return Promise.resolve(self.getColor());
} else {
return functions.overlaysToColorDataStructure(overlayData);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment