2
A
回答
-2
<!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API Example</title>
<script src="http://maps.google.com/maps?file=api&v=2&key=abcdefg&sensor=true_or_false"
type="text/javascript"></script>
<script type="text/javascript">
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
map.setUIToDefault();
}
}
</script>
</head>
<body onload="initialize()" onunload="GUnload()">
<div id="map_canvas" style="width: 500px; height: 300px"></div>
</body>
</html>
的map.setCenter()函數可用於設置縮放級別,即map.setCenter(座標的GLatLng,縮放級別)
2
參見:How to get Google Maps API to set the correct zoom level for a country?
綜上所述,您使用Geocoder對象通過查詢字符串(「,」)來getLocations。然後使用返回的PlaceMarker對象來定義LatLngBounds對象。使用LatLngBounds對象作爲getBoundsZoomLevel的參數來設置縮放級別。
0
你可以要求一定geoposition儘可能高的變焦: https://developers.google.com/maps/documentation/javascript/maxzoom
我已經集成創建地圖後調用。所以,雖然地圖加載同時也請求了最大縮放級別,並將其重置地圖縮放級別,只有當它比地圖的縮放級別較低:
this.map = this.createMap(this.el, this.initPosition);
var maxZoomService = new google.maps.MaxZoomService();
maxZoomService.getMaxZoomAtLatLng(this.initPosition, _.bind(function(response) {
if (response.status != google.maps.MaxZoomStatus.OK) {
return;
} else {
console.log("GoogleMapView maxzoomlevel is " + response.zoom);
if (response.zoom < this.map.getZoom()) {
this.map.setZoom(response.zoom);
}
}
}, this));
相關問題
- 1. 在谷歌Android地圖中自動設置縮放級別
- 2. 在谷歌地圖中設置自定義縮放級別
- 3. 在谷歌地圖android中動態設置縮放級別
- 4. 如何在谷歌地圖中設置縮放級別
- 5. 在谷歌地圖上設置適當的縮放級別
- 6. 縮放級別 - 谷歌地圖,國家
- 7. 谷歌地圖半徑縮放級別
- 8. 谷歌地圖縮放級別
- 9. 動態設置谷歌地圖縮放
- 10. 谷歌地圖設置界限縮放級別
- 11. 谷歌地圖 - 如何設置縮放級別
- 12. Overring在谷歌地圖的地圖縮放級別ExpressionEngine
- 13. 如何在谷歌地圖中設置25公里的縮放級別?
- 14. 谷歌地圖V3縮放設置
- 15. 谷歌地圖上的自定義縮放級別
- 16. 谷歌地圖v3 - 限制可視區域和縮放級別
- 17. 谷歌地圖自動縮放
- 18. 縮放級別限制了我的谷歌地圖iOS應用
- 19. 在縮放級別3的谷歌地圖中隱藏標記
- 20. 如何在wordpress中增加谷歌地圖的縮放級別
- 21. 谷歌地圖API 3:縮放級別動態圈
- 22. 如何動態設置Google地圖自定義縮放級別?
- 23. WordPress的:需要設置縮放級別在谷歌嵌入式地圖的iframe
- 24. 谷歌地圖覆蓋圖在某些縮放級別消失
- 25. 谷歌地圖 - 縮放級別爲1-4的自定義地圖圖塊,然後是默認的谷歌地圖圖塊其他縮放級別
- 26. 設置谷歌地圖的縮放等級15
- 27. 谷歌地圖上的kml文件中的縮放級別
- 28. 谷歌地圖標記錨遠在縮放級別
- 29. 如何在谷歌地圖上設置動態縮放v3
- 30. jqplot自定義縮放手動或設置縮放級別
這不是用戶問。他需要一種*自動*的方式來做到這一點。 – 2010-03-11 15:27:18