Missing @export tags for advanced compilation

This commit is contained in:
Petr Pridal
2012-06-20 17:46:36 +02:00
parent 14b1a34f98
commit 6922be1b02
2 changed files with 3 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ ol.Loc.prototype.setZ = function(z) {
* will be thrown). Returns a new location object and does not modify this
* location.
*
* @export
* @param {string|!ol.Projection} proj The destination projection. Can be
* supplied as a projection instance of a string identifier.
* @returns {!ol.Loc} A new location.
@@ -138,6 +139,7 @@ ol.Loc.prototype.transform_ = function(proj) {
/**
* Clean up.
* @export
*/
ol.Loc.prototype.destroy = function() {
for (var key in this) {

View File

@@ -2,6 +2,7 @@ goog.provide('ol.Projection');
goog.require('ol.UnreferencedBounds');
/**
* @export
* @constructor
* @param {string} code Projection identifier.
*/