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
+15 -3
View File
@@ -158,12 +158,24 @@ ol.style.Stroke.prototype.setWidth = function(width) {
/**
* @typedef {{strokeColor: (string),
* strokeOpacity: (number),
* strokeWidth: (number)}}
* @typedef {{color: (string),
* opacity: (number),
* width: (number)}}
*/
ol.style.StrokeDefaults = {
color: '#696969',
opacity: 0.75,
width: 1.5
};
/**
* @typedef {{color: (string),
* opacity: (number),
* width: (number)}}
*/
ol.style.StrokeDefaultsSelect = {
color: '#696969',
opacity: 0.9,
width: 2.0
};