Fix namespacing convention
This commit is contained in:
@@ -5907,7 +5907,7 @@ olx.tilegrid.ZoomifyOptions.prototype.resolutions;
|
||||
* Namespace.
|
||||
* @type {Object}
|
||||
*/
|
||||
olx.View;
|
||||
olx.view;
|
||||
|
||||
|
||||
/**
|
||||
@@ -5917,7 +5917,7 @@ olx.View;
|
||||
* minResolution: (number|undefined)}}
|
||||
* @api
|
||||
*/
|
||||
olx.View.fitGeometryOptions;
|
||||
olx.view.FitGeometryOptions;
|
||||
|
||||
|
||||
/**
|
||||
@@ -5926,7 +5926,7 @@ olx.View.fitGeometryOptions;
|
||||
* @type {!Array.<number>}
|
||||
* @api
|
||||
*/
|
||||
olx.View.fitGeometryOptions.prototype.padding;
|
||||
olx.view.FitGeometryOptions.prototype.padding;
|
||||
|
||||
|
||||
/**
|
||||
@@ -5934,7 +5934,7 @@ olx.View.fitGeometryOptions.prototype.padding;
|
||||
* @type {boolean|undefined}
|
||||
* @api
|
||||
*/
|
||||
olx.View.fitGeometryOptions.prototype.constrainResolution;
|
||||
olx.view.FitGeometryOptions.prototype.constrainResolution;
|
||||
|
||||
|
||||
/**
|
||||
@@ -5942,7 +5942,7 @@ olx.View.fitGeometryOptions.prototype.constrainResolution;
|
||||
* @type {boolean|undefined}
|
||||
* @api
|
||||
*/
|
||||
olx.View.fitGeometryOptions.prototype.nearest;
|
||||
olx.view.FitGeometryOptions.prototype.nearest;
|
||||
|
||||
|
||||
/**
|
||||
@@ -5950,7 +5950,7 @@ olx.View.fitGeometryOptions.prototype.nearest;
|
||||
* @type {number|undefined}
|
||||
* @api
|
||||
*/
|
||||
olx.View.fitGeometryOptions.prototype.minResolution;
|
||||
olx.view.FitGeometryOptions.prototype.minResolution;
|
||||
|
||||
|
||||
/**
|
||||
@@ -5959,7 +5959,7 @@ olx.View.fitGeometryOptions.prototype.minResolution;
|
||||
* @type {number|undefined}
|
||||
* @api
|
||||
*/
|
||||
olx.View.fitGeometryOptions.prototype.maxZoom;
|
||||
olx.view.FitGeometryOptions.prototype.maxZoom;
|
||||
|
||||
|
||||
/* typedefs for object literals exposed by the library */
|
||||
|
||||
@@ -454,7 +454,7 @@ ol.View.prototype.fitExtent = function(extent, size) {
|
||||
* Take care on the map angle.
|
||||
* @param {ol.geom.SimpleGeometry} geometry Geometry.
|
||||
* @param {ol.Size} size Box pixel size.
|
||||
* @param {olx.View.fitGeometryOptions=} opt_options Options.
|
||||
* @param {olx.view.FitGeometryOptions=} opt_options Options.
|
||||
* @api
|
||||
*/
|
||||
ol.View.prototype.fitGeometry = function(geometry, size, opt_options) {
|
||||
|
||||
Reference in New Issue
Block a user