Openlayersは地理的位置座標を表示する方法です。


本論文の例では、Openlayersが地理的位置座標を表示する具体的なコードを共有しています。
1.htmlページを新たに作成し、ol.jsとol.cssファイルを導入し、bodyの中で2つのdivタグを作成し、それぞれ地図とマウスの位置コントロールの容器として使用する。
2、コード実現

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title></title>
 <script src="../lib/ol/ol.js"></script>
 <link href="../css/ol.css" rel="stylesheet" />
 <style type="text/css">
  #myposition
  {
   float:left;
   position:absolute;
   bottom:10px;
   width:400px;
   height:20px;
   z-index:2000;
  }
  .mosuePosition
  {
   color:blue;
   font-size:20px;
   font-family:'    ';
  }
 </style>
 <script type="text/javascript">
  window.onload = function () {
   //         
   var mousePositionControl = new ol.control.MousePosition({
    //     
    className: 'mosuePosition',
    //      ,          
    coordinateFormat: ol.coordinate.createStringXY(8),
    //    
    projection: 'EPSG:4326',
    //    
    target:document.getElementById('myposition')
   });
 
   //       
   var map = new ol.Map({
    target:'map',
    layers:[
     new ol.layer.Tile({
      source:new ol.source.OSM()
     }),
    ],
    view:new ol.View({
     center:[0,0],
     zoom:3
    })
   });
 
   //            map 
   map.addControl(mousePositionControl);
  }
 </script>
</head>
<body>
 <div id="map">
  <div id="myposition"></div>
 </div>
</body>
</html>
3、結果の展示
マウスが地図上を移動すると、左下に現在位置の地理座標が表示されます。

以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。