@@ -635,6 +635,7 @@
|
|||||||
/**
|
/**
|
||||||
* @typedef {Object} olx.source.MapGuideOptions
|
* @typedef {Object} olx.source.MapGuideOptions
|
||||||
* @property {string|undefined} url The mapagent url.
|
* @property {string|undefined} url The mapagent url.
|
||||||
|
* @property {number|undefined} displayDpi The display resolution. Default is `96`.
|
||||||
* @property {number|undefined} metersPerUnit The meters-per-unit value. Default is `1`.
|
* @property {number|undefined} metersPerUnit The meters-per-unit value. Default is `1`.
|
||||||
* @property {ol.Extent|undefined} extent Extent.
|
* @property {ol.Extent|undefined} extent Extent.
|
||||||
* @property {boolean|undefined} useOverlay If `true`, will use
|
* @property {boolean|undefined} useOverlay If `true`, will use
|
||||||
|
|||||||
@@ -31,6 +31,13 @@ ol.source.MapGuide = function(options) {
|
|||||||
imageUrlFunction: imageUrlFunction
|
imageUrlFunction: imageUrlFunction
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.displayDpi_ = goog.isDef(options.displayDpi) ?
|
||||||
|
options.displayDpi : 96;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @type {number}
|
* @type {number}
|
||||||
@@ -91,20 +98,20 @@ ol.source.MapGuide.prototype.getImage =
|
|||||||
/**
|
/**
|
||||||
* @param {ol.Extent} extent The map extents.
|
* @param {ol.Extent} extent The map extents.
|
||||||
* @param {ol.Size} size the viewport size.
|
* @param {ol.Size} size the viewport size.
|
||||||
|
* @param {number} metersPerUnit The meters-per-unit value.
|
||||||
|
* @param {number} dpi The display resolution.
|
||||||
* @return {number} The computed map scale.
|
* @return {number} The computed map scale.
|
||||||
*/
|
*/
|
||||||
ol.source.MapGuide.prototype.getScale = function(extent, size) {
|
ol.source.MapGuide.getScale = function(extent, size, metersPerUnit, dpi) {
|
||||||
var mcsW = extent[2] - extent[0];
|
var mcsW = ol.extent.getWidth(extent);
|
||||||
var mcsH = extent[3] - extent[1];
|
var mcsH = ol.extent.getHeight(extent);
|
||||||
var devW = size[0];
|
var devW = size[0];
|
||||||
var devH = size[1];
|
var devH = size[1];
|
||||||
var dpi = 96;
|
|
||||||
var mpu = this.metersPerUnit_;
|
|
||||||
var mpp = 0.0254 / dpi;
|
var mpp = 0.0254 / dpi;
|
||||||
if (devH * mcsW > devW * mcsH) {
|
if (devH * mcsW > devW * mcsH) {
|
||||||
return mcsW * mpu / (devW * mpp); // width limited
|
return mcsW * metersPerUnit / (devW * mpp); // width limited
|
||||||
} else {
|
} else {
|
||||||
return mcsH * mpu / (devH * mpp); // height limited
|
return mcsH * metersPerUnit / (devH * mpp); // height limited
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -119,19 +126,21 @@ ol.source.MapGuide.prototype.getScale = function(extent, size) {
|
|||||||
*/
|
*/
|
||||||
ol.source.MapGuide.prototype.getUrl =
|
ol.source.MapGuide.prototype.getUrl =
|
||||||
function(baseUrl, params, extent, size, projection) {
|
function(baseUrl, params, extent, size, projection) {
|
||||||
var scale = this.getScale(extent, size);
|
var scale = ol.source.MapGuide.getScale(extent, size,
|
||||||
|
this.metersPerUnit_, this.displayDpi_);
|
||||||
|
var center = ol.extent.getCenter(extent);
|
||||||
var baseParams = {
|
var baseParams = {
|
||||||
'OPERATION': this.useOverlay_ ? 'GETDYNAMICMAPOVERLAYIMAGE' : 'GETMAPIMAGE',
|
'OPERATION': this.useOverlay_ ? 'GETDYNAMICMAPOVERLAYIMAGE' : 'GETMAPIMAGE',
|
||||||
'VERSION': '2.0.0',
|
'VERSION': '2.0.0',
|
||||||
'LOCALE': 'en',
|
'LOCALE': 'en',
|
||||||
'CLIENTAGENT': 'ol.source.MapGuide source',
|
'CLIENTAGENT': 'ol.source.MapGuide source',
|
||||||
'CLIP': '1',
|
'CLIP': '1',
|
||||||
'SETDISPLAYDPI': 96,
|
'SETDISPLAYDPI': this.displayDpi_,
|
||||||
'SETDISPLAYWIDTH': Math.round(size[0]),
|
'SETDISPLAYWIDTH': Math.round(size[0]),
|
||||||
'SETDISPLAYHEIGHT': Math.round(size[1]),
|
'SETDISPLAYHEIGHT': Math.round(size[1]),
|
||||||
'SETVIEWSCALE': scale,
|
'SETVIEWSCALE': scale,
|
||||||
'SETVIEWCENTERX': (extent[0] + extent[2]) / 2,
|
'SETVIEWCENTERX': center[0],
|
||||||
'SETVIEWCENTERY': (extent[1] + extent[3]) / 2
|
'SETVIEWCENTERY': center[1]
|
||||||
};
|
};
|
||||||
goog.object.extend(baseParams, params);
|
goog.object.extend(baseParams, params);
|
||||||
return goog.uri.utils.appendParamsFromMap(baseUrl, baseParams);
|
return goog.uri.utils.appendParamsFromMap(baseUrl, baseParams);
|
||||||
|
|||||||
Reference in New Issue
Block a user