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