initial patch cmoullet, (Closes #2404) git-svn-id: http://svn.openlayers.org/trunk/openlayers@10127 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
190 lines
4.3 KiB
JavaScript
190 lines
4.3 KiB
JavaScript
/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD
|
|
* license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the
|
|
* full text of the license. */
|
|
|
|
|
|
/**
|
|
* @requires OpenLayers/Control.js
|
|
*/
|
|
|
|
/**
|
|
* Class: OpenLayers.Control.MousePosition
|
|
* The MousePosition control displays geographic coordinates of the mouse
|
|
* pointer, as it is moved about the map.
|
|
*
|
|
* Inherits from:
|
|
* - <OpenLayers.Control>
|
|
*/
|
|
OpenLayers.Control.MousePosition = OpenLayers.Class(OpenLayers.Control, {
|
|
|
|
/**
|
|
* Property: element
|
|
* {DOMElement}
|
|
*/
|
|
element: null,
|
|
|
|
/**
|
|
* APIProperty: prefix
|
|
* {String}
|
|
*/
|
|
prefix: '',
|
|
|
|
/**
|
|
* APIProperty: separator
|
|
* {String}
|
|
*/
|
|
separator: ', ',
|
|
|
|
/**
|
|
* APIProperty: suffix
|
|
* {String}
|
|
*/
|
|
suffix: '',
|
|
|
|
/**
|
|
* APIProperty: numDigits
|
|
* {Integer}
|
|
*/
|
|
numDigits: 5,
|
|
|
|
/**
|
|
* APIProperty: granularity
|
|
* {Integer}
|
|
*/
|
|
granularity: 10,
|
|
|
|
/**
|
|
* APIProperty: emptyString
|
|
* {String} Set this to some value to set when the mouse is outside the
|
|
* map.
|
|
*/
|
|
emptyString: null,
|
|
|
|
/**
|
|
* Property: lastXy
|
|
* {<OpenLayers.Pixel>}
|
|
*/
|
|
lastXy: null,
|
|
|
|
/**
|
|
* APIProperty: displayProjection
|
|
* {<OpenLayers.Projection>} The projection in which the
|
|
* mouse position is displayed
|
|
*/
|
|
displayProjection: null,
|
|
|
|
/**
|
|
* Constructor: OpenLayers.Control.MousePosition
|
|
*
|
|
* Parameters:
|
|
* options - {Object} Options for control.
|
|
*/
|
|
initialize: function(options) {
|
|
OpenLayers.Control.prototype.initialize.apply(this, arguments);
|
|
},
|
|
|
|
/**
|
|
* Method: destroy
|
|
*/
|
|
destroy: function() {
|
|
if (this.map) {
|
|
this.map.events.unregister('mousemove', this, this.redraw);
|
|
}
|
|
OpenLayers.Control.prototype.destroy.apply(this, arguments);
|
|
},
|
|
|
|
/**
|
|
* Method: draw
|
|
* {DOMElement}
|
|
*/
|
|
draw: function() {
|
|
OpenLayers.Control.prototype.draw.apply(this, arguments);
|
|
|
|
if (!this.element) {
|
|
this.div.left = "";
|
|
this.div.top = "";
|
|
this.element = this.div;
|
|
}
|
|
|
|
this.redraw();
|
|
return this.div;
|
|
},
|
|
|
|
/**
|
|
* Method: redraw
|
|
*/
|
|
redraw: function(evt) {
|
|
|
|
var lonLat;
|
|
|
|
if (evt == null) {
|
|
this.reset();
|
|
return;
|
|
} else {
|
|
if (this.lastXy == null ||
|
|
Math.abs(evt.xy.x - this.lastXy.x) > this.granularity ||
|
|
Math.abs(evt.xy.y - this.lastXy.y) > this.granularity)
|
|
{
|
|
this.lastXy = evt.xy;
|
|
return;
|
|
}
|
|
|
|
lonLat = this.map.getLonLatFromPixel(evt.xy);
|
|
if (!lonLat) {
|
|
// map has not yet been properly initialized
|
|
return;
|
|
}
|
|
if (this.displayProjection) {
|
|
lonLat.transform(this.map.getProjectionObject(),
|
|
this.displayProjection );
|
|
}
|
|
this.lastXy = evt.xy;
|
|
|
|
}
|
|
|
|
var newHtml = this.formatOutput(lonLat);
|
|
|
|
if (newHtml != this.element.innerHTML) {
|
|
this.element.innerHTML = newHtml;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: reset
|
|
*/
|
|
reset: function(evt) {
|
|
if (this.emptyString != null) {
|
|
this.element.innerHTML = this.emptyString;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: formatOutput
|
|
* Override to provide custom display output
|
|
*
|
|
* Parameters:
|
|
* lonLat - {<OpenLayers.LonLat>} Location to display
|
|
*/
|
|
formatOutput: function(lonLat) {
|
|
var digits = parseInt(this.numDigits);
|
|
var newHtml =
|
|
this.prefix +
|
|
lonLat.lon.toFixed(digits) +
|
|
this.separator +
|
|
lonLat.lat.toFixed(digits) +
|
|
this.suffix;
|
|
return newHtml;
|
|
},
|
|
|
|
/**
|
|
* Method: setMap
|
|
*/
|
|
setMap: function() {
|
|
OpenLayers.Control.prototype.setMap.apply(this, arguments);
|
|
this.map.events.register( 'mousemove', this, this.redraw);
|
|
this.map.events.register( 'mouseout', this, this.reset);
|
|
},
|
|
|
|
CLASS_NAME: "OpenLayers.Control.MousePosition"
|
|
});
|