Index: doc/Control.MousePosition.txt =================================================================== --- doc/Control.MousePosition.txt (revision 1718) +++ doc/Control.MousePosition.txt (working copy) @@ -13,7 +13,7 @@ separator -- html to separate the longitude and latitude values (default: '
') 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. Index: lib/OpenLayers/Control/MousePosition.js =================================================================== --- lib/OpenLayers/Control/MousePosition.js (revision 1718) +++ lib/OpenLayers/Control/MousePosition.js (working copy) @@ -27,7 +27,7 @@ numdigits: 5, /** @type int */ - granularity: 1, + granularity: 10, /** @type OpenLayers.LonLat */ lastXy: null,