Merge pull request #435 from elemoine/coordinate-z

Use @expose for Coordinate.z
This commit is contained in:
Éric Lemoine
2013-03-26 10:18:55 -07:00

View File

@@ -26,6 +26,7 @@ ol.Coordinate = function(x, y, opt_z) {
goog.base(this, x, y);
/**
* @expose
* @type {number}
*/
this.z = goog.isDef(opt_z) ? opt_z : NaN;