gmaps api中getBoundsZoomLevel()的等价物3

在API v2中,地图对象有一个方便的方法getBoundsZoomLevel()。 我用它来获得最适合边界的缩放级别,然后以某种方式操纵此最佳缩放级别,最后设置所需的缩放级别。

我在API v3中找不到类似的功能。 (从v2迁移到v3时,多么令人沮丧的体验)

我真的必须再次使用map.fitBounds()map.getZoom() ,操作和setZoom()吗? 这真的很愚蠢!


以下是我实施的功能:

/**
* Returns the zoom level at which the given rectangular region fits in the map view. 
* The zoom level is computed for the currently selected map type. 
* @param {google.maps.Map} map
* @param {google.maps.LatLngBounds} bounds 
* @return {Number} zoom level
**/
function getZoomByBounds( map, bounds ){
  var MAX_ZOOM = map.mapTypes.get( map.getMapTypeId() ).maxZoom || 21 ;
  var MIN_ZOOM = map.mapTypes.get( map.getMapTypeId() ).minZoom || 0 ;

  var ne= map.getProjection().fromLatLngToPoint( bounds.getNorthEast() );
  var sw= map.getProjection().fromLatLngToPoint( bounds.getSouthWest() ); 

  var worldCoordWidth = Math.abs(ne.x-sw.x);
  var worldCoordHeight = Math.abs(ne.y-sw.y);

  //Fit padding in pixels 
  var FIT_PAD = 40;

  for( var zoom = MAX_ZOOM; zoom >= MIN_ZOOM; --zoom ){ 
      if( worldCoordWidth*(1<<zoom)+2*FIT_PAD < $(map.getDiv()).width() && 
          worldCoordHeight*(1<<zoom)+2*FIT_PAD < $(map.getDiv()).height() )
          return zoom;
  }
  return 0;
}
链接地址: http://www.djcxy.com/p/81563.html

上一篇: Equivalent of getBoundsZoomLevel() in gmaps api 3

下一篇: Google Maps Mobile SDK for Business vs. Google Maps Android API