我正在使用 Google Maps API 的 Max Zoom Service 来获取给定坐标的最大缩放级别。大多数时候它很快,每个请求只需要大约 150 毫秒。但是,有几次服务变得非常慢,大约 20 秒。
maxZoomService = new google.maps.MaxZoomService();
maxZoomService.getMaxZoomAtLatLng(center, function(response) {
// my process
});
你遇到过类似的问题吗?