@@ -472,7 +472,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {Object} ol.source.SingleImageWMSOptions
|
||||
* @typedef {Object} ol.source.ImageWMSOptions
|
||||
* @property {Array.<ol.Attribution>|undefined} attributions Attributions.
|
||||
* @property {null|string|undefined} crossOrigin crossOrigin setting for image
|
||||
* requests.
|
||||
@@ -510,7 +510,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {Object} ol.source.StaticImageOptions
|
||||
* @typedef {Object} ol.source.ImageStaticOptions
|
||||
* @property {Array.<ol.Attribution>|undefined} attributions Attributions.
|
||||
* @property {null|string|undefined} crossOrigin crossOrigin setting for image
|
||||
* requests.
|
||||
|
||||
1
src/ol/source/imagestaticsource.exports
Normal file
1
src/ol/source/imagestaticsource.exports
Normal file
@@ -0,0 +1 @@
|
||||
@exportClass ol.source.ImageStatic ol.source.ImageStaticOptions
|
||||
@@ -1,4 +1,4 @@
|
||||
goog.provide('ol.source.StaticImage');
|
||||
goog.provide('ol.source.ImageStatic');
|
||||
|
||||
goog.require('ol.Image');
|
||||
goog.require('ol.ImageUrlFunctionType');
|
||||
@@ -11,11 +11,11 @@ goog.require('ol.source.Image');
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {ol.source.Image}
|
||||
* @param {ol.source.StaticImageOptions} options Static image options.
|
||||
* @param {ol.source.ImageStaticOptions} options Options.
|
||||
*/
|
||||
ol.source.StaticImage = function(options) {
|
||||
ol.source.ImageStatic = function(options) {
|
||||
|
||||
var imageFunction = ol.source.StaticImage.createImageFunction(
|
||||
var imageFunction = ol.source.ImageStatic.createImageFunction(
|
||||
options.url);
|
||||
|
||||
var imageExtent = options.imageExtent;
|
||||
@@ -40,13 +40,13 @@ ol.source.StaticImage = function(options) {
|
||||
imageExtent, imageResolution, imageSize, projection);
|
||||
|
||||
};
|
||||
goog.inherits(ol.source.StaticImage, ol.source.Image);
|
||||
goog.inherits(ol.source.ImageStatic, ol.source.Image);
|
||||
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
ol.source.StaticImage.prototype.getImage =
|
||||
ol.source.ImageStatic.prototype.getImage =
|
||||
function(extent, resolution, projection) {
|
||||
if (ol.extent.intersects(extent, this.image_.getExtent())) {
|
||||
return this.image_;
|
||||
@@ -59,7 +59,7 @@ ol.source.StaticImage.prototype.getImage =
|
||||
* @param {string|undefined} url URL.
|
||||
* @return {ol.ImageUrlFunctionType} Function.
|
||||
*/
|
||||
ol.source.StaticImage.createImageFunction = function(url) {
|
||||
ol.source.ImageStatic.createImageFunction = function(url) {
|
||||
return (
|
||||
/**
|
||||
* @param {ol.Extent} extent Extent.
|
||||
3
src/ol/source/imagewmssource.exports
Normal file
3
src/ol/source/imagewmssource.exports
Normal file
@@ -0,0 +1,3 @@
|
||||
@exportClass ol.source.ImageWMS ol.source.ImageWMSOptions
|
||||
@exportProperty ol.source.ImageWMS.prototype.getParams
|
||||
@exportProperty ol.source.ImageWMS.prototype.updateParams
|
||||
@@ -1,4 +1,4 @@
|
||||
goog.provide('ol.source.SingleImageWMS');
|
||||
goog.provide('ol.source.ImageWMS');
|
||||
|
||||
goog.require('goog.asserts');
|
||||
goog.require('goog.object');
|
||||
@@ -15,9 +15,9 @@ goog.require('ol.source.wms');
|
||||
* @constructor
|
||||
* @extends {ol.source.Image}
|
||||
* @implements {ol.source.FeatureInfoSource}
|
||||
* @param {ol.source.SingleImageWMSOptions} options Options.
|
||||
* @param {ol.source.ImageWMSOptions} options Options.
|
||||
*/
|
||||
ol.source.SingleImageWMS = function(options) {
|
||||
ol.source.ImageWMS = function(options) {
|
||||
|
||||
/**
|
||||
* @private
|
||||
@@ -60,7 +60,7 @@ ol.source.SingleImageWMS = function(options) {
|
||||
options.ratio : 1.5;
|
||||
|
||||
};
|
||||
goog.inherits(ol.source.SingleImageWMS, ol.source.Image);
|
||||
goog.inherits(ol.source.ImageWMS, ol.source.Image);
|
||||
|
||||
|
||||
/**
|
||||
@@ -68,7 +68,7 @@ goog.inherits(ol.source.SingleImageWMS, ol.source.Image);
|
||||
* the "params" option, and possibly updated using the updateParams method.
|
||||
* @return {Object} Params.
|
||||
*/
|
||||
ol.source.SingleImageWMS.prototype.getParams = function() {
|
||||
ol.source.ImageWMS.prototype.getParams = function() {
|
||||
return this.params_;
|
||||
};
|
||||
|
||||
@@ -76,7 +76,7 @@ ol.source.SingleImageWMS.prototype.getParams = function() {
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
ol.source.SingleImageWMS.prototype.getImage =
|
||||
ol.source.ImageWMS.prototype.getImage =
|
||||
function(extent, resolution, projection) {
|
||||
resolution = this.findNearestResolution(resolution);
|
||||
|
||||
@@ -101,7 +101,7 @@ ol.source.SingleImageWMS.prototype.getImage =
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
ol.source.SingleImageWMS.prototype.getFeatureInfoForPixel =
|
||||
ol.source.ImageWMS.prototype.getFeatureInfoForPixel =
|
||||
function(pixel, map, success, opt_error) {
|
||||
var view2D = map.getView().getView2D(),
|
||||
projection = view2D.getProjection(),
|
||||
@@ -111,7 +111,7 @@ ol.source.SingleImageWMS.prototype.getFeatureInfoForPixel =
|
||||
extent = [bottomLeft[0], topRight[0], bottomLeft[1], topRight[1]],
|
||||
url = this.imageUrlFunction(extent, size, projection);
|
||||
goog.asserts.assert(goog.isDef(url),
|
||||
'ol.source.SingleImageWMS#imageUrlFunction does not return a url');
|
||||
'ol.source.ImageWMS#imageUrlFunction does not return a url');
|
||||
ol.source.wms.getFeatureInfo(url, pixel, this.getFeatureInfoOptions_, success,
|
||||
opt_error);
|
||||
};
|
||||
@@ -121,7 +121,7 @@ ol.source.SingleImageWMS.prototype.getFeatureInfoForPixel =
|
||||
* Update the user-provided params.
|
||||
* @param {Object} params Params.
|
||||
*/
|
||||
ol.source.SingleImageWMS.prototype.updateParams = function(params) {
|
||||
ol.source.ImageWMS.prototype.updateParams = function(params) {
|
||||
goog.object.extend(this.params_, params);
|
||||
this.image_ = null;
|
||||
this.dispatchChangeEvent();
|
||||
@@ -1,3 +0,0 @@
|
||||
@exportClass ol.source.SingleImageWMS ol.source.SingleImageWMSOptions
|
||||
@exportProperty ol.source.SingleImageWMS.prototype.getParams
|
||||
@exportProperty ol.source.SingleImageWMS.prototype.updateParams
|
||||
@@ -1 +0,0 @@
|
||||
@exportClass ol.source.StaticImage ol.source.StaticImageOptions
|
||||
Reference in New Issue
Block a user