html JS.Geolocate.how获取以经度和纬度为中心的静态图像映射

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html JS.Geolocate.how获取以经度和纬度为中心的静态图像映射相关的知识,希望对你有一定的参考价值。

JS.Geolocate.how to get a static image map centered on your longitude and latitude
----------------------------------------------------------------------------------


A [Pen](https://codepen.io/Onlyforbopi/pen/GXbZqY) by [Pan Doul](https://codepen.io/Onlyforbopi) on [CodePen](https://codepen.io).

[License](https://codepen.io/Onlyforbopi/pen/GXbZqY/license).
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to get your position:</p>
<button onclick="getLocation()">Try It</button>
<div id="mapholder"></div>
  
<script>
var x=document.getElementById("demo");
function getLocation()
  {
  if (navigator.geolocation)
    {
    navigator.geolocation.getCurrentPosition(showPosition,showError);
    }
  else{x.innerHTML="Geolocation is not supported by this browser.";}
  }

function showPosition(position)
  {
  var latlon=position.coords.latitude+","+position.coords.longitude;

  var img_url="https://maps.googleapis.com/maps/api/staticmap?center="
  +latlon+"&zoom=14&size=400x300&sensor=false";
  document.getElementById("mapholder").innerHTML="<img src='"+img_url+"' />";
  }

function showError(error)
  {
  switch(error.code) 
    {
    case error.PERMISSION_DENIED:
      x.innerHTML="User denied the request for Geolocation."
      break;
    case error.POSITION_UNAVAILABLE:
      x.innerHTML="Location information is unavailable."
      break;
    case error.TIMEOUT:
      x.innerHTML="The request to get user location timed out."
      break;
    case error.UNKNOWN_ERROR:
      x.innerHTML="An unknown error occurred."
      break;
    }
  }
</script>
  
</body>
</html>

以上是关于html JS.Geolocate.how获取以经度和纬度为中心的静态图像映射的主要内容,如果未能解决你的问题,请参考以下文章

html JS.Geolocate.how以当前位置为中心显示交互式Google地图

我输入了后台管理命令怎么提示 我不是GM,不能使用此命令啊

批量对word文档进行操作

关于centos6.5系统安装FTP服务和配置的方法

渐变动画

监听turtlesim仿真器,发送数据到实际的机器人--20