[Javascript]从openlayers地图获取坐标

时间:2010-06-22 12:41:48

标签: javascript openlayers coordinate

我会从openlayers地图中获取坐标。 当我打开页面时,当我点击一个按钮时,我会收到左上角和右上角的坐标。

 <html>
<head>
  <title>OpenLayers Example</title>
    <script src="http://openlayers.org/api/OpenLayers.js"></script>
    </head>
    <body>
      <div style="width:100%; height:100%" id="map"></div>
      <script defer="defer" type="text/javascript">
        var map = new OpenLayers.Map('map');
        var wms = new OpenLayers.Layer.WMS( "OpenLayers WMS",
            "http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} );
        map.addLayer(wms);
        map.zoomToMaxExtent();
      </script>
<input type="button" text="Get Coordinate from map">
</body>
</html>

非常感谢。

2 个答案:

答案 0 :(得分:4)

您应该使用Map对象的getExtent()函数。

  

返回

     

{OpenLayers.Bounds}一个Bounds对象   它代表了lon / lat的边界   当前的viewPort。

它将返回一个OpenLayers.Bounds对象,该对象将具有当前视图的顶部,左侧,底部和右侧坐标。

答案 1 :(得分:0)

我想你想用map.getCenter()? (这是为了你想要在lat lon中的地图的中心坐标,但它不是很清楚你想要的坐标)