2017-04-27 13 views
-1

スクリプト用:ダンビルのため取得ズームシカゴのための都市

var current = new google.maps.LatLng(41.8333925, -88.); 
map.setCenter(current); 

スクリプト:

var current = new google.maps.LatLng(36.5925975, -79.5510265); 
map.setCenter(current); 

それはOK仕事が、私はこのsetZoomのために使用する必要があります。

私が使用している場合:

map.setZoom(10); 

これは、シカゴのために良いですが、ダンビルのために、それはあまりにも遠くにある(12は良好です)。

setZoomにも同様の機能がありますが、指定された都市の境界にのみ地図が表示されますか?シカゴとダンビルは例に過ぎません。

+0

http://stackoverflow.com/a/11454897/3575770 – phpnerd

答えて

0

は、私はあなたがこのコードを使用することができると思う:

var geocoder = new google.maps.Geocoder(); 
    geocoder.geocode({ 'address': address}, function(results, status) { 
     if (status == google.maps.GeocoderStatus.OK) { 
     map.setCenter(results[0].geometry.location); 
     map.fitBounds(results[0].geometry.viewport); 
     } 
    }); 

Source

+0

残念ながらまだズームが同じです。 – dimad

関連する問題