Mouse position example
-
diff --git a/examples/mouse-position.js b/examples/mouse-position.js
index dc3a2163f7..36d6615ec4 100644
--- a/examples/mouse-position.js
+++ b/examples/mouse-position.js
@@ -13,8 +13,9 @@ var map = new ol.Map({
new ol.control.MousePosition({
coordinateFormat: ol.coordinate.toStringHDMS,
projection: 'EPSG:4326',
- // comment the following line to have the mouse position
+ // comment the following two lines to have the mouse position
// be placed within the map.
+ className: 'custom-mouse-position',
target: document.getElementById('mouse-position'),
undefinedHTML: ' '
})