git-svn-id: http://svn.openlayers.org/trunk/openlayers@7095 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" debug="true">
|
|
<head>
|
|
<title>MousePosition Control</title>
|
|
<link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
|
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
var map;
|
|
function init(){
|
|
var map = new OpenLayers.Map('map');
|
|
|
|
map.addControl(new OpenLayers.Control.MousePosition());
|
|
|
|
var ol_wms = new OpenLayers.Layer.WMS( "OpenLayers WMS",
|
|
"http://labs.metacarta.com/wms/vmap0",
|
|
{layers: 'basic'} );
|
|
|
|
map.addLayers([ol_wms]);
|
|
if (!map.getCenter()) map.zoomToMaxExtent();
|
|
|
|
map.events.register("mousemove", map, function(e) {
|
|
var position = this.events.getMousePosition(e);
|
|
OpenLayers.Util.getElement("coords").innerHTML = position;
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<h3 id="title">MousePosition Control</h3>
|
|
<p id="shortdesc">
|
|
Use the MousePosition Control to display the coordinates of the cursor
|
|
inside or outside the map div.
|
|
</p>
|
|
<div id="map" class="smallmap"></div>
|
|
<div id="coords"></div>
|
|
<p>Moving your mouse to the upper left corner of this map should return 'x=0,y=0' -- in the past, it didn't in IE. If it returns 2,2, consider it a bug, and report it.</p>
|
|
</body>
|
|
</html>
|