bringing up r1719 from trunk

git-svn-id: http://svn.openlayers.org/branches/openlayers/2.2@1720 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-10-24 15:30:56 +00:00
parent 168f79482b
commit d9847bbb37
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ A small control which displays the Longitude and Latitude of the current mouse p
separator -- html to separate the longitude and latitude values (default: '<br />')
suffix -- html to follow the latitude value (default: '')
numdigits -- number of digits to the right of the decimal (default: 5)
granularity -- a change of how many pixels is considered a mouse move (default: 1)
granularity -- Don't refresh display if mouse has moved more than this (default: 10)
prefix, separator, and suffix are used to format the lon/lat values.

View File

@@ -27,7 +27,7 @@ OpenLayers.Control.MousePosition.prototype =
numdigits: 5,
/** @type int */
granularity: 1,
granularity: 10,
/** @type OpenLayers.LonLat */
lastXy: null,