Google地图获取视口的经纬度

Google地图获取视口的经纬度

本文介绍了Google地图获取视口的经纬度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在寻找最好的方式使用谷歌地图API来获取地图视口的经度和纬度。理想情况下,我希望能够使用地图上下边界的纬度和边的经度。这个想法是指出可见地图的区域,并根据地图上当前可见的内容调整页面上的一些相关元素。有没有在地图的API函数处理这个?



谢谢,任何帮助,非常感谢。 为您提供当前视口的经度/纬度边界。然后,您可以使用和 LatLngBounds.getSouthWest()将东北(右上角)和西南(左下角)坐标确定为。更具体地说:

  var lat0 = map.getBounds()。getNorthEast()。lat(); 
var lng0 = map.getBounds()。getNorthEast()。lng();
var lat1 = map.getBounds()。getSouthWest()。lat();
var lng1 = map.getBounds()。getSouthWest()。lng();


I'm looking for the best way to use the Google maps API to get the latitude and longitude of the map viewport. Ideally I'd like to be able to use the latitude of the map's upper and lower borders and the longitude of the sides. The idea is the figure out the area of the visible map and adjust some related elements on the page based on what's currently visible on the map. Is there a a function in the map's API that handles this?

Thanks, any help is much appreciated.

解决方案

Map.getBounds() gives you the lat/lng bounds of the current viewport. You can then use LatLngBounds.getNorthEast() and LatLngBounds.getSouthWest() to get north-east (top right) and south-west (bottom-left) coordinates as LatLng. More specifically:

var lat0 = map.getBounds().getNorthEast().lat();
var lng0 = map.getBounds().getNorthEast().lng();
var lat1 = map.getBounds().getSouthWest().lat();
var lng1 = map.getBounds().getSouthWest().lng();

这篇关于Google地图获取视口的经纬度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 16:08