Expand docs for color options

This commit is contained in:
Peter Robins
2014-07-29 12:30:37 +00:00
parent a7e32469fa
commit d5e1c27fc1
4 changed files with 15 additions and 8 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ ol.color.asArray = function(color) {
/**
* @param {ol.Color|string} color Color.
* @return {string} String.
* @return {string} Rgba string.
* @api
*/
ol.color.asString = function(color) {
+5
View File
@@ -1,3 +1,8 @@
/**
* Colors can be defined as a {@link ol.Color} array, or as strings in
* `rgb(r,g,b)` or `rgba(r,g,b,a)` format, or in hex `#rrggbb` or `#rgb` format.
* Color names, like 'red', 'blue' or 'green', may also be used with the
* Canvas renderer.
*
* @namespace ol.color
*/