Add option to Zoomify source for setting custom extent.

https://github.com/openlayers/openlayers/issues/7390
This commit is contained in:
Lasse Laakkonen
2017-10-25 22:19:02 +03:00
parent 1a1d45fdd1
commit eefb3f9207
3 changed files with 44 additions and 1 deletions
+11
View File
@@ -7325,6 +7325,17 @@ olx.source.ZoomifyOptions.prototype.tierSizeCalculation;
olx.source.ZoomifyOptions.prototype.size;
/**
* Extent for the TileGrid that is created. Default sets the TileGrid in the
* fourth quadrant, meaning extent is `[0, -height, width, 0]`. To change the
* extent to the first quadrant (the default for OpenLayers 2) set the extent
* as `[0, 0, width, height]`.
* @type {ol.Extent|undefined}
* @api
*/
olx.source.ZoomifyOptions.prototype.extent;
/**
* Duration of the opacity transition for rendering. To disable the opacity
* transition, pass `transition: 0`.