File shuffle.
This commit is contained in:
34
src/ol/Projection.js
Normal file
34
src/ol/Projection.js
Normal file
@@ -0,0 +1,34 @@
|
||||
goog.provide('ol.Projection');
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
*/
|
||||
ol.Projection = function() {
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @type {string|undefined}
|
||||
*/
|
||||
this.code_ = undefined;
|
||||
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @return {string|undefined} Code.
|
||||
*/
|
||||
ol.Projection.prototype.getCode = function() {
|
||||
return this.code_;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @param {string|undefined} code Code.
|
||||
* @return {ol.Projection} This.
|
||||
*/
|
||||
ol.Projection.prototype.setCode = function(code) {
|
||||
this.code_ = code;
|
||||
return this;
|
||||
};
|
||||
Reference in New Issue
Block a user