Move all styleFunction types into ol.feature

This commit is contained in:
Tom Payne
2014-01-03 17:23:11 +01:00
parent 2342f83a48
commit 061fed50b7
7 changed files with 54 additions and 43 deletions
-7
View File
@@ -1,5 +1,4 @@
goog.provide('ol.style.Style');
goog.provide('ol.style.StyleFunction');
goog.require('ol.style.Fill');
goog.require('ol.style.Image');
@@ -86,9 +85,3 @@ ol.style.Style.prototype.getText = function() {
ol.style.Style.prototype.getZIndex = function() {
return this.zIndex_;
};
/**
* @typedef {function(ol.Feature, number): Array.<ol.style.Style>}
*/
ol.style.StyleFunction;