Symbolizer defaults for the select renderIntent

This commit is contained in:
ahocevar
2013-08-30 13:47:43 +02:00
parent 83720975f8
commit 9dae49dc18
4 changed files with 41 additions and 9 deletions
+12 -2
View File
@@ -116,10 +116,20 @@ ol.style.Fill.prototype.setOpacity = function(opacity) {
/**
* @typedef {{fillColor: (string),
* fillOpacity: (number)}}
* @typedef {{color: (string),
* opacity: (number)}}
*/
ol.style.FillDefaults = {
color: '#ffffff',
opacity: 0.4
};
/**
* @typedef {{color: (string),
* opacity: (number)}}
*/
ol.style.FillDefaultsSelect = {
color: '#ffffff',
opacity: 0.7
};