Fix regionstyle attributes for region outlines and fill
This commit is contained in:
parent
ae0d4be0f7
commit
89ec0fc7cf
1 changed files with 6 additions and 5 deletions
|
|
@ -5,11 +5,12 @@ componentconstructors['regions'] = function(dynmap, configuration) {
|
||||||
// Compatibility with older configurations.
|
// Compatibility with older configurations.
|
||||||
if (configuration.regionstyle) {
|
if (configuration.regionstyle) {
|
||||||
configuration.regionstyle = $.extend({
|
configuration.regionstyle = $.extend({
|
||||||
stroke: true,
|
stroke: (configuration.regionstyle.strokeOpacity > 0.0),
|
||||||
color: configuration.strokeColor,
|
color: configuration.regionstyle.strokeColor,
|
||||||
opacity: configuration.strokeOpacity,
|
opacity: configuration.regionstyle.strokeOpacity,
|
||||||
weight: configuration.strokeWeight,
|
weight: configuration.regionstyle.strokeWeight,
|
||||||
fill: true
|
fill: (configuration.regionstyle.fillOpacity > 0.0),
|
||||||
|
smoothFactor: 0.0
|
||||||
}, configuration.regionstyle);
|
}, configuration.regionstyle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue