Get a Maps Demo Key: Try out select Maps JavaScript API and Places UI Kit features at no cost with a Maps Demo Key—no billing information required.

Max Zoom

[フレーム]

MaxZoomService class

google.maps.MaxZoomService class
library "maps"

A service for obtaining the highest zoom level at which satellite imagery is available for a given location.

const{MaxZoomService}=awaitgoogle.maps.importLibrary("maps");

Constructor

MaxZoomService
MaxZoomService()
Parameters: None
Creates a new instance of a MaxZoomService that can be used to send queries about the maximum zoom level available for satellite imagery.

Methods

getMaxZoomAtLatLng
getMaxZoomAtLatLng(latlng[, callback])
Parameters:
Return Value: Promise<MaxZoomResult>
Returns the maximum zoom level for which detailed imagery is available at a particular LatLng for the satellite map type. As this request is asynchronous, you must pass a callback function which will be executed upon completion of the request, being passed a MaxZoomResult.

MaxZoomResult interface

google.maps.MaxZoomResult interface

A MaxZoom result in JSON format retrieved from the MaxZoomService.

Properties

zoom
Type: number
The maximum zoom level found at the given LatLng.
status
optional
Type: MaxZoomStatus optional
Status of the request. This property is only defined when using callbacks with MaxZoomService.getMaxZoomAtLatLng (it is not defined when using Promises).

MaxZoomStatus constants

google.maps.MaxZoomStatus constants
library "maps"

The status returned by the MaxZoomService on the completion of a call to getMaxZoomAtLatLng(). Specify these by value, or by using the constant's name. For example, 'OK' or google.maps.MaxZoomStatus.OK.

These constants are also usable as strings. In TypeScript, the string literals are defined by the MaxZoomStatusString type.

const{MaxZoomStatus}=awaitgoogle.maps.importLibrary("maps");

Constants

ERROR An unknown error occurred.
OK The response contains a valid MaxZoomResult.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026年09月01日 UTC.