Max Zoom

MaxZoomService 類別

google.maps.MaxZoomService class

這項服務可取得特定地點可用的最高衛星圖像縮放等級。

請呼叫 const {MaxZoomService} = await google.maps.importLibrary("maps") 存取。請參閱「Maps JavaScript API 中的程式庫」。

MaxZoomService
MaxZoomService()
參數:
建立 MaxZoomService 的新例項,可用於傳送有關衛星圖像可用的最大縮放等級查詢。
getMaxZoomAtLatLng
getMaxZoomAtLatLng(latlng[, callback])
參數: 
傳回值:  Promise<MaxZoomResult>
傳回 satellite 地圖類型的特定 LatLng 可提供詳細圖像的最高縮放等級。由於這項要求是非同步的,您必須傳遞 callback 函式,該函式會在要求完成後執行,並傳遞 MaxZoomResult

MaxZoomResult 介面

google.maps.MaxZoomResult 介面

使用 JSON 格式 (擷取自 MaxZoomService) 的 MaxZoom 結果。

zoom
類型:  number
在指定 LatLng 中找到的最大縮放等級。
status optional
類型:  MaxZoomStatus optional
要求狀態。只有在使用 MaxZoomService.getMaxZoomAtLatLng 的回呼時,才會定義此屬性 (使用 Promise 時不會定義)。

MaxZoomStatus 常數

google.maps.MaxZoomStatus 常數

MaxZoomService 在完成對 getMaxZoomAtLatLng() 的呼叫時傳回的狀態。您可以使用值或常數名稱來指定這些值。例如 'OK'google.maps.MaxZoomStatus.OK

請呼叫 const {MaxZoomStatus} = await google.maps.importLibrary("maps") 存取。請參閱「Maps JavaScript API 中的程式庫」。

ERROR 發生不明錯誤。
OK 回應包含有效的 MaxZoomResult