谷歌地图v3neneneba API-计算边界给定的中心坐标和距离

Google maps v3 API - calculate bounds given center coordinates and distance

本文关键字:坐标 距离 API- v3neneneba 计算 边界 谷歌地图      更新时间:2023-09-26

因此,我已经看到了关于如何计算给定中心和缩放的边界的解决方案,但我正在尝试计算给定中心坐标和以英里为单位的距离的边界。

我怎么能这么做?

使用computeOffset计算中心东西距离处的点。将这两点添加到google.maps.LatLngBounds中,并在该边界上调用map.fitBounds。

概念验证小提琴

代码片段:

// This example requires the Geometry library. Include the libraries=geometry
// parameter when you first load the API. For example:
// <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=geometry">
function initMap() {
  var map = new google.maps.Map(document.getElementById('map'), {
    zoom: 4,
    center: {lat: 37.04831, lng: -95.297565}
  });
  var distance = 10000; // 10 km
  var bounds = new google.maps.LatLngBounds();
  var east = google.maps.geometry.spherical.computeOffset(map.getCenter(), distance, 90);
  bounds.extend(east);
  var west = google.maps.geometry.spherical.computeOffset(map.getCenter(), distance, 270);
  bounds.extend(west);
  map.fitBounds(bounds);
  var polyline = new google.maps.Polyline({
    path: [east, west],
    map: map
  });
  var lineLength = google.maps.geometry.spherical.computeLength(polyline.getPath());
  var infowindow = new google.maps.InfoWindow();
  infowindow.setContent("line length is "+(lineLength/1000).toFixed(2)+" km");
  infowindow.setPosition(map.getCenter());
  infowindow.open(map);
}
/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
#map {
  height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&libraries=geometry&callback=initMap"
        async defer></script>