Add ol.Store.isReady

This commit is contained in:
Tom Payne
2012-07-27 23:32:48 +02:00
parent 588f8df8ba
commit 04f71183e8

View File

@@ -1,5 +1,6 @@
goog.provide('ol.Store');
goog.require('goog.functions');
goog.require('ol.Extent');
goog.require('ol.Projection');
@@ -59,6 +60,12 @@ ol.Store.prototype.getProjection = function() {
ol.Store.prototype.getResolutions = goog.abstractMethod;
/**
* @return {boolean} Is ready.
*/
ol.Store.prototype.isReady = goog.functions.TRUE;
/**
* @param {string|undefined} attribution Attribution.
*/