Add ol.Layer

This commit is contained in:
Tom Payne
2012-07-06 12:27:31 +02:00
committed by Tom Payne
parent 89ec9bf07a
commit a2cf655bfa
4 changed files with 78 additions and 23 deletions

View File

@@ -1,22 +0,0 @@
goog.provide('ol.layer.Layer');
/**
* @constructor
* @export
*/
ol.layer.Layer = function() {
/**
* @type {string}
* @protected
*/
this.attribution_;
};
/**
* @return {string}
*/
ol.layer.Layer.prototype.getAttribution = function() {
return this.attribution_;
};