OpenLayers OpenLayers

Changeset 1665

Show
Ignore:
Timestamp:
10/06/06 15:20:23 (2 years ago)
Author:
crschmidt
Message:

Jeff Dege contributed a MousePosition Control, which this commit adds to trunk.
Reviewed by Erik on Trac and in person.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/build/docs.sh

    r1424 r1665  
    22 
    33rm ../doc/reference.html 
    4 CLASSES="Map Layer Layer.HTTPRequest Layer.Grid Layer.WMS Layer.KaMap Layer.EventPane Layer.Google Layer.VirtualEarth Layer.Markers Layer.Text Layer.GeoRSS Layer.Boxes Icon Marker Marker.Box Tile Tile.Image Tile.WFS Control Control.LayerSwitcher Control.MouseDefaults Control.MouseToolbar Control.PanZoom Control.PanZoomBar Control.Permalink Control.Scale LonLat Size Pixel Bounds Util" 
     4CLASSES="Map Layer Layer.HTTPRequest Layer.Grid Layer.WMS Layer.KaMap Layer.EventPane Layer.Google Layer.VirtualEarth Layer.Markers Layer.Text Layer.GeoRSS Layer.Boxes Icon Marker Marker.Box Tile Tile.Image Tile.WFS Control Control.LayerSwitcher Control.MouseDefaults Control.MousePosition Control.MouseToolbar Control.PanZoom Control.PanZoomBar Control.Permalink Control.Scale LonLat Size Pixel Bounds Util" 
    55echo "<html> 
    66  <head> 
  • trunk/openlayers/doc/authors.txt

    r1424 r1665  
    1111Corey Puffault 
    1212Tim Schaub 
     13Jeff Dege 
    1314 
    1415OpenLayers is graciously supported by MetaCarta, Inc. 
  • trunk/openlayers/examples/controls.html

    r1539 r1665  
    1919            map.addControl(new OpenLayers.Control.Permalink()); 
    2020            map.addControl(new OpenLayers.Control.Permalink($('permalink'))); 
     21            map.addControl(new OpenLayers.Control.MousePosition()); 
    2122            var ol_wms = new OpenLayers.Layer.WMS( "OpenLayers WMS",  
    2223                "http://labs.metacarta.com/wms/vmap0", 
  • trunk/openlayers/lib/OpenLayers.js

    r1645 r1665  
    9090        "OpenLayers/Control/MouseDefaults.js", 
    9191        "OpenLayers/Control/MouseToolbar.js", 
     92        "OpenLayers/Control/MousePosition.js", 
    9293        "OpenLayers/Control/KeyboardDefaults.js", 
    9394        "OpenLayers/Control/PanZoom.js", 
  • trunk/openlayers/theme/default/style.css

    r1659 r1665  
    1919    bottom: 15px;    
    2020} 
     21div.olControlMousePosition { 
     22    bottom: 0em; 
     23    right: 3px; 
     24    display: block; 
     25    position: absolute; 
     26    font-family: Arial; 
     27    font-size: smaller; 
     28}