OpenLayers:将GPS坐标转换为EPSG:25832

时间:2013-08-07 16:42:15

标签: openlayers

我希望通过单击按钮获取GPS坐标并将其更改为EPSG:25832格式以使我的地图居中。这是我到目前为止编码的内容:

jQuery('#btnGPS').click(function() {
  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(success);
  } else {
    alert("Not Supported!");
  }
});

function success(position) {
  alert(position.coords.longitude + ',' + position.coords.latitude);
  var SRS_MAP = new OpenLayers.Projection("EPSG:25832"); 
  var SRS_LONLAT = new OpenLayers.Projection("EPSG:4326"); 
  var center = new OpenLayers.LonLat(position.coords.longitude,position.coords.latitude); 
  var test = center.transform(SRS_LONLAT,SRS_MAP); 
  alert(test);
}

最后我的地图对象:

map = new OpenLayers.Map('map',{
      controls: [
                    new OpenLayers.Control.Navigation(),
                    new OpenLayers.Control.PanZoomBar(),
                    new OpenLayers.Control.ScaleLine(),
                    new OpenLayers.Control.KeyboardDefaults()
                ],
                projection: new OpenLayers.Projection("EPSG:25832"),
                displayProjection: new OpenLayers.Projection("EPSG:4326"),
                units: 'm',
                maxExtent: new OpenLayers.Bounds(356570.500,5442150.416,383807.687,5462691.920),
                maxResolution: 'auto',
                numZoomLevels: 8
            });

我总是得到相同的坐标,根本没有变换。使用lon和lat的Position Object工作正常,但我无法让OpenLayers转换函数正常工作。我正在使用最新的标准OpenLayers。

我是OpenLayers的新手,所以请对解决方案非常具体。提前谢谢。

1 个答案:

答案 0 :(得分:0)

你需要使用proj4js。以下是OpenLayers的说明链接:http://trac.osgeo.org/openlayers/wiki/Documentation/Dev/proj4js。 确保按照说明添加EPSG:25832的定义。