UNPKG

google-closure-compiler

Version:

Check, compile, optimize and compress Javascript with Closure-Compiler

27,058 lines • 938 kB
/*
 * Copyright 2010 The Closure Compiler Authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview Externs for the Google Maps v3 API.
 * @see https://developers.google.com/maps/documentation/javascript/reference
 * @externs
 */

/**
 * @const
 * @suppress {const,duplicate,strictMissingProperties}
 */
var google = {};

/**
 * @const
 * @suppress {const,duplicate,strictMissingProperties}
 */
google.maps = {};

/**
 * Loads a <a
 * href="https://developers.google.com/maps/documentation/javascript/libraries">library</a>
 * of the Maps JavaScript API, resolving with the direct members of that API
 * (without namespacing). (When loaded, libraries also add themselves to the
 * global <code>google.maps</code> namespace, though using the global namespace
 * is not generally recommended.)
 * @param {string} libraryName
 * @return {!Promise<!google.maps.CoreLibrary|!google.maps.MapsLibrary|!google.maps.Maps3DLibrary|!google.maps.PlacesLibrary|!google.maps.GeocodingLibrary|!google.maps.RoutesLibrary|!google.maps.MarkerLibrary|!google.maps.GeometryLibrary|!google.maps.ElevationLibrary|!google.maps.StreetViewLibrary|!google.maps.JourneySharingLibrary|!google.maps.DrawingLibrary|!google.maps.VisualizationLibrary>}
 */
google.maps.importLibrary = function(libraryName) {};

/**
 * Google Maps JavaScript API version loaded by the browser. See <a
 * href="https://developers.google.com/maps/documentation/javascript/versions">https://developers.google.com/maps/documentation/javascript/versions</a>
 * @const
 * @type {string}
 */
google.maps.version;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * A relational description of a location. Includes a ranked set of nearby
 * landmarks and the areas containing the target location.
 * @record
 */
google.maps.AddressDescriptor = function() {};

/**
 * A ranked list of containing or adjacent areas. The most useful (recognizable
 * and precise) areas are ranked first.
 * @type {!Array<!google.maps.Area>}
 */
google.maps.AddressDescriptor.prototype.areas;

/**
 * A ranked list of nearby landmarks. The most useful (recognizable and nearby)
 * landmarks are ranked first.
 * @type {!Array<!google.maps.Landmark>}
 */
google.maps.AddressDescriptor.prototype.landmarks;

/**
 * @record
 */
google.maps.AddressValidationLibrary = function() {};

/**
 * @type {typeof google.maps.addressValidation.Address}
 */
google.maps.AddressValidationLibrary.prototype.Address;

/**
 * @type {typeof google.maps.addressValidation.AddressComponent}
 */
google.maps.AddressValidationLibrary.prototype.AddressComponent;

/**
 * @type {typeof google.maps.addressValidation.AddressMetadata}
 */
google.maps.AddressValidationLibrary.prototype.AddressMetadata;

/**
 * @type {typeof google.maps.addressValidation.AddressValidation}
 */
google.maps.AddressValidationLibrary.prototype.AddressValidation;

/**
 * @type {typeof google.maps.addressValidation.ConfirmationLevel}
 */
google.maps.AddressValidationLibrary.prototype.ConfirmationLevel;

/**
 * @type {typeof google.maps.addressValidation.Geocode}
 */
google.maps.AddressValidationLibrary.prototype.Geocode;

/**
 * @type {typeof google.maps.addressValidation.Granularity}
 */
google.maps.AddressValidationLibrary.prototype.Granularity;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * @type {typeof google.maps.addressValidation.PossibleNextAction}
 */
google.maps.AddressValidationLibrary.prototype.PossibleNextAction;

/**
 * @type {typeof google.maps.addressValidation.USPSAddress}
 */
google.maps.AddressValidationLibrary.prototype.USPSAddress;

/**
 * @type {typeof google.maps.addressValidation.USPSData}
 */
google.maps.AddressValidationLibrary.prototype.USPSData;

/**
 * @type {typeof google.maps.addressValidation.Verdict}
 */
google.maps.AddressValidationLibrary.prototype.Verdict;

/**
 * @record
 */
google.maps.AirQualityLibrary = function() {};

/**
 * @type {typeof google.maps.airQuality.AirQualityMeterElement}
 */
google.maps.AirQualityLibrary.prototype.AirQualityMeterElement;

/**
 * Animations that can be played on a marker. Use the {@link
 * google.maps.Marker.setAnimation} method on Marker or the {@link
 * google.maps.MarkerOptions.animation} option to play an animation.
 *
 * Access by calling `const {Animation} = await
 * google.maps.importLibrary("marker")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.Animation = {
  /**
   * Marker bounces until animation is stopped by calling {@link
   * google.maps.Marker.setAnimation} with <code>null</code>.
   */
  BOUNCE: 0,
  /**
   * Marker drops from the top of the map to its final location. Animation will
   * cease once the marker comes to rest and {@link
   * google.maps.Marker.getAnimation} will return <code>null</code>. This type
   * of animation is usually specified during creation of the marker.
   */
  DROP: 1,
};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * A place that is a small region, such as a neighborhood, sublocality, or large
 * complex that contains the target location.
 * @record
 */
google.maps.Area = function() {};

/**
 * Defines the spatial relationship between the target location and the area.
 * @type {!google.maps.Containment}
 */
google.maps.Area.prototype.containment;

/**
 * The name for the area.
 * @type {string}
 */
google.maps.Area.prototype.display_name;

/**
 * The language of the name for the area.
 * @type {string}
 */
google.maps.Area.prototype.display_name_language_code;

/**
 * The Place ID of the underlying area. Can be used to resolve more information
 * about the area through Place Details or Place ID Lookup.
 * @type {string}
 */
google.maps.Area.prototype.place_id;

/**
 * A layer showing bike lanes and paths.
 *
 * Access by calling `const {BicyclingLayer} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.BicyclingLayer = function() {};

/**
 * Returns the map on which this layer is displayed.
 * @return {!google.maps.Map|null}
 */
google.maps.BicyclingLayer.prototype.getMap = function() {};

/**
 * Renders the layer on the specified map. If map is set to <code>null</code>,
 * the layer will be removed.
 * @param {!google.maps.Map|null} map
 * @return {void}
 */
google.maps.BicyclingLayer.prototype.setMap = function(map) {};

/**
 * The display options for the Camera control.
 * @record
 */
google.maps.CameraControlOptions = function() {};

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.INLINE_START_BLOCK_END}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.CameraControlOptions.prototype.position;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * Used for setting the map&#39;s camera options.
 * @record
 */
google.maps.CameraOptions = function() {};

/**
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLng|undefined}
 */
google.maps.CameraOptions.prototype.center;

/**
 * @type {number|undefined}
 */
google.maps.CameraOptions.prototype.heading;

/**
 * @type {number|undefined}
 */
google.maps.CameraOptions.prototype.tilt;

/**
 * @type {number|undefined}
 */
google.maps.CameraOptions.prototype.zoom;

/**
 * Used for retrieving camera parameters, such as that of the GL camera used for
 * the {@link google.maps.WebGLOverlayView}.
 * @extends {google.maps.CameraOptions}
 * @record
 */
google.maps.CameraParams = function() {};

/**
 * @type {!google.maps.LatLng}
 */
google.maps.CameraParams.prototype.center;

/**
 * @type {number}
 */
google.maps.CameraParams.prototype.heading;

/**
 * @type {number}
 */
google.maps.CameraParams.prototype.tilt;

/**
 * @type {number}
 */
google.maps.CameraParams.prototype.zoom;

/**
 * A circle on the Earth&#39;s surface; also known as a &quot;spherical
 * cap&quot;.
 *
 * Access by calling `const {Circle} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {(!google.maps.Circle|!google.maps.CircleLiteral|!google.maps.CircleOptions|null)=}
 *     circleOrCircleOptions
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.Circle = function(circleOrCircleOptions) {};

/**
 * Gets the <code>LatLngBounds</code> of this Circle.
 * @return {!google.maps.LatLngBounds|null}
 */
google.maps.Circle.prototype.getBounds = function() {};

/**
 * Returns the center of this circle.
 * @return {!google.maps.LatLng|null}
 */
google.maps.Circle.prototype.getCenter = function() {};

/**
 * Returns whether this circle can be dragged by the user.
 * @return {boolean}
 */
google.maps.Circle.prototype.getDraggable = function() {};

/**
 * Returns whether this circle can be edited by the user.
 * @return {boolean}
 */
google.maps.Circle.prototype.getEditable = function() {};

/**
 * Returns the map on which this circle is displayed.
 * @return {!google.maps.Map|null}
 */
google.maps.Circle.prototype.getMap = function() {};

/**
 * Returns the radius of this circle (in meters).
 * @return {number}
 */
google.maps.Circle.prototype.getRadius = function() {};

/**
 * Returns whether this circle is visible on the map.
 * @return {boolean}
 */
google.maps.Circle.prototype.getVisible = function() {};

/**
 * Sets the center of this circle.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral|null} center
 * @return {undefined}
 */
google.maps.Circle.prototype.setCenter = function(center) {};

/**
 * If set to <code>true</code>, the user can drag this circle over the map.
 * @param {boolean} draggable
 * @return {undefined}
 */
google.maps.Circle.prototype.setDraggable = function(draggable) {};

/**
 * If set to <code>true</code>, the user can edit this circle by dragging the
 * control points shown at the center and around the circumference of the
 * circle.
 * @param {boolean} editable
 * @return {undefined}
 */
google.maps.Circle.prototype.setEditable = function(editable) {};

/**
 * Renders the circle on the specified map. If map is set to <code>null</code>,
 * the circle will be removed.
 * @param {!google.maps.Map|null} map
 * @return {undefined}
 */
google.maps.Circle.prototype.setMap = function(map) {};

/**
 * @param {!google.maps.CircleOptions|null} options
 * @return {undefined}
 */
google.maps.Circle.prototype.setOptions = function(options) {};

/**
 * Sets the radius of this circle (in meters).
 * @param {number} radius
 * @return {undefined}
 */
google.maps.Circle.prototype.setRadius = function(radius) {};

/**
 * Hides this circle if set to <code>false</code>.
 * @param {boolean} visible
 * @return {undefined}
 */
google.maps.Circle.prototype.setVisible = function(visible) {};

/**
 * Object literal which represents a circle.
 * @extends {google.maps.CircleOptions}
 * @record
 */
google.maps.CircleLiteral = function() {};

/**
 * The center of the Circle.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral}
 */
google.maps.CircleLiteral.prototype.center;

/**
 * The radius in meters on the Earth&#39;s surface.
 * @type {number}
 */
google.maps.CircleLiteral.prototype.radius;

/**
 * CircleOptions object used to define the properties that can be set on a
 * Circle.
 * @record
 */
google.maps.CircleOptions = function() {};

/**
 * The center of the Circle.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.CircleOptions.prototype.center;

/**
 * Indicates whether this <code>Circle</code> handles mouse events.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.CircleOptions.prototype.clickable;

/**
 * If set to <code>true</code>, the user can drag this circle over the map.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.CircleOptions.prototype.draggable;

/**
 * If set to <code>true</code>, the user can edit this circle by dragging the
 * control points shown at the center and around the circumference of the
 * circle.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.CircleOptions.prototype.editable;

/**
 * The fill color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.CircleOptions.prototype.fillColor;

/**
 * The fill opacity between 0.0 and 1.0.
 * @type {number|null|undefined}
 */
google.maps.CircleOptions.prototype.fillOpacity;

/**
 * Map on which to display the Circle.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.CircleOptions.prototype.map;

/**
 * The radius in meters on the Earth&#39;s surface.
 * @type {number|null|undefined}
 */
google.maps.CircleOptions.prototype.radius;

/**
 * The stroke color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.CircleOptions.prototype.strokeColor;

/**
 * The stroke opacity between 0.0 and 1.0.
 * @type {number|null|undefined}
 */
google.maps.CircleOptions.prototype.strokeOpacity;

/**
 * The stroke position.
 * @default {@link google.maps.StrokePosition.CENTER}
 * @type {!google.maps.StrokePosition|null|undefined}
 */
google.maps.CircleOptions.prototype.strokePosition;

/**
 * The stroke width in pixels.
 * @type {number|null|undefined}
 */
google.maps.CircleOptions.prototype.strokeWeight;

/**
 * Whether this circle is visible on the map.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.CircleOptions.prototype.visible;

/**
 * The zIndex compared to other polys.
 * @type {number|null|undefined}
 */
google.maps.CircleOptions.prototype.zIndex;

/**
 *
 * Access by calling `const {CollisionBehavior} = await
 * google.maps.importLibrary("marker")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.CollisionBehavior = {
  /**
   * Display the marker only if it does not overlap with other markers. If two
   * markers of this type would overlap, the one with the higher zIndex is
   * shown. If they have the same zIndex, the one with the lower vertical screen
   * position is shown.
   */
  OPTIONAL_AND_HIDES_LOWER_PRIORITY: 'OPTIONAL_AND_HIDES_LOWER_PRIORITY',
  /**
   * Always display the marker regardless of collision. This is the default
   * behavior.
   */
  REQUIRED: 'REQUIRED',
  /**
   * Always display the marker regardless of collision, and hide any
   * OPTIONAL_AND_HIDES_LOWER_PRIORITY markers or labels that would overlap with
   * the marker.
   */
  REQUIRED_AND_HIDES_OPTIONAL: 'REQUIRED_AND_HIDES_OPTIONAL',
};

/**
 * Identifiers for map color schemes. Specify these by value, or by using the
 * constant&#39;s name. For example, <code>'FOLLOW_SYSTEM'</code> or
 * <code>google.maps.ColorScheme.FOLLOW_SYSTEM</code>.
 *
 * Access by calling `const {ColorScheme} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.ColorScheme = {
  /**
   * The dark color scheme for a map.
   */
  DARK: 'DARK',
  /**
   * The color scheme is selected based on system preferences, which are checked
   * once at method execution time.
   */
  FOLLOW_SYSTEM: 'FOLLOW_SYSTEM',
  /**
   * The light color scheme for a map. Default value for legacy Maps JS.
   */
  LIGHT: 'LIGHT',
};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * An enum representing the spatial relationship between the area and the target
 * location.
 *
 * Access by calling `const {Containment} = await
 * google.maps.importLibrary("geocoding")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.Containment = {
  /**
   * The target location is outside the area region, but close by.
   */
  NEAR: 'NEAR',
  /**
   * The target location is within the area region, close to the edge.
   */
  OUTSKIRTS: 'OUTSKIRTS',
  /**
   * The target location is within the area region, close to the center.
   */
  WITHIN: 'WITHIN',
};

/**
 * Identifiers used to specify the placement of controls on the map. Controls
 * are positioned relative to other controls in the same layout position.
 * Controls that are added first are positioned closer to the edge of the map.
 * Usage of &quot;logical values&quot; (see <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values">https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values</a>)
 * is recommended in order to be able to automatically support both
 * left-to-right (LTR) and right-to-left (RTL) layout contexts.<br> <br>Logical
 * values in LTR: <br> <pre>+----------------+
 * <br>|&nbsp;BSIS&nbsp;BSIC&nbsp;BSIE |
 * <br>|&nbsp;ISBS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IEBS |
 * <br>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
 * <br>|&nbsp;ISBC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IEBC |
 * <br>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
 * <br>|&nbsp;ISBE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IEBE |
 * <br>|&nbsp;BEIS&nbsp;BEIC&nbsp;BEIE | <br>+----------------+</pre><br>
 * Logical values in RTL:<br> <pre>+----------------+
 * <br>|&nbsp;BSIE&nbsp;BSIC&nbsp;BSIS |
 * <br>|&nbsp;IEBS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ISBS |
 * <br>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
 * <br>|&nbsp;IEBC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ISBC |
 * <br>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
 * <br>|&nbsp;IEBE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ISBE |
 * <br>|&nbsp;BEIE&nbsp;BEIC&nbsp;BEIS | <br>+----------------+</pre><br> Legacy
 * values:<br> <pre>+----------------+
 * <br>|&nbsp;TL&nbsp;&nbsp;&nbsp;&nbsp;TC&nbsp;&nbsp;&nbsp;&nbsp;TR |
 * <br>|&nbsp;LT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RT |
 * <br>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
 * <br>|&nbsp;LC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RC |
 * <br>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|
 * <br>|&nbsp;LB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RB |
 * <br>|&nbsp;BL&nbsp;&nbsp;&nbsp;&nbsp;BC&nbsp;&nbsp;&nbsp;&nbsp;BR |
 * <br>+----------------+</pre><br> Elements in the top or bottom row flow
 * towards the middle of the row. Elements in the left or right column flow
 * towards the middle of the column.
 *
 * Access by calling `const {ControlPosition} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.ControlPosition = {
  /**
   * Equivalent to BOTTOM_CENTER in both LTR and RTL.
   */
  BLOCK_END_INLINE_CENTER: 0,
  /**
   * Equivalent to BOTTOM_RIGHT in LTR, or BOTTOM_LEFT in RTL.
   */
  BLOCK_END_INLINE_END: 1,
  /**
   * Equivalent to BOTTOM_LEFT in LTR, or BOTTOM_RIGHT in RTL.
   */
  BLOCK_END_INLINE_START: 2,
  /**
   * Equivalent to TOP_CENTER in both LTR and RTL.
   */
  BLOCK_START_INLINE_CENTER: 3,
  /**
   * Equivalent to TOP_RIGHT in LTR, or TOP_LEFT in RTL.
   */
  BLOCK_START_INLINE_END: 4,
  /**
   * Equivalent to TOP_LEFT in LTR, or TOP_RIGHT in RTL.
   */
  BLOCK_START_INLINE_START: 5,
  /**
   * Elements are positioned in the center of the bottom row. Consider using
   * BLOCK_END_INLINE_CENTER instead.
   */
  BOTTOM_CENTER: 6,
  /**
   * Elements are positioned in the bottom left and flow towards the middle.
   * Elements are positioned to the right of the Google logo. Consider using
   * BLOCK_END_INLINE_START instead.
   */
  BOTTOM_LEFT: 7,
  /**
   * Elements are positioned in the bottom right and flow towards the middle.
   * Elements are positioned to the left of the copyrights. Consider using
   * BLOCK_END_INLINE_END instead.
   */
  BOTTOM_RIGHT: 8,
  /**
   * Equivalent to RIGHT_CENTER in LTR, or LEFT_CENTER in RTL.
   */
  INLINE_END_BLOCK_CENTER: 9,
  /**
   * Equivalent to RIGHT_BOTTOM in LTR, or LEFT_BOTTOM in RTL.
   */
  INLINE_END_BLOCK_END: 10,
  /**
   * Equivalent to RIGHT_TOP in LTR, or LEFT_TOP in RTL.
   */
  INLINE_END_BLOCK_START: 11,
  /**
   * Equivalent to LEFT_CENTER in LTR, or RIGHT_CENTER in RTL.
   */
  INLINE_START_BLOCK_CENTER: 12,
  /**
   * Equivalent to LEFT_BOTTOM in LTR, or RIGHT_BOTTOM in RTL.
   */
  INLINE_START_BLOCK_END: 13,
  /**
   * Equivalent to LEFT_TOP in LTR, or RIGHT_TOP in RTL.
   */
  INLINE_START_BLOCK_START: 14,
  /**
   * Elements are positioned on the left, above bottom-left elements, and flow
   * upwards. Consider using INLINE_START_BLOCK_END instead.
   */
  LEFT_BOTTOM: 15,
  /**
   * Elements are positioned in the center of the left side. Consider using
   * INLINE_START_BLOCK_CENTER instead.
   */
  LEFT_CENTER: 16,
  /**
   * Elements are positioned on the left, below top-left elements, and flow
   * downwards. Consider using INLINE_START_BLOCK_START instead.
   */
  LEFT_TOP: 17,
  /**
   * Elements are positioned on the right, above bottom-right elements, and flow
   * upwards. Consider using INLINE_END_BLOCK_END instead.
   */
  RIGHT_BOTTOM: 18,
  /**
   * Elements are positioned in the center of the right side. Consider using
   * INLINE_END_BLOCK_CENTER instead.
   */
  RIGHT_CENTER: 19,
  /**
   * Elements are positioned on the right, below top-right elements, and flow
   * downwards. Consider using INLINE_END_BLOCK_START instead.
   */
  RIGHT_TOP: 20,
  /**
   * Elements are positioned in the center of the top row. Consider using
   * BLOCK_START_INLINE_CENTER instead.
   */
  TOP_CENTER: 21,
  /**
   * Elements are positioned in the top left and flow towards the middle.
   * Consider using BLOCK_START_INLINE_START instead.
   */
  TOP_LEFT: 22,
  /**
   * Elements are positioned in the top right and flow towards the middle.
   * Consider using BLOCK_START_INLINE_END instead.
   */
  TOP_RIGHT: 23,
};

/**
 * This interface provides convenience methods for generating matrices to use
 * for rendering WebGL scenes on top of the Google base map. <br><br>Note: A
 * reference to this object should <b>not</b> be held outside of the scope of
 * the encapsulating {@link google.maps.WebGLOverlayView.onDraw} call.
 * @record
 */
google.maps.CoordinateTransformer = function() {};

/**
 * @param {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral}
 *     latLngAltitude Latitude, longitude, and altitude.
 * @param {!Float32Array=} rotations An array that contains an Euler rotation
 *     angle in degrees, in the XYZ convention.
 * @param {!Float32Array=} scale Array that contains an XYZ scalar array to
 *     apply to the cardinal axis.
 * @return {!Float64Array} MVP matrix to use with WebGL.
 */
google.maps.CoordinateTransformer.prototype.fromLatLngAltitude = function(
    latLngAltitude, rotations, scale) {};

/**
 * @return {!google.maps.CameraParams} camera parameters
 */
google.maps.CoordinateTransformer.prototype.getCameraParams = function() {};

/**
 * @record
 */
google.maps.CoreLibrary = function() {};

/**
 * @type {typeof google.maps.ColorScheme}
 */
google.maps.CoreLibrary.prototype.ColorScheme;

/**
 * @type {typeof google.maps.ControlPosition}
 */
google.maps.CoreLibrary.prototype.ControlPosition;

/**
 * @type {typeof google.maps.event}
 */
google.maps.CoreLibrary.prototype.event;

/**
 * @type {typeof google.maps.LatLng}
 */
google.maps.CoreLibrary.prototype.LatLng;

/**
 * @type {typeof google.maps.LatLngAltitude}
 */
google.maps.CoreLibrary.prototype.LatLngAltitude;

/**
 * @type {typeof google.maps.LatLngBounds}
 */
google.maps.CoreLibrary.prototype.LatLngBounds;

/**
 * @type {typeof google.maps.MapsNetworkError}
 */
google.maps.CoreLibrary.prototype.MapsNetworkError;

/**
 * @type {typeof google.maps.MapsNetworkErrorEndpoint}
 */
google.maps.CoreLibrary.prototype.MapsNetworkErrorEndpoint;

/**
 * @type {typeof google.maps.MapsRequestError}
 */
google.maps.CoreLibrary.prototype.MapsRequestError;

/**
 * @type {typeof google.maps.MapsServerError}
 */
google.maps.CoreLibrary.prototype.MapsServerError;

/**
 * @type {typeof google.maps.MVCArray}
 */
google.maps.CoreLibrary.prototype.MVCArray;

/**
 * @type {typeof google.maps.MVCObject}
 */
google.maps.CoreLibrary.prototype.MVCObject;

/**
 * @type {typeof google.maps.Orientation3D}
 */
google.maps.CoreLibrary.prototype.Orientation3D;

/**
 * @type {typeof google.maps.Point}
 */
google.maps.CoreLibrary.prototype.Point;

/**
 * @type {typeof google.maps.RPCStatus}
 */
google.maps.CoreLibrary.prototype.RPCStatus;

/**
 * @type {typeof google.maps.Settings}
 */
google.maps.CoreLibrary.prototype.Settings;

/**
 * @type {typeof google.maps.Size}
 */
google.maps.CoreLibrary.prototype.Size;

/**
 * @type {typeof google.maps.SymbolPath}
 */
google.maps.CoreLibrary.prototype.SymbolPath;

/**
 * @type {typeof google.maps.UnitSystem}
 */
google.maps.CoreLibrary.prototype.UnitSystem;

/**
 * @type {typeof google.maps.Vector3D}
 */
google.maps.CoreLibrary.prototype.Vector3D;

/**
 * A layer for displaying geospatial data. Points, line-strings and polygons can
 * be displayed. <p> Every <code>Map</code> has a <code>Data</code> object by
 * default, so most of the time there is no need to construct one. For example:
 * <pre> var myMap = new google.maps.Map(...);<br>
 * myMap.data.addGeoJson(...);<br> myMap.data.setStyle(...); </pre> The
 * <code>Data</code> object is a collection of <a
 * href="#Data.Feature"><code>Features</code></a>.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.Data.DataOptions=} options
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.Data = function(options) {};

/**
 * Adds a feature to the collection, and returns the added feature. <p> If the
 * feature has an ID, it will replace any existing feature in the collection
 * with the same ID. If no feature is given, a new feature will be created with
 * null geometry and no properties. If <code>FeatureOptions</code> are given, a
 * new feature will be created with the specified properties. <p> Note that the
 * IDs <code>1234</code> and <code>'1234'</code> are equivalent. Adding a
 * feature with ID <code>1234</code> will replace a feature with ID
 * <code>'1234'</code>, and vice versa.
 * @param {(google.maps.Data.Feature|google.maps.Data.FeatureOptions)=} feature
 * @return {!google.maps.Data.Feature}
 */
google.maps.Data.prototype.add = function(feature) {};

/**
 * Adds GeoJSON features to the collection. Give this method a parsed JSON. The
 * imported features are returned. Throws an exception if the GeoJSON could not
 * be imported.
 * @param {!Object} geoJson
 * @param {google.maps.Data.GeoJsonOptions=} options
 * @return {!Array<!google.maps.Data.Feature>}
 */
google.maps.Data.prototype.addGeoJson = function(geoJson, options) {};

/**
 * Checks whether the given feature is in the collection.
 * @param {!google.maps.Data.Feature} feature
 * @return {boolean}
 */
google.maps.Data.prototype.contains = function(feature) {};

/**
 * Repeatedly invokes the given function, passing a feature in the collection to
 * the function on each invocation. The order of iteration through the features
 * is undefined.
 * @param {function(!google.maps.Data.Feature): void} callback
 * @return {undefined}
 */
google.maps.Data.prototype.forEach = function(callback) {};

/**
 * Returns the position of the drawing controls on the map.
 * @return {google.maps.ControlPosition}
 */
google.maps.Data.prototype.getControlPosition = function() {};

/**
 * Returns which drawing modes are available for the user to select, in the
 * order they are displayed. This does not include the <code>null</code> drawing
 * mode, which is added by default. Possible drawing modes are
 * <code>"Point"</code>, <code>"LineString"</code> or <code>"Polygon"</code>.
 * @return {Array<string>}
 */
google.maps.Data.prototype.getControls = function() {};

/**
 * Returns the current drawing mode of the given Data layer. A drawing mode of
 * <code>null</code> means that the user can interact with the map as normal,
 * and clicks do not draw anything. Possible drawing modes are
 * <code>null</code>, <code>"Point"</code>, <code>"LineString"</code> or
 * <code>"Polygon"</code>.
 * @return {?string}
 */
google.maps.Data.prototype.getDrawingMode = function() {};

/**
 * Returns the feature with the given ID, if it exists in the collection.
 * Otherwise returns <code>undefined</code>. <p> Note that the IDs
 * <code>1234</code> and <code>'1234'</code> are equivalent. Either can be used
 * to look up the same feature.
 * @param {number|string} id
 * @return {!google.maps.Data.Feature|undefined}
 */
google.maps.Data.prototype.getFeatureById = function(id) {};

/**
 * Returns the map on which the features are displayed.
 * @return {google.maps.Map}
 */
google.maps.Data.prototype.getMap = function() {};

/**
 * Gets the style for all features in the collection.
 * @return {google.maps.Data.StylingFunction|google.maps.Data.StyleOptions}
 */
google.maps.Data.prototype.getStyle = function() {};

/**
 * Loads GeoJSON from a URL, and adds the features to the collection. <p> NOTE:
 * The GeoJSON is fetched using XHR, and may not work cross-domain. If you have
 * issues, we recommend you fetch the GeoJSON using your choice of AJAX library,
 * and then call <code>addGeoJson()</code>.
 * @param {string} url
 * @param {google.maps.Data.GeoJsonOptions=} options
 * @param {(function(!Array<!google.maps.Data.Feature>): void)=} callback
 * @return {undefined}
 */
google.maps.Data.prototype.loadGeoJson = function(url, options, callback) {};

/**
 * Changes the style of a feature. These changes are applied on top of the style
 * specified by <code>setStyle()</code>. Style properties set to
 * <code>null</code> revert to the value specified via <code>setStyle()</code>.
 * @param {!google.maps.Data.Feature} feature
 * @param {!google.maps.Data.StyleOptions} style
 * @return {undefined}
 */
google.maps.Data.prototype.overrideStyle = function(feature, style) {};

/**
 * Removes a feature from the collection.
 * @param {!google.maps.Data.Feature} feature
 * @return {undefined}
 */
google.maps.Data.prototype.remove = function(feature) {};

/**
 * Removes the effect of previous <code>overrideStyle()</code> calls. The style
 * of the given feature reverts to the style specified by
 * <code>setStyle()</code>. <p>If no feature is given, all features have their
 * style reverted.</p>
 * @param {google.maps.Data.Feature=} feature
 * @return {undefined}
 */
google.maps.Data.prototype.revertStyle = function(feature) {};

/**
 * Sets the position of the drawing controls on the map.
 * @param {google.maps.ControlPosition} controlPosition
 * @return {undefined}
 */
google.maps.Data.prototype.setControlPosition = function(controlPosition) {};

/**
 * Sets which drawing modes are available for the user to select, in the order
 * they are displayed. This should not include the <code>null</code> drawing
 * mode, which is added by default. If <code>null</code>, drawing controls are
 * disabled and not displayed. Possible drawing modes are <code>"Point"</code>,
 * <code>"LineString"</code> or <code>"Polygon"</code>.
 * @param {Array<string>} controls
 * @return {undefined}
 */
google.maps.Data.prototype.setControls = function(controls) {};

/**
 * Sets the current drawing mode of the given Data layer. A drawing mode of
 * <code>null</code> means that the user can interact with the map as normal,
 * and clicks do not draw anything. Possible drawing modes are
 * <code>null</code>, <code>"Point"</code>, <code>"LineString"</code> or
 * <code>"Polygon"</code>.
 * @param {?string} drawingMode
 * @return {undefined}
 */
google.maps.Data.prototype.setDrawingMode = function(drawingMode) {};

/**
 * Renders the features on the specified map. If map is set to
 * <code>null</code>, the features will be removed from the map.
 * @param {google.maps.Map} map
 * @return {undefined}
 */
google.maps.Data.prototype.setMap = function(map) {};

/**
 * Sets the style for all features in the collection. Styles specified on a
 * per-feature basis via <code>overrideStyle()</code> continue to apply. <p>Pass
 * either an object with the desired style options, or a function that computes
 * the style for each feature. The function will be called every time a
 * feature&#39;s properties are updated.
 * @param {google.maps.Data.StylingFunction|google.maps.Data.StyleOptions} style
 * @return {undefined}
 */
google.maps.Data.prototype.setStyle = function(style) {};

/**
 * Exports the features in the collection to a GeoJSON object.
 * @param {function(!Object): void} callback
 * @return {undefined}
 */
google.maps.Data.prototype.toGeoJson = function(callback) {};

/**
 * The properties of a <code>addfeature</code> event.
 * @record
 */
google.maps.Data.AddFeatureEvent = function() {};

/**
 * The feature that was added to the <code>FeatureCollection</code>.
 * @type {!google.maps.Data.Feature}
 */
google.maps.Data.AddFeatureEvent.prototype.feature;

/**
 * DataOptions object used to define the properties that a developer can set on
 * a <code>Data</code> object.
 * @record
 */
google.maps.Data.DataOptions = function() {};

/**
 * The position of the drawing controls on the map.
 * @default {@link google.maps.ControlPosition.TOP_LEFT}
 * @type {!google.maps.ControlPosition|undefined}
 */
google.maps.Data.DataOptions.prototype.controlPosition;

/**
 * Describes which drawing modes are available for the user to select, in the
 * order they are displayed. This should not include the <code>null</code>
 * drawing mode, which is added by default. If <code>null</code>, drawing
 * controls are disabled and not displayed. Possible drawing modes are
 * <code>"Point"</code>, <code>"LineString"</code> or <code>"Polygon"</code>.
 * @default <code>null</code>
 * @type {!Array<string>|null|undefined}
 */
google.maps.Data.DataOptions.prototype.controls;

/**
 * The current drawing mode of the given Data layer. A drawing mode of
 * <code>null</code> means that the user can interact with the map as normal,
 * and clicks do not draw anything. Possible drawing modes are
 * <code>null</code>, <code>"Point"</code>, <code>"LineString"</code> or
 * <code>"Polygon"</code>.
 * @default <code>null</code>
 * @type {string|null|undefined}
 */
google.maps.Data.DataOptions.prototype.drawingMode;

/**
 * When drawing is enabled and a user draws a Geometry (a Point, Line String or
 * Polygon), this function is called with that Geometry and should return a
 * Feature that is to be added to the Data layer. If a featureFactory is not
 * supplied, a Feature with no id and no properties will be created from that
 * Geometry instead. Defaults to <code>null</code>.
 * @type {(function(!google.maps.Data.Geometry):
 *     !google.maps.Data.Feature)|null|undefined}
 */
google.maps.Data.DataOptions.prototype.featureFactory;

/**
 * Map on which to display the features in the collection.
 * @type {!google.maps.Map}
 */
google.maps.Data.DataOptions.prototype.map;

/**
 * Style for all features in the collection. For more details, see the <code><a
 * href='#Data'>setStyle()</a></code> method above.
 * @type {!google.maps.Data.StylingFunction|!google.maps.Data.StyleOptions|undefined}
 */
google.maps.Data.DataOptions.prototype.style;

/**
 * A feature has a geometry, an id, and a set of properties.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.Data.FeatureOptions=} options
 * @constructor
 */
google.maps.Data.Feature = function(options) {};

/**
 * Repeatedly invokes the given function, passing a property value and name on
 * each invocation. The order of iteration through the properties is undefined.
 * @param {function(*, string): void} callback
 * @return {undefined}
 */
google.maps.Data.Feature.prototype.forEachProperty = function(callback) {};

/**
 * Returns the feature&#39;s geometry.
 * @return {google.maps.Data.Geometry}
 */
google.maps.Data.Feature.prototype.getGeometry = function() {};

/**
 * Returns the feature ID.
 * @return {number|string|undefined}
 */
google.maps.Data.Feature.prototype.getId = function() {};

/**
 * Returns the value of the requested property, or <code>undefined</code> if the
 * property does not exist.
 * @param {string} name
 * @return {*}
 */
google.maps.Data.Feature.prototype.getProperty = function(name) {};

/**
 * Removes the property with the given name.
 * @param {string} name
 * @return {undefined}
 */
google.maps.Data.Feature.prototype.removeProperty = function(name) {};

/**
 * Sets the feature&#39;s geometry.
 * @param {google.maps.Data.Geometry|google.maps.LatLng|google.maps.LatLngLiteral}
 *     newGeometry
 * @return {undefined}
 */
google.maps.Data.Feature.prototype.setGeometry = function(newGeometry) {};

/**
 * Sets the value of the specified property. If <code>newValue</code> is
 * <code>undefined</code> this is equivalent to calling
 * <code>removeProperty</code>.
 * @param {string} name
 * @param {*} newValue
 * @return {undefined}
 */
google.maps.Data.Feature.prototype.setProperty = function(name, newValue) {};

/**
 * Exports the feature to a GeoJSON object.
 * @param {function(!Object): void} callback
 * @return {undefined}
 */
google.maps.Data.Feature.prototype.toGeoJson = function(callback) {};

/**
 * Optional parameters for creating <code>Data.Feature</code> objects.
 * @record
 */
google.maps.Data.FeatureOptions = function() {};

/**
 * The feature geometry. If none is specified when a feature is constructed, the
 * feature&#39;s geometry will be <code>null</code>. If a <code>LatLng</code>
 * object or <code>LatLngLiteral</code> is given, this will be converted to a
 * <code>Data.Point</code> geometry.
 * @type {!google.maps.Data.Geometry|!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.Data.FeatureOptions.prototype.geometry;

/**
 * Feature ID is optional. If provided, it can be used to look up the feature in
 * a <code>Data</code> object using the <code>getFeatureById()</code> method.
 * Note that a feature&#39;s ID cannot be subsequently changed.
 * @type {number|string|undefined}
 */
google.maps.Data.FeatureOptions.prototype.id;

/**
 * The feature properties. This is an arbitrary mapping of property names to
 * values.
 * @type {!Object|null|undefined}
 */
google.maps.Data.FeatureOptions.prototype.properties;

/**
 * Optional parameters for importing GeoJSON.
 * @record
 */
google.maps.Data.GeoJsonOptions = function() {};

/**
 * The name of the Feature property to use as the feature ID. If not specified,
 * the GeoJSON Feature id will be used.
 * @type {string|null|undefined}
 */
google.maps.Data.GeoJsonOptions.prototype.idPropertyName;

/**
 * A superclass for the various geometry objects.
 * @record
 */
google.maps.Data.Geometry = function() {};

/**
 * Repeatedly invokes the given function, passing a point from the geometry to
 * the function on each invocation.
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 */
google.maps.Data.Geometry.prototype.forEachLatLng = function(callback) {};

/**
 * Returns the type of the geometry object. Possibilities are
 * <code>"Point"</code>, <code>"MultiPoint"</code>, <code>"LineString"</code>,
 * <code>"MultiLineString"</code>, <code>"LinearRing"</code>,
 * <code>"Polygon"</code>, <code>"MultiPolygon"</code>, or
 * <code>"GeometryCollection"</code>.
 * @return {string}
 */
google.maps.Data.Geometry.prototype.getType = function() {};

/**
 * A GeometryCollection contains a number of geometry objects. Any
 * <code>LatLng</code> or <code>LatLngLiteral</code> objects are automatically
 * converted to <code>Data.Point</code> geometry objects.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.Data.Geometry|!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.GeometryCollection = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.GeometryCollection.prototype.forEachLatLng = function(
    callback) {};

/**
 * Returns an array of the contained geometry objects. A new array is returned
 * each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.Data.Geometry>}
 */
google.maps.Data.GeometryCollection.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained geometry object.
 * @param {number} n
 * @return {!google.maps.Data.Geometry}
 */
google.maps.Data.GeometryCollection.prototype.getAt = function(n) {};

/**
 * Returns the number of contained geometry objects.
 * @return {number}
 */
google.maps.Data.GeometryCollection.prototype.getLength = function() {};

/**
 * Returns the string <code>"GeometryCollection"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.GeometryCollection.prototype.getType = function() {};

/**
 * A LineString geometry contains a number of <code>LatLng</code>s.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>} elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.LineString = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.LineString.prototype.forEachLatLng = function(callback) {};

/**
 * Returns an array of the contained <code>LatLngs</code>. A new array is
 * returned each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.LatLng>}
 */
google.maps.Data.LineString.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained <code>LatLng</code>.
 * @param {number} n
 * @return {!google.maps.LatLng}
 */
google.maps.Data.LineString.prototype.getAt = function(n) {};

/**
 * Returns the number of contained <code>LatLng</code>s.
 * @return {number}
 */
google.maps.Data.LineString.prototype.getLength = function() {};

/**
 * Returns the string <code>"LineString"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.LineString.prototype.getType = function() {};

/**
 * A LinearRing geometry contains a number of <code>LatLng</code>s, representing
 * a closed LineString. There is no need to make the first <code>LatLng</code>
 * equal to the last <code>LatLng</code>. The LinearRing is closed implicitly.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>} elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.LinearRing = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.LinearRing.prototype.forEachLatLng = function(callback) {};

/**
 * Returns an array of the contained <code>LatLng</code>s. A new array is
 * returned each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.LatLng>}
 */
google.maps.Data.LinearRing.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained <code>LatLng</code>.
 * @param {number} n
 * @return {!google.maps.LatLng}
 */
google.maps.Data.LinearRing.prototype.getAt = function(n) {};

/**
 * Returns the number of contained <code>LatLng</code>s.
 * @return {number}
 */
google.maps.Data.LinearRing.prototype.getLength = function() {};

/**
 * Returns the string <code>"LinearRing"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.LinearRing.prototype.getType = function() {};

/**
 * This object is passed to mouse event handlers on a <code>Data</code> object.
 * @extends {google.maps.MapMouseEvent}
 * @record
 */
google.maps.Data.MouseEvent = function() {};

/**
 * The feature which generated the mouse event.
 * @type {!google.maps.Data.Feature}
 */
google.maps.Data.MouseEvent.prototype.feature;

/**
 * A MultiLineString geometry contains a number of <code>LineString</code>s.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.Data.LineString|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>>}
 *     elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.MultiLineString = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.MultiLineString.prototype.forEachLatLng = function(
    callback) {};

/**
 * Returns an array of the contained <code>Data.LineString</code>s. A new array
 * is returned each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.Data.LineString>}
 */
google.maps.Data.MultiLineString.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained <code>Data.LineString</code>.
 * @param {number} n
 * @return {!google.maps.Data.LineString}
 */
google.maps.Data.MultiLineString.prototype.getAt = function(n) {};

/**
 * Returns the number of contained <code>Data.LineString</code>s.
 * @return {number}
 */
google.maps.Data.MultiLineString.prototype.getLength = function() {};

/**
 * Returns the string <code>"MultiLineString"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.MultiLineString.prototype.getType = function() {};

/**
 * A MultiPoint geometry contains a number of <code>LatLng</code>s.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>} elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.MultiPoint = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.MultiPoint.prototype.forEachLatLng = function(callback) {};

/**
 * Returns an array of the contained <code>LatLng</code>s. A new array is
 * returned each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.LatLng>}
 */
google.maps.Data.MultiPoint.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained <code>LatLng</code>.
 * @param {number} n
 * @return {!google.maps.LatLng}
 */
google.maps.Data.MultiPoint.prototype.getAt = function(n) {};

/**
 * Returns the number of contained <code>LatLng</code>s.
 * @return {number}
 */
google.maps.Data.MultiPoint.prototype.getLength = function() {};

/**
 * Returns the string <code>"MultiPoint"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.MultiPoint.prototype.getType = function() {};

/**
 * A MultiPolygon geometry contains a number of <code>Data.Polygon</code>s.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.Data.Polygon|!Array<!google.maps.Data.LinearRing|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>>>}
 *     elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.MultiPolygon = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.MultiPolygon.prototype.forEachLatLng = function(callback) {};

/**
 * Returns an array of the contained <code>Data.Polygon</code>s. A new array is
 * returned each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.Data.Polygon>}
 */
google.maps.Data.MultiPolygon.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained <code>Data.Polygon</code>.
 * @param {number} n
 * @return {!google.maps.Data.Polygon}
 */
google.maps.Data.MultiPolygon.prototype.getAt = function(n) {};

/**
 * Returns the number of contained <code>Data.Polygon</code>s.
 * @return {number}
 */
google.maps.Data.MultiPolygon.prototype.getLength = function() {};

/**
 * Returns the string <code>"MultiPolygon"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.MultiPolygon.prototype.getType = function() {};

/**
 * A Point geometry contains a single <code>LatLng</code>.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latLng
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.Point = function(latLng) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.Point.prototype.forEachLatLng = function(callback) {};

/**
 * Returns the contained <code>LatLng</code>.
 * @return {!google.maps.LatLng}
 */
google.maps.Data.Point.prototype.get = function() {};

/**
 * Returns the string <code>"Point"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.Point.prototype.getType = function() {};

/**
 * A Polygon geometry contains a number of <code>Data.LinearRing</code>s. The
 * first linear-ring must be the polygon exterior boundary and subsequent
 * linear-rings must be interior boundaries, also known as holes. See the <a
 * href="https://developers.google.com/maps/documentation/javascript/examples/layer-data-polygon">sample
 * polygon with a hole</a>.
 *
 * Access by calling `const {Data} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!Array<!google.maps.Data.LinearRing|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>>}
 *     elements
 * @implements {google.maps.Data.Geometry}
 * @constructor
 */
google.maps.Data.Polygon = function(elements) {};

/**
 * @param {function(!google.maps.LatLng): void} callback
 * @return {undefined}
 * @override
 */
google.maps.Data.Polygon.prototype.forEachLatLng = function(callback) {};

/**
 * Returns an array of the contained <code>Data.LinearRing</code>s. A new array
 * is returned each time <code>getArray()</code> is called.
 * @return {!Array<!google.maps.Data.LinearRing>}
 */
google.maps.Data.Polygon.prototype.getArray = function() {};

/**
 * Returns the <code>n</code>-th contained <code>Data.LinearRing</code>.
 * @param {number} n
 * @return {!google.maps.Data.LinearRing}
 */
google.maps.Data.Polygon.prototype.getAt = function(n) {};

/**
 * Returns the number of contained <code>Data.LinearRing</code>s.
 * @return {number}
 */
google.maps.Data.Polygon.prototype.getLength = function() {};

/**
 * Returns the string <code>"Polygon"</code>.
 * @return {string}
 * @override
 */
google.maps.Data.Polygon.prototype.getType = function() {};

/**
 * The properties of a <code>removefeature</code> event.
 * @record
 */
google.maps.Data.RemoveFeatureEvent = function() {};

/**
 * The feature that was removed from the <code>FeatureCollection</code>.
 * @type {!google.maps.Data.Feature}
 */
google.maps.Data.RemoveFeatureEvent.prototype.feature;

/**
 * The properties of a <code>removeproperty</code> event.
 * @record
 */
google.maps.Data.RemovePropertyEvent = function() {};

/**
 * The feature whose property was removed.
 * @type {!google.maps.Data.Feature}
 */
google.maps.Data.RemovePropertyEvent.prototype.feature;

/**
 * The property name.
 * @type {string}
 */
google.maps.Data.RemovePropertyEvent.prototype.name;

/**
 * The previous value.
 * @type {*}
 */
google.maps.Data.RemovePropertyEvent.prototype.oldValue;

/**
 * The properties of a <code>setgeometry</code> event.
 * @record
 */
google.maps.Data.SetGeometryEvent = function() {};

/**
 * The feature whose geometry was set.
 * @type {!google.maps.Data.Feature}
 */
google.maps.Data.SetGeometryEvent.prototype.feature;

/**
 * The new feature geometry.
 * @type {!google.maps.Data.Geometry|undefined}
 */
google.maps.Data.SetGeometryEvent.prototype.newGeometry;

/**
 * The previous feature geometry.
 * @type {!google.maps.Data.Geometry|undefined}
 */
google.maps.Data.SetGeometryEvent.prototype.oldGeometry;

/**
 * The properties of a <code>setproperty</code> event.
 * @record
 */
google.maps.Data.SetPropertyEvent = function() {};

/**
 * The feature whose property was set.
 * @type {!google.maps.Data.Feature}
 */
google.maps.Data.SetPropertyEvent.prototype.feature;

/**
 * The property name.
 * @type {string}
 */
google.maps.Data.SetPropertyEvent.prototype.name;

/**
 * The new value.
 * @type {*}
 */
google.maps.Data.SetPropertyEvent.prototype.newValue;

/**
 * The previous value. Will be <code>undefined</code> if the property was added.
 * @type {*}
 */
google.maps.Data.SetPropertyEvent.prototype.oldValue;

/**
 * These options specify the way a Feature should appear when displayed on a
 * map.
 * @record
 */
google.maps.Data.StyleOptions = function() {};

/**
 * The animation to play when marker is added to a map. Only applies to point
 * geometries.
 * @type {!google.maps.Animation|undefined}
 */
google.maps.Data.StyleOptions.prototype.animation;

/**
 * If <code>true</code>, the marker receives mouse and touch events.
 * @default <code>true</code>
 * @type {boolean|undefined}
 */
google.maps.Data.StyleOptions.prototype.clickable;

/**
 * Mouse cursor to show on hover. Only applies to point geometries.
 * @type {string|undefined}
 */
google.maps.Data.StyleOptions.prototype.cursor;

/**
 * If <code>true</code>, the object can be dragged across the map and the
 * underlying feature will have its geometry updated.
 * @default <code>false</code>
 * @type {boolean|undefined}
 */
google.maps.Data.StyleOptions.prototype.draggable;

/**
 * If <code>true</code>, the object can be edited by dragging control points and
 * the underlying feature will have its geometry updated. Only applies to
 * LineString and Polygon geometries.
 * @default <code>false</code>
 * @type {boolean|undefined}
 */
google.maps.Data.StyleOptions.prototype.editable;

/**
 * The fill color. All CSS3 colors are supported except for extended named
 * colors. Only applies to polygon geometries.
 * @type {string|undefined}
 */
google.maps.Data.StyleOptions.prototype.fillColor;

/**
 * The fill opacity between 0.0 and 1.0. Only applies to polygon geometries.
 * @type {number|undefined}
 */
google.maps.Data.StyleOptions.prototype.fillOpacity;

/**
 * Icon for the foreground. If a string is provided, it is treated as though it
 * were an <code>Icon</code> with the string as <code>url</code>. Only applies
 * to point geometries.
 * @type {string|!google.maps.Icon|!google.maps.Symbol|undefined}
 */
google.maps.Data.StyleOptions.prototype.icon;

/**
 * The icons to be rendered along a polyline. Only applies to line geometries.
 * @type {!Array<!google.maps.IconSequence>|undefined}
 */
google.maps.Data.StyleOptions.prototype.icons;

/**
 * Adds a label to the marker. The label can either be a string, or a
 * <code>MarkerLabel</code> object. Only applies to point geometries.
 * @type {string|!google.maps.MarkerLabel|undefined}
 */
google.maps.Data.StyleOptions.prototype.label;

/**
 * The marker&#39;s opacity between 0.0 and 1.0. Only applies to point
 * geometries.
 * @type {number|undefined}
 */
google.maps.Data.StyleOptions.prototype.opacity;

/**
 * Defines the image map used for hit detection. Only applies to point
 * geometries.
 * @type {!google.maps.MarkerShape|undefined}
 */
google.maps.Data.StyleOptions.prototype.shape;

/**
 * The stroke color. All CSS3 colors are supported except for extended named
 * colors. Only applies to line and polygon geometries.
 * @type {string|undefined}
 */
google.maps.Data.StyleOptions.prototype.strokeColor;

/**
 * The stroke opacity between 0.0 and 1.0. Only applies to line and polygon
 * geometries.
 * @type {number|undefined}
 */
google.maps.Data.StyleOptions.prototype.strokeOpacity;

/**
 * The stroke width in pixels. Only applies to line and polygon geometries.
 * @type {number|undefined}
 */
google.maps.Data.StyleOptions.prototype.strokeWeight;

/**
 * Rollover text. Only applies to point geometries.
 * @type {string|undefined}
 */
google.maps.Data.StyleOptions.prototype.title;

/**
 * Whether the feature is visible.
 * @default <code>true</code>
 * @type {boolean|undefined}
 */
google.maps.Data.StyleOptions.prototype.visible;

/**
 * All features are displayed on the map in order of their zIndex, with higher
 * values displaying in front of features with lower values. Markers are always
 * displayed in front of line-strings and polygons.
 * @type {number|undefined}
 */
google.maps.Data.StyleOptions.prototype.zIndex;

/**
 * @typedef {function(!google.maps.Data.Feature):
 * !google.maps.Data.StyleOptions}
 */
google.maps.Data.StylingFunction;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * An interface representing a feature from a Dataset. The
 * <code>featureType</code> of a <code>DatasetFeature</code> will always be
 * <code>FeatureType.DATASET</code>.
 * @extends {google.maps.Feature}
 * @record
 */
google.maps.DatasetFeature = function() {};

/**
 * Key-value mapping of the feature&#39;s attributes.
 * @type {!Object<string, string>}
 */
google.maps.DatasetFeature.prototype.datasetAttributes;

/**
 * Dataset id of the dataset that this feature belongs to.
 * @type {string}
 */
google.maps.DatasetFeature.prototype.datasetId;

/**
 * A single geocoded waypoint.
 * @record
 */
google.maps.DirectionsGeocodedWaypoint = function() {};

/**
 * Whether the geocoder did not return an exact match for the original waypoint,
 * though it was able to match part of the requested address.
 * @type {boolean|undefined}
 */
google.maps.DirectionsGeocodedWaypoint.prototype.partial_match;

/**
 * The place ID associated with the waypoint. Place IDs uniquely identify a
 * place in the Google Places database and on Google Maps. Learn more about <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-id">Place
 * IDs</a> in the Places API developer guide.
 * @type {string|undefined}
 */
google.maps.DirectionsGeocodedWaypoint.prototype.place_id;

/**
 * An array of strings denoting the type of the returned geocoded element. For a
 * list of possible strings, refer to the <a href=
 * "https://developers.google.com/maps/documentation/javascript/geocoding#GeocodingAddressTypes">
 * Address Component Types</a> section of the Developer&#39;s Guide.
 * @type {!Array<string>|undefined}
 */
google.maps.DirectionsGeocodedWaypoint.prototype.types;

/**
 * A single leg consisting of a set of steps in a <code><a
 * href="#DirectionsResult">DirectionsResult</a></code>. Some fields in the leg
 * may not be returned for all requests. Note that though this result is
 * &quot;JSON-like,&quot; it is not strictly JSON, as it directly and indirectly
 * includes <code>LatLng</code> objects.
 * @record
 */
google.maps.DirectionsLeg = function() {};

/**
 * An estimated arrival time for this leg. Only applicable for TRANSIT requests.
 * @type {!google.maps.Time|undefined}
 */
google.maps.DirectionsLeg.prototype.arrival_time;

/**
 * An estimated departure time for this leg. Only applicable for TRANSIT
 * requests.
 * @type {!google.maps.Time|undefined}
 */
google.maps.DirectionsLeg.prototype.departure_time;

/**
 * The total distance covered by this leg. This property may be undefined as the
 * distance may be unknown.
 * @type {!google.maps.Distance|undefined}
 */
google.maps.DirectionsLeg.prototype.distance;

/**
 * The total duration of this leg. This property may be <code>undefined</code>
 * as the duration may be unknown.
 * @type {!google.maps.Duration|undefined}
 */
google.maps.DirectionsLeg.prototype.duration;

/**
 * The total duration of this leg, taking into account the traffic conditions
 * indicated by the <code>trafficModel</code> property. This property may be
 * <code>undefined</code> as the duration may be unknown.
 * @type {!google.maps.Duration|undefined}
 */
google.maps.DirectionsLeg.prototype.duration_in_traffic;

/**
 * The address of the destination of this leg. This content is meant to be read
 * as-is. Do not programmatically parse the formatted address.
 * @type {string}
 */
google.maps.DirectionsLeg.prototype.end_address;

/**
 * The <code>DirectionsService</code> calculates directions between locations by
 * using the nearest transportation option (usually a road) at the start and end
 * locations. <code>end_location</code> indicates the actual geocoded
 * destination, which may be different than the <code>end_location</code> of the
 * last step if, for example, the road is not near the destination of this leg.
 * @type {!google.maps.LatLng}
 */
google.maps.DirectionsLeg.prototype.end_location;

/**
 * The address of the origin of this leg. This content is meant to be read
 * as-is. Do not programmatically parse the formatted address.
 * @type {string}
 */
google.maps.DirectionsLeg.prototype.start_address;

/**
 * The <code>DirectionsService</code> calculates directions between locations by
 * using the nearest transportation option (usually a road) at the start and end
 * locations. <code>start_location</code> indicates the actual geocoded origin,
 * which may be different than the <code>start_location</code> of the first step
 * if, for example, the road is not near the origin of this leg.
 * @type {!google.maps.LatLng}
 */
google.maps.DirectionsLeg.prototype.start_location;

/**
 * An array of <code>DirectionsStep</code>s, each of which contains information
 * about the individual steps in this leg.
 * @type {!Array<!google.maps.DirectionsStep>}
 */
google.maps.DirectionsLeg.prototype.steps;

/**
 * An array of non-stopover waypoints along this leg, which were specified in
 * the original request. <p> <strong>Deprecated in alternative routes</strong>.
 * Version 3.27 will be the last version of the API that adds extra
 * <code>via_waypoints</code> in alternative routes. <p> When using the
 * Directions Service to implement draggable directions, it is recommended to
 * disable dragging of alternative routes. Only the main route should be
 * draggable. Users can drag the main route until it matches an alternative
 * route.
 * @type {!Array<!google.maps.LatLng>}
 */
google.maps.DirectionsLeg.prototype.via_waypoints;

/**
 * Information about traffic speed along the leg.
 * @type {!Array<*>}
 * @deprecated This array will always be empty.
 */
google.maps.DirectionsLeg.prototype.traffic_speed_entry;

/**
 * An object containing a <code>points</code> property to describe the polyline
 * of a {@link google.maps.DirectionsStep}.
 * @record
 */
google.maps.DirectionsPolyline = function() {};

/**
 * An <a
 * href="https://developers.google.com/maps/documentation/utilities/polylinealgorithm">encoded
 * polyline</a>.
 * @type {string}
 */
google.maps.DirectionsPolyline.prototype.points;

/**
 * Renders directions obtained from the <code><a
 * href="#DirectionsService">DirectionsService</a></code>.
 *
 * Access by calling `const {DirectionsRenderer} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.DirectionsRendererOptions=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.DirectionsRenderer = function(opts) {};

/**
 * Returns the renderer&#39;s current set of directions.
 * @return {google.maps.DirectionsResult}
 */
google.maps.DirectionsRenderer.prototype.getDirections = function() {};

/**
 * Returns the map on which the <code>DirectionsResult</code> is rendered.
 * @return {google.maps.Map}
 */
google.maps.DirectionsRenderer.prototype.getMap = function() {};

/**
 * Returns the panel <code>&lt;div&gt;</code> in which the
 * <code>DirectionsResult</code> is rendered.
 * @return {?HTMLElement}
 */
google.maps.DirectionsRenderer.prototype.getPanel = function() {};

/**
 * Returns the current (zero-based) route index in use by this
 * <code>DirectionsRenderer</code> object.
 * @return {number}
 */
google.maps.DirectionsRenderer.prototype.getRouteIndex = function() {};

/**
 * Set the renderer to use the result from the <code>DirectionsService</code>.
 * Setting a valid set of directions in this manner will display the directions
 * on the renderer&#39;s designated map and panel.
 * @param {google.maps.DirectionsResult} directions
 * @return {undefined}
 */
google.maps.DirectionsRenderer.prototype.setDirections = function(
    directions) {};

/**
 * This method specifies the map on which directions will be rendered. Pass
 * <code>null</code> to remove the directions from the map.
 * @param {google.maps.Map} map
 * @return {undefined}
 */
google.maps.DirectionsRenderer.prototype.setMap = function(map) {};

/**
 * Change the options settings of this <code>DirectionsRenderer</code> after
 * initialization.
 * @param {google.maps.DirectionsRendererOptions} options
 * @return {undefined}
 */
google.maps.DirectionsRenderer.prototype.setOptions = function(options) {};

/**
 * This method renders the directions in a <code>&lt;div&gt;</code>. Pass
 * <code>null</code> to remove the content from the panel.
 * @param {?HTMLElement} panel
 * @return {undefined}
 */
google.maps.DirectionsRenderer.prototype.setPanel = function(panel) {};

/**
 * Set the (zero-based) index of the route in the <code>DirectionsResult</code>
 * object to render. By default, the first route in the array will be rendered.
 * @param {number} routeIndex
 * @return {undefined}
 */
google.maps.DirectionsRenderer.prototype.setRouteIndex = function(
    routeIndex) {};

/**
 * This object defines the properties that can be set on a
 * <code>DirectionsRenderer</code> object.
 * @record
 */
google.maps.DirectionsRendererOptions = function() {};

/**
 * The directions to display on the map and/or in a <code>&lt;div&gt;</code>
 * panel, retrieved as a <code>DirectionsResult</code> object from
 * <code>DirectionsService</code>.
 * @type {!google.maps.DirectionsResult|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.directions;

/**
 * If <code>true</code>, allows the user to drag and modify the paths of routes
 * rendered by this <code>DirectionsRenderer</code>.
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.draggable;

/**
 * This property indicates whether the renderer should provide a user-selectable
 * list of routes shown in the directions panel.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.hideRouteList;

/**
 * The <code>InfoWindow</code> in which to render text information when a marker
 * is clicked. Existing info window content will be overwritten and its position
 * moved. If no info window is specified, the <code>DirectionsRenderer</code>
 * will create and use its own info window. This property will be ignored if
 * <code>suppressInfoWindows</code> is set to <code>true</code>.
 * @type {!google.maps.InfoWindow|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.infoWindow;

/**
 * Map on which to display the directions.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.map;

/**
 * Options for the markers. All markers rendered by the
 * <code>DirectionsRenderer</code> will use these options.
 * @type {!google.maps.MarkerOptions|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.markerOptions;

/**
 * The <code>&lt;div&gt;</code> in which to display the directions steps.
 * @type {!HTMLElement|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.panel;

/**
 * Options for the polylines. All polylines rendered by the
 * <code>DirectionsRenderer</code> will use these options.
 * @type {!google.maps.PolylineOptions|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.polylineOptions;

/**
 * If this option is set to <code>true</code> or the map&#39;s center and zoom
 * were never set, the input map is centered and zoomed to the bounding box of
 * this set of directions.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.preserveViewport;

/**
 * The index of the route within the <code>DirectionsResult</code> object. The
 * default value is 0.
 * @type {number|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.routeIndex;

/**
 * Suppress the rendering of the <code>BicyclingLayer</code> when bicycling
 * directions are requested.
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.suppressBicyclingLayer;

/**
 * Suppress the rendering of info windows.
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.suppressInfoWindows;

/**
 * Suppress the rendering of markers.
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.suppressMarkers;

/**
 * Suppress the rendering of polylines.
 * @type {boolean|null|undefined}
 */
google.maps.DirectionsRendererOptions.prototype.suppressPolylines;

/**
 * A directions query to be sent to the <code><a
 * href="#DirectionsService">DirectionsService</a></code>.
 * @record
 */
google.maps.DirectionsRequest = function() {};

/**
 * If <code>true</code>, instructs the Directions service to avoid ferries where
 * possible. Optional.
 * @type {boolean|undefined}
 */
google.maps.DirectionsRequest.prototype.avoidFerries;

/**
 * If <code>true</code>, instructs the Directions service to avoid highways
 * where possible. Optional.
 * @type {boolean|undefined}
 */
google.maps.DirectionsRequest.prototype.avoidHighways;

/**
 * If <code>true</code>, instructs the Directions service to avoid toll roads
 * where possible. Optional.
 * @type {boolean|undefined}
 */
google.maps.DirectionsRequest.prototype.avoidTolls;

/**
 * Location of destination. This can be specified as either a string to be
 * geocoded, or a <code>LatLng</code>, or a <code>Place</code>. Required.
 * @type {string|!google.maps.LatLng|!google.maps.Place|!google.maps.LatLngLiteral}
 */
google.maps.DirectionsRequest.prototype.destination;

/**
 * Settings that apply only to requests where <code>travelMode</code> is
 * <code>DRIVING</code>. This object will have no effect for other travel modes.
 * @type {!google.maps.DrivingOptions|undefined}
 */
google.maps.DirectionsRequest.prototype.drivingOptions;

/**
 * A language identifier for the language in which results should be returned,
 * when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.DirectionsRequest.prototype.language;

/**
 * If set to <code>true</code>, the <code>DirectionsService</code> will attempt
 * to re-order the supplied intermediate waypoints to minimize overall cost of
 * the route. If waypoints are optimized, inspect
 * <code>DirectionsRoute.waypoint_order</code> in the response to determine the
 * new ordering.
 * @type {boolean|undefined}
 */
google.maps.DirectionsRequest.prototype.optimizeWaypoints;

/**
 * Location of origin. This can be specified as either a string to be geocoded,
 * or a <code>LatLng</code>, or a <code>Place</code>. Required.
 * @type {string|!google.maps.LatLng|!google.maps.Place|!google.maps.LatLngLiteral}
 */
google.maps.DirectionsRequest.prototype.origin;

/**
 * Whether or not route alternatives should be provided. Optional.
 * @type {boolean|undefined}
 */
google.maps.DirectionsRequest.prototype.provideRouteAlternatives;

/**
 * Region code used as a bias for geocoding requests. The region code accepts a
 * <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null|undefined}
 */
google.maps.DirectionsRequest.prototype.region;

/**
 * Settings that apply only to requests where <code>travelMode</code> is
 * TRANSIT. This object will have no effect for other travel modes.
 * @type {!google.maps.TransitOptions|undefined}
 */
google.maps.DirectionsRequest.prototype.transitOptions;

/**
 * Type of routing requested. Required.
 * @type {!google.maps.TravelMode}
 */
google.maps.DirectionsRequest.prototype.travelMode;

/**
 * Preferred unit system to use when displaying distance.
 * @default The unit system used in the country of origin.
 * @type {!google.maps.UnitSystem|undefined}
 */
google.maps.DirectionsRequest.prototype.unitSystem;

/**
 * Array of intermediate waypoints. Directions are calculated from the origin to
 * the destination by way of each waypoint in this array. See the <a
 * href="https://developers.google.com/maps/documentation/javascript/directions#UsageLimits">
 * developer&#39;s guide</a> for the maximum number of waypoints allowed.
 * Waypoints are not supported for transit directions. Optional.
 * @type {!Array<!google.maps.DirectionsWaypoint>|undefined}
 */
google.maps.DirectionsRequest.prototype.waypoints;

/**
 * The directions response retrieved from the directions server. You can render
 * these using a {@link google.maps.DirectionsRenderer} or parse this object and
 * render it yourself. You must display the warnings and copyrights as noted in
 * the <a href="https://cloud.google.com/maps-platform/terms">Google Maps
 * Platform Terms of Service</a>. Note that though this result is
 * &quot;JSON-like,&quot; it is not strictly JSON, as it indirectly includes
 * <code>LatLng</code> objects.
 * @record
 */
google.maps.DirectionsResult = function() {};

/**
 * Contains an array of available travel modes. This field is returned when a
 * request specifies a travel mode and gets no results. The array contains the
 * available travel modes in the countries of the given set of waypoints. This
 * field is not returned if one or more of the waypoints are &#39;via
 * waypoints&#39;.
 * @type {!Array<!google.maps.TravelMode>|undefined}
 */
google.maps.DirectionsResult.prototype.available_travel_modes;

/**
 * An array of <code>DirectionsGeocodedWaypoint</code>s, each of which contains
 * information about the geocoding of origin, destination and waypoints.
 * @type {!Array<!google.maps.DirectionsGeocodedWaypoint>|undefined}
 */
google.maps.DirectionsResult.prototype.geocoded_waypoints;

/**
 * The DirectionsRequest that yielded this result.
 * @type {!google.maps.DirectionsRequest}
 */
google.maps.DirectionsResult.prototype.request;

/**
 * An array of <code>DirectionsRoute</code>s, each of which contains information
 * about the legs and steps of which it is composed. There will only be one
 * route unless the <code>DirectionsRequest</code> was made with
 * <code>provideRouteAlternatives</code> set to <code>true</code>.
 * @type {!Array<!google.maps.DirectionsRoute>}
 */
google.maps.DirectionsResult.prototype.routes;

/**
 * A single route containing a set of legs in a <code><a
 * href="#DirectionsResult">DirectionsResult</a></code>. Note that though this
 * object is &quot;JSON-like,&quot; it is not strictly JSON, as it directly and
 * indirectly includes <code>LatLng</code> objects.
 * @record
 */
google.maps.DirectionsRoute = function() {};

/**
 * The bounds for this route.
 * @type {!google.maps.LatLngBounds}
 */
google.maps.DirectionsRoute.prototype.bounds;

/**
 * Copyrights text to be displayed for this route.
 * @type {string}
 */
google.maps.DirectionsRoute.prototype.copyrights;

/**
 * The total fare for the whole transit trip. Only applicable to transit
 * requests.
 * @type {!google.maps.TransitFare|undefined}
 */
google.maps.DirectionsRoute.prototype.fare;

/**
 * An array of <code>DirectionsLeg</code>s, each of which contains information
 * about the steps of which it is composed. There will be one leg for each
 * stopover waypoint or destination specified. So a route with no stopover
 * waypoints will contain one <code>DirectionsLeg</code> and a route with one
 * stopover waypoint will contain two.
 * @type {!Array<!google.maps.DirectionsLeg>}
 */
google.maps.DirectionsRoute.prototype.legs;

/**
 * An array of <code>LatLng</code>s representing the entire course of this
 * route. The path is simplified in order to make it suitable in contexts where
 * a small number of vertices is required (such as Static Maps API URLs).
 * @type {!Array<!google.maps.LatLng>}
 */
google.maps.DirectionsRoute.prototype.overview_path;

/**
 * An <a
 * href="https://developers.google.com/maps/documentation/utilities/polylinealgorithm">encoded
 * polyline representation</a> of the route in overview_path. This polyline is
 * an approximate (smoothed) path of the resulting directions.
 * @type {string}
 */
google.maps.DirectionsRoute.prototype.overview_polyline;

/**
 * Contains a short textual description for the route, suitable for naming and
 * disambiguating the route from alternatives.
 * @type {string}
 */
google.maps.DirectionsRoute.prototype.summary;

/**
 * Warnings to be displayed when showing these directions.
 * @type {!Array<string>}
 */
google.maps.DirectionsRoute.prototype.warnings;

/**
 * If <code>optimizeWaypoints</code> was set to <code>true</code>, this field
 * will contain the re-ordered permutation of the input waypoints. For example,
 * if the input was:<br> &nbsp;&nbsp;Origin: Los Angeles<br>
 * &nbsp;&nbsp;Waypoints: Dallas, Bangor, Phoenix<br> &nbsp;&nbsp;Destination:
 * New York<br> and the optimized output was ordered as follows:<br>
 * &nbsp;&nbsp;Origin: Los Angeles<br> &nbsp;&nbsp;Waypoints: Phoenix, Dallas,
 * Bangor<br> &nbsp;&nbsp;Destination: New York<br> then this field will be an
 * <code>Array</code> containing the values [2, 0, 1]. Note that the numbering
 * of waypoints is zero-based.<br> If any of the input waypoints has
 * <code>stopover</code> set to <code>false</code>, this field will be empty,
 * since route optimization is not available for such queries.
 * @type {!Array<number>}
 */
google.maps.DirectionsRoute.prototype.waypoint_order;

/**
 * A service for computing directions between two or more places.
 *
 * Access by calling `const {DirectionsService} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.DirectionsService = function() {};

/**
 * Issue a directions search request.
 * @param {!google.maps.DirectionsRequest} request
 * @param {((function((!google.maps.DirectionsResult|null),
 *     !google.maps.DirectionsStatus): void)|undefined)=} callback
 * @return {!Promise<!google.maps.DirectionsResult>}
 */
google.maps.DirectionsService.prototype.route = function(request, callback) {};

/**
 * The status returned by the <code>DirectionsService</code> on the completion
 * of a call to <code>route()</code>. Specify these by value, or by using the
 * constant&#39;s name. For example, <code>'OK'</code> or
 * <code>google.maps.DirectionsStatus.OK</code>.
 *
 * Access by calling `const {DirectionsStatus} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.DirectionsStatus = {
  /**
   * The <code>DirectionsRequest</code> provided was invalid.
   */
  INVALID_REQUEST: 'INVALID_REQUEST',
  /**
   * Too many <code>DirectionsWaypoint</code>s were provided in the
   * <code>DirectionsRequest</code>. See the <a
   * href="https://developers.google.com/maps/documentation/javascript/directions#UsageLimits">
   * developer&#39;s guide</a> for the maximum number of waypoints allowed.
   */
  MAX_WAYPOINTS_EXCEEDED: 'MAX_WAYPOINTS_EXCEEDED',
  /**
   * At least one of the origin, destination, or waypoints could not be
   * geocoded.
   */
  NOT_FOUND: 'NOT_FOUND',
  /**
   * The response contains a valid <code>DirectionsResult</code>.
   */
  OK: 'OK',
  /**
   * The webpage has gone over the requests limit in too short a period of time.
   */
  OVER_QUERY_LIMIT: 'OVER_QUERY_LIMIT',
  /**
   * The webpage is not allowed to use the directions service.
   */
  REQUEST_DENIED: 'REQUEST_DENIED',
  /**
   * A directions request could not be processed due to a server error. The
   * request may succeed if you try again.
   */
  UNKNOWN_ERROR: 'UNKNOWN_ERROR',
  /**
   * No route could be found between the origin and destination.
   */
  ZERO_RESULTS: 'ZERO_RESULTS',
};

/**
 * A single <code>DirectionsStep</code> in a <code>DirectionsResult</code>. Some
 * fields may be <code>undefined</code>. Note that though this object is
 * &quot;JSON-like,&quot; it is not strictly JSON, as it directly includes
 * <code>LatLng</code> objects.
 * @record
 */
google.maps.DirectionsStep = function() {};

/**
 * The distance covered by this step. This property may be
 * <code>undefined</code> as the distance may be unknown.
 * @type {!google.maps.Distance|undefined}
 */
google.maps.DirectionsStep.prototype.distance;

/**
 * The typical time required to perform this step in seconds and in text form.
 * This property may be <code>undefined</code> as the duration may be unknown.
 * @type {!google.maps.Duration|undefined}
 */
google.maps.DirectionsStep.prototype.duration;

/**
 * An <a
 * href="https://developers.google.com/maps/documentation/utilities/polylinealgorithm">encoded
 * polyline representation</a> of the step. This is an approximate (smoothed)
 * path of the step.
 * @type {string}
 */
google.maps.DirectionsStep.prototype.encoded_lat_lngs;

/**
 * The ending location of this step.
 * @type {!google.maps.LatLng}
 */
google.maps.DirectionsStep.prototype.end_location;

/**
 * Instructions for this step.
 * @type {string}
 */
google.maps.DirectionsStep.prototype.instructions;

/**
 * Contains the action to take for the current step (<code>turn-left</code>,
 * <code>merge</code>, <code>straight</code>, etc.). Values are subject to
 * change, and new values may be introduced without prior notice.
 * @type {string}
 */
google.maps.DirectionsStep.prototype.maneuver;

/**
 * A sequence of <code>LatLng</code>s describing the course of this step. This
 * is an approximate (smoothed) path of the step.
 * @type {!Array<!google.maps.LatLng>}
 */
google.maps.DirectionsStep.prototype.path;

/**
 * The starting location of this step.
 * @type {!google.maps.LatLng}
 */
google.maps.DirectionsStep.prototype.start_location;

/**
 * Sub-steps of this step. Specified for non-transit sections of transit routes.
 * @type {!Array<!google.maps.DirectionsStep>|undefined}
 */
google.maps.DirectionsStep.prototype.steps;

/**
 * Transit-specific details about this step. This property will be undefined
 * unless the travel mode of this step is <code>TRANSIT</code>.
 * @type {!google.maps.TransitDetails|undefined}
 */
google.maps.DirectionsStep.prototype.transit;

/**
 * Details pertaining to this step if the travel mode is <code>TRANSIT</code>.
 * @type {!google.maps.TransitDetails|undefined}
 */
google.maps.DirectionsStep.prototype.transit_details;

/**
 * The mode of travel used in this step.
 * @type {!google.maps.TravelMode}
 */
google.maps.DirectionsStep.prototype.travel_mode;

/**
 * The starting location of this step.
 * @type {!google.maps.LatLng}
 * @deprecated Please use {@link google.maps.DirectionsStep.start_location}.
 */
google.maps.DirectionsStep.prototype.start_point;

/**
 * The ending location of this step.
 * @type {!google.maps.LatLng}
 * @deprecated Please use {@link google.maps.DirectionsStep.end_location}.
 */
google.maps.DirectionsStep.prototype.end_point;

/**
 * A sequence of <code>LatLng</code>s describing the course of this step. This
 * is an approximate (smoothed) path of the step.
 * @type {!Array<!google.maps.LatLng>}
 * @deprecated Please use {@link google.maps.DirectionsStep.path}.
 */
google.maps.DirectionsStep.prototype.lat_lngs;

/**
 * Contains an object with a single property, &#39;points&#39;, that holds an <a
 * href="https://developers.google.com/maps/documentation/utilities/polylinealgorithm">encoded
 * polyline</a> representation of the step. This polyline is an approximate
 * (smoothed) path of the step.
 * @type {!google.maps.DirectionsPolyline|undefined}
 * @deprecated Please use {@link google.maps.DirectionsStep.encoded_lat_lngs}.
 */
google.maps.DirectionsStep.prototype.polyline;

/**
 * @enum {?}
 * @deprecated Deprecated as of 2011. Use {\@link
 *     mapsapi.directions.service.directionsConstants.TravelMode} instead.
 */
google.maps.DirectionsTravelMode = {};

/**
 * @enum {?}
 * @deprecated Deprecated as of 2011. Use {\@link
 *     mapsapi.directions.service.directionsConstants.UnitSystem} instead.
 */
google.maps.DirectionsUnitSystem = {};

/**
 * A <code>DirectionsWaypoint</code> represents a location between origin and
 * destination through which the trip should be routed.
 * @record
 */
google.maps.DirectionsWaypoint = function() {};

/**
 * Waypoint location. Can be an address string, a <code>LatLng</code>, or a
 * <code>Place</code>. Optional.
 * @type {string|!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.Place|undefined}
 */
google.maps.DirectionsWaypoint.prototype.location;

/**
 * If <code>true</code>, indicates that this waypoint is a stop between the
 * origin and destination. This has the effect of splitting the route into two
 * legs. If <code>false</code>, indicates that the route should be biased to go
 * through this waypoint, but not split into two legs. This is useful if you
 * want to create a route in response to the user dragging waypoints on a map.
 * @default <code>true</code>
 * @type {boolean|undefined}
 */
google.maps.DirectionsWaypoint.prototype.stopover;

/**
 * A representation of distance as a numeric value and a display string.
 * @record
 */
google.maps.Distance = function() {};

/**
 * A string representation of the distance value, using the
 * <code>UnitSystem</code> specified in the request.
 * @type {string}
 */
google.maps.Distance.prototype.text;

/**
 * The distance in meters.
 * @type {number}
 */
google.maps.Distance.prototype.value;

/**
 * The element-level status about a particular origin-destination pairing
 * returned by the <code>DistanceMatrixService</code> upon completion of a
 * distance matrix request. These values are specified as strings, for example,
 * <code>'OK'</code>.
 *
 * Access by calling `const {DistanceMatrixElementStatus} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.DistanceMatrixElementStatus = {
  /**
   * The origin and/or destination of this pairing could not be geocoded.
   */
  NOT_FOUND: 'NOT_FOUND',
  /**
   * The response contains a valid result.
   */
  OK: 'OK',
  /**
   * No route could be found between the origin and destination.
   */
  ZERO_RESULTS: 'ZERO_RESULTS',
};

/**
 * A distance matrix query sent by the <code>DistanceMatrixService</code>
 * containing arrays of origin and destination locations, and various options
 * for computing metrics.
 * @record
 */
google.maps.DistanceMatrixRequest = function() {};

/**
 * If <code>true</code>, instructs the Distance Matrix service to avoid ferries
 * where possible. Optional.
 * @type {boolean|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.avoidFerries;

/**
 * If <code>true</code>, instructs the Distance Matrix service to avoid highways
 * where possible. Optional.
 * @type {boolean|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.avoidHighways;

/**
 * If <code>true</code>, instructs the Distance Matrix service to avoid toll
 * roads where possible. Optional.
 * @type {boolean|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.avoidTolls;

/**
 * An array containing destination address strings, or <code>LatLng</code>, or
 * <code>Place</code> objects, to which to calculate distance and time.
 * Required.
 * @type {!Array<string|!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.Place>}
 */
google.maps.DistanceMatrixRequest.prototype.destinations;

/**
 * Settings that apply only to requests where <code>travelMode</code> is
 * <code>DRIVING</code>. This object will have no effect for other travel modes.
 * @type {!google.maps.DrivingOptions|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.drivingOptions;

/**
 * A language identifier for the language in which results should be returned,
 * when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.language;

/**
 * An array containing origin address strings, or <code>LatLng</code>, or
 * <code>Place</code> objects, from which to calculate distance and time.
 * Required.
 * @type {!Array<string|!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.Place>}
 */
google.maps.DistanceMatrixRequest.prototype.origins;

/**
 * Region code used as a bias for geocoding requests. The region code accepts a
 * <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.region;

/**
 * Settings that apply only to requests where <code>travelMode</code> is
 * TRANSIT. This object will have no effect for other travel modes.
 * @type {!google.maps.TransitOptions|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.transitOptions;

/**
 * Type of routing requested. Required.
 * @type {!google.maps.TravelMode}
 */
google.maps.DistanceMatrixRequest.prototype.travelMode;

/**
 * Preferred unit system to use when displaying distance. Optional; defaults to
 * metric.
 * @type {!google.maps.UnitSystem|undefined}
 */
google.maps.DistanceMatrixRequest.prototype.unitSystem;

/**
 * The response to a <code>DistanceMatrixService</code> request, consisting of
 * the formatted origin and destination addresses, and a sequence of
 * <code>DistanceMatrixResponseRow</code>s, one for each corresponding origin
 * address.
 * @record
 */
google.maps.DistanceMatrixResponse = function() {};

/**
 * The formatted destination addresses.
 * @type {!Array<string>}
 */
google.maps.DistanceMatrixResponse.prototype.destinationAddresses;

/**
 * The formatted origin addresses.
 * @type {!Array<string>}
 */
google.maps.DistanceMatrixResponse.prototype.originAddresses;

/**
 * The rows of the matrix, corresponding to the origin addresses.
 * @type {!Array<!google.maps.DistanceMatrixResponseRow>}
 */
google.maps.DistanceMatrixResponse.prototype.rows;

/**
 * A single element of a response to a <code>DistanceMatrixService</code>
 * request, which contains the duration and distance from one origin to one
 * destination.
 * @record
 */
google.maps.DistanceMatrixResponseElement = function() {};

/**
 * The distance for this origin-destination pairing. This property may be
 * undefined as the distance may be unknown.
 * @type {!google.maps.Distance}
 */
google.maps.DistanceMatrixResponseElement.prototype.distance;

/**
 * The duration for this origin-destination pairing. This property may be
 * undefined as the duration may be unknown.
 * @type {!google.maps.Duration}
 */
google.maps.DistanceMatrixResponseElement.prototype.duration;

/**
 * The duration for this origin-destination pairing, taking into account the
 * traffic conditions indicated by the <code>trafficModel</code> property. This
 * property may be <code>undefined</code> as the duration may be unknown. Only
 * available to Premium Plan customers when <code>drivingOptions</code> is
 * defined when making the request.
 * @type {!google.maps.Duration}
 */
google.maps.DistanceMatrixResponseElement.prototype.duration_in_traffic;

/**
 * The total fare for this origin-destination pairing. Only applicable to
 * transit requests.
 * @type {!google.maps.TransitFare}
 */
google.maps.DistanceMatrixResponseElement.prototype.fare;

/**
 * The status of this particular origin-destination pairing.
 * @type {!google.maps.DistanceMatrixElementStatus}
 */
google.maps.DistanceMatrixResponseElement.prototype.status;

/**
 * A row of the response to a <code>DistanceMatrixService</code> request,
 * consisting of a sequence of <code>DistanceMatrixResponseElement</code>s, one
 * for each corresponding destination address.
 * @record
 */
google.maps.DistanceMatrixResponseRow = function() {};

/**
 * The row&#39;s elements, corresponding to the destination addresses.
 * @type {!Array<!google.maps.DistanceMatrixResponseElement>}
 */
google.maps.DistanceMatrixResponseRow.prototype.elements;

/**
 * A service for computing distances between multiple origins and destinations.
 *
 * Access by calling `const {DistanceMatrixService} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.DistanceMatrixService = function() {};

/**
 * Issues a distance matrix request.
 * @param {!google.maps.DistanceMatrixRequest} request
 * @param {(function((!google.maps.DistanceMatrixResponse|null),
 *     !google.maps.DistanceMatrixStatus): void)=} callback
 * @return {!Promise<!google.maps.DistanceMatrixResponse>}
 */
google.maps.DistanceMatrixService.prototype.getDistanceMatrix = function(
    request, callback) {};

/**
 * The top-level status about the request in general returned by the
 * <code>DistanceMatrixService</code> upon completion of a distance matrix
 * request. Specify these by value, or by using the constant&#39;s name. For
 * example, <code>'OK'</code> or
 * <code>google.maps.DistanceMatrixStatus.OK</code>.
 *
 * Access by calling `const {DistanceMatrixStatus} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.DistanceMatrixStatus = {
  /**
   * The provided request was invalid.
   */
  INVALID_REQUEST: 'INVALID_REQUEST',
  /**
   * The request contains more than 25 origins, or more than 25 destinations.
   */
  MAX_DIMENSIONS_EXCEEDED: 'MAX_DIMENSIONS_EXCEEDED',
  /**
   * The product of origins and destinations exceeds the per-query limit.
   */
  MAX_ELEMENTS_EXCEEDED: 'MAX_ELEMENTS_EXCEEDED',
  /**
   * The response contains a valid result.
   */
  OK: 'OK',
  /**
   * Too many elements have been requested within the allowed time period. The
   * request should succeed if you try again after some time.
   */
  OVER_QUERY_LIMIT: 'OVER_QUERY_LIMIT',
  /**
   * The service denied use of the Distance Matrix service by your web page.
   */
  REQUEST_DENIED: 'REQUEST_DENIED',
  /**
   * A Distance Matrix request could not be processed due to a server error. The
   * request may succeed if you try again.
   */
  UNKNOWN_ERROR: 'UNKNOWN_ERROR',
};

/**
 * @record
 */
google.maps.DrawingLibrary = function() {};

/**
 * @type {typeof google.maps.drawing.DrawingManager}
 */
google.maps.DrawingLibrary.prototype.DrawingManager;

/**
 * @type {typeof google.maps.drawing.OverlayType}
 */
google.maps.DrawingLibrary.prototype.OverlayType;

/**
 * Configures the <code><a
 * href="#DirectionsRequest">DirectionsRequest</a></code> when the travel mode
 * is set to <code>DRIVING</code>.
 * @record
 */
google.maps.DrivingOptions = function() {};

/**
 * The desired departure time for the route, specified as a <code>Date</code>
 * object. The <code>Date</code> object measures time in milliseconds since 1
 * January 1970. This must be specified for a <code>DrivingOptions</code> to be
 * valid. The departure time must be set to the current time or some time in the
 * future. It cannot be in the past.
 * @type {!Date}
 */
google.maps.DrivingOptions.prototype.departureTime;

/**
 * The preferred assumption to use when predicting duration in traffic. The
 * default is <code>BEST_GUESS</code>.
 * @type {!google.maps.TrafficModel|undefined}
 */
google.maps.DrivingOptions.prototype.trafficModel;

/**
 * A representation of duration as a numeric value and a display string.
 * @record
 */
google.maps.Duration = function() {};

/**
 * A string representation of the duration value.
 * @type {string}
 */
google.maps.Duration.prototype.text;

/**
 * The duration in seconds.
 * @type {number}
 */
google.maps.Duration.prototype.value;

/**
 * @record
 */
google.maps.ElevationLibrary = function() {};

/**
 * @type {typeof google.maps.ElevationService}
 */
google.maps.ElevationLibrary.prototype.ElevationService;

/**
 * @type {typeof google.maps.ElevationStatus}
 */
google.maps.ElevationLibrary.prototype.ElevationStatus;

/**
 * The result of an <code>ElevationService</code> request, consisting of the set
 * of elevation coordinates and their elevation values. Note that a single
 * request may produce multiple <code>ElevationResult</code>s.
 * @record
 */
google.maps.ElevationResult = function() {};

/**
 * The elevation of this point on Earth, in meters above sea level.
 * @type {number}
 */
google.maps.ElevationResult.prototype.elevation;

/**
 * The location of this elevation result.
 * @type {!google.maps.LatLng|null}
 */
google.maps.ElevationResult.prototype.location;

/**
 * The distance, in meters, between sample points from which the elevation was
 * interpolated. This property will be missing if the resolution is not known.
 * Note that elevation data becomes more coarse (larger <code>resolution</code>
 * values) when multiple points are passed. To obtain the most accurate
 * elevation value for a point, it should be queried independently.
 * @type {number}
 */
google.maps.ElevationResult.prototype.resolution;

/**
 * Defines a service class that talks directly to Google servers for requesting
 * elevation data.
 *
 * Access by calling `const {ElevationService} = await
 * google.maps.importLibrary("elevation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.ElevationService = function() {};

/**
 * Makes an elevation request along a path, where the elevation data are
 * returned as distance-based samples along that path.
 * @param {!google.maps.PathElevationRequest} request
 * @param {(function((!Array<!google.maps.ElevationResult>|null),
 *     !google.maps.ElevationStatus): void)=} callback
 * @return {!Promise<!google.maps.PathElevationResponse>}
 */
google.maps.ElevationService.prototype.getElevationAlongPath = function(
    request, callback) {};

/**
 * Makes an elevation request for a list of discrete locations.
 * @param {!google.maps.LocationElevationRequest} request
 * @param {(function((!Array<!google.maps.ElevationResult>|null),
 *     !google.maps.ElevationStatus): void)=} callback
 * @return {!Promise<!google.maps.LocationElevationResponse>}
 */
google.maps.ElevationService.prototype.getElevationForLocations = function(
    request, callback) {};

/**
 * The status returned by the <code>ElevationService</code> upon completion of
 * an elevation request. Specify these by value, or by using the constant&#39;s
 * name. For example, <code>'OK'</code> or
 * <code>google.maps.ElevationStatus.OK</code>.
 *
 * Access by calling `const {ElevationStatus} = await
 * google.maps.importLibrary("elevation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.ElevationStatus = {
  /**
   * The request was invalid.
   */
  INVALID_REQUEST: 'INVALID_REQUEST',
  /**
   * The request did not encounter any errors.
   */
  OK: 'OK',
  /**
   * The webpage has gone over the requests limit in too short a period of time.
   */
  OVER_QUERY_LIMIT: 'OVER_QUERY_LIMIT',
  /**
   * The webpage is not allowed to use the elevation service.
   */
  REQUEST_DENIED: 'REQUEST_DENIED',
  /**
   * The elevation request could not be successfully processed, yet the exact
   * reason for the failure is not known.
   */
  UNKNOWN_ERROR: 'UNKNOWN_ERROR',
};

/**
 * An event with an associated Error.
 * @record
 */
google.maps.ErrorEvent = function() {};

/**
 * The Error related to the event.
 * @type {!Error}
 */
google.maps.ErrorEvent.prototype.error;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * Extra computations to perform while completing a geocoding request.
 *
 * Access by calling `const {ExtraGeocodeComputation} = await
 * google.maps.importLibrary("geocoding")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.ExtraGeocodeComputation = {
  /**
   * Generate an address descriptor.
   */
  ADDRESS_DESCRIPTORS: 'ADDRESS_DESCRIPTORS',
};

/**
 * An interface representing a vector map tile feature. These are inputs to the
 * <code>FeatureStyleFunction</code>. Do not save a reference to a particular
 * <code>Feature</code> object because the reference will not be stable.
 * @record
 */
google.maps.Feature = function() {};

/**
 * <code>FeatureType</code> of this <code>Feature</code>.
 * @type {!google.maps.FeatureType}
 */
google.maps.Feature.prototype.featureType;

/**
 * An interface representing a map layer containing features of a
 * specific {@link google.maps.FeatureType} whose style can be overridden
 * client-side, or have events attached.
 * @record
 */
google.maps.FeatureLayer = function() {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * The Dataset ID for this <code>FeatureLayer</code>. Only present if the
 * <code>featureType</code> is <code>FeatureType.DATASET</code>.
 * @type {string|undefined}
 */
google.maps.FeatureLayer.prototype.datasetId;

/**
 * The <code>FeatureType</code> associated with this <code>FeatureLayer</code>.
 * @type {!google.maps.FeatureType}
 */
google.maps.FeatureLayer.prototype.featureType;

/**
 * Whether this <code>FeatureLayer</code> is available, meaning whether
 * Data-driven styling is available for this map (there is a map ID using vector
 * tiles with this <code>FeatureLayer</code> enabled in the Google Cloud Console
 * map style.) If this is false (or becomes false), styling on this
 * <code>FeatureLayer</code> returns to default and events are not triggered.
 * @type {boolean}
 */
google.maps.FeatureLayer.prototype.isAvailable;

/**
 * The style of <code>Feature</code>s in the <code>FeatureLayer</code>. The
 * style is applied when style is set. If your style function updates, you must
 * set the style property again. A <code>FeatureStyleFunction</code> must return
 * consistent results when it is applied over the map tiles, and should be
 * optimized for performance. Asynchronous functions are not supported. If you
 * use a <code>FeatureStyleOptions</code>, all features of that layer will be
 * styled with the same <code>FeatureStyleOptions</code>. Set the style to
 * <code>null</code> to remove the previously set style. If this
 * <code>FeatureLayer</code> is not available, setting style does nothing and
 * logs an error.
 * @type {google.maps.FeatureStyleOptions|google.maps.FeatureStyleFunction|null|undefined}
 */
google.maps.FeatureLayer.prototype.style;

/**
 * Adds the given listener function to the given event name. Returns an
 * identifier for this listener that can be used with {@link
 * google.maps.event.removeListener}.
 * @param {string} eventName Observed event.
 * @param {!Function} handler Function to handle events.
 * @return {!google.maps.MapsEventListener} Resulting event listener.
 */
google.maps.FeatureLayer.prototype.addListener = function(
    eventName, handler) {};

/**
 * This object is returned from a mouse event on a <code>FeatureLayer</code>.
 * @extends {google.maps.MapMouseEvent}
 * @record
 */
google.maps.FeatureMouseEvent = function() {};

/**
 * The <code>Feature</code>s at this mouse event.
 * @type {!Array<!google.maps.Feature>}
 */
google.maps.FeatureMouseEvent.prototype.features;

/**
 * @typedef {function(!google.maps.FeatureStyleFunctionOptions):
 * (google.maps.FeatureStyleOptions|null|undefined)}
 */
google.maps.FeatureStyleFunction;

/**
 * Options passed to a <code>FeatureStyleFunction</code>.
 * @record
 */
google.maps.FeatureStyleFunctionOptions = function() {};

/**
 * <code>Feature</code> passed into the <code>FeatureStyleFunction</code> for
 * styling.
 * @type {!google.maps.Feature}
 */
google.maps.FeatureStyleFunctionOptions.prototype.feature;

/**
 * These options specify the way the style of a <code>Feature</code> should be
 * modified on a map.
 * @record
 */
google.maps.FeatureStyleOptions = function() {};

/**
 * Hex RGB string (like &quot;#00FF00&quot; for green). Only applies to polygon
 * geometries.
 * @type {string|undefined}
 */
google.maps.FeatureStyleOptions.prototype.fillColor;

/**
 * The fill opacity between 0.0 and 1.0. Only applies to polygon geometries.
 * @type {number|undefined}
 */
google.maps.FeatureStyleOptions.prototype.fillOpacity;

/**
 * Hex RGB string (like &quot;#00FF00&quot; for green).
 * @type {string|undefined}
 */
google.maps.FeatureStyleOptions.prototype.strokeColor;

/**
 * The stroke opacity between 0.0 and 1.0. Only applies to line and polygon
 * geometries.
 * @type {number|undefined}
 */
google.maps.FeatureStyleOptions.prototype.strokeOpacity;

/**
 * The stroke width in pixels. Only applies to line and polygon geometries.
 * @type {number|undefined}
 */
google.maps.FeatureStyleOptions.prototype.strokeWeight;

/**
 * Identifiers for feature types.
 *
 * Access by calling `const {FeatureType} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.FeatureType = {
  /**
   * Indicates a first-order civil entity below the country level.
   */
  ADMINISTRATIVE_AREA_LEVEL_1: 'ADMINISTRATIVE_AREA_LEVEL_1',
  /**
   * Indicates a second-order civil entity below the country level.
   */
  ADMINISTRATIVE_AREA_LEVEL_2: 'ADMINISTRATIVE_AREA_LEVEL_2',
  /**
   * Indicates the national political entity.
   */
  COUNTRY: 'COUNTRY',
  /**
   * Indicates a third-party dataset.
   */
  DATASET: 'DATASET',
  /**
   * Indicates an incorporated city or town political entity.
   */
  LOCALITY: 'LOCALITY',
  /**
   * Indicates a postal code as used to address postal mail within the country.
   * Includes zip codes.
   */
  POSTAL_CODE: 'POSTAL_CODE',
  /**
   * Indicates a school district.
   */
  SCHOOL_DISTRICT: 'SCHOOL_DISTRICT',
};

/**
 * Options for the rendering of the fullscreen control.
 * @record
 */
google.maps.FullscreenControlOptions = function() {};

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.INLINE_END_BLOCK_START}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.FullscreenControlOptions.prototype.position;

/**
 * A service for converting between an address and a <code>LatLng</code>.
 *
 * Access by calling `const {Geocoder} = await
 * google.maps.importLibrary("geocoding")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.Geocoder = function() {};

/**
 * Geocode a request.
 * @param {!google.maps.GeocoderRequest} request
 * @param {((function((!Array<!google.maps.GeocoderResult>|null),
 *     !google.maps.GeocoderStatus): void)|null)=} callback
 * @return {!Promise<!google.maps.GeocoderResponse>}
 */
google.maps.Geocoder.prototype.geocode = function(request, callback) {};

/**
 * A single address component within a <code>GeocoderResult</code>. A full
 * address may consist of multiple address components.
 * @record
 */
google.maps.GeocoderAddressComponent = function() {};

/**
 * The full text of the address component
 * @type {string}
 */
google.maps.GeocoderAddressComponent.prototype.long_name;

/**
 * The abbreviated, short text of the given address component
 * @type {string}
 */
google.maps.GeocoderAddressComponent.prototype.short_name;

/**
 * An array of strings denoting the type of this address component. A list of
 * valid types can be found <a
 * href="https://developers.google.com/maps/documentation/javascript/geocoding#GeocodingAddressTypes">here</a>
 * @type {!Array<string>}
 */
google.maps.GeocoderAddressComponent.prototype.types;

/**
 * <code>GeocoderComponentRestrictions</code> represents a set of filters that
 * resolve to a specific area. For details on how this works, see <a
 * href="https://developers.google.com/maps/documentation/javascript/geocoding#ComponentFiltering">
 * Geocoding Component Filtering</a>.
 * @record
 */
google.maps.GeocoderComponentRestrictions = function() {};

/**
 * Matches all the <code>administrative_area levels</code>. Optional.
 * @type {string|undefined}
 */
google.maps.GeocoderComponentRestrictions.prototype.administrativeArea;

/**
 * Matches a country name or a two letter ISO 3166-1 country code. Optional.
 * @type {string|undefined}
 */
google.maps.GeocoderComponentRestrictions.prototype.country;

/**
 * Matches against both <code>locality</code> and <code>sublocality</code>
 * types. Optional.
 * @type {string|undefined}
 */
google.maps.GeocoderComponentRestrictions.prototype.locality;

/**
 * Matches <code>postal_code</code> and <code>postal_code_prefix</code>.
 * Optional.
 * @type {string|undefined}
 */
google.maps.GeocoderComponentRestrictions.prototype.postalCode;

/**
 * Matches the long or short name of a <code>route</code>. Optional.
 * @type {string|undefined}
 */
google.maps.GeocoderComponentRestrictions.prototype.route;

/**
 * Geometry information about this <code>GeocoderResult</code>
 * @record
 */
google.maps.GeocoderGeometry = function() {};

/**
 * The precise bounds of this <code>GeocoderResult</code>, if applicable
 * @type {!google.maps.LatLngBounds|undefined}
 */
google.maps.GeocoderGeometry.prototype.bounds;

/**
 * The latitude/longitude coordinates of this result
 * @type {!google.maps.LatLng}
 */
google.maps.GeocoderGeometry.prototype.location;

/**
 * The type of location returned in <code>location</code>
 * @type {!google.maps.GeocoderLocationType}
 */
google.maps.GeocoderGeometry.prototype.location_type;

/**
 * The bounds of the recommended viewport for displaying this
 * <code>GeocoderResult</code>
 * @type {!google.maps.LatLngBounds}
 */
google.maps.GeocoderGeometry.prototype.viewport;

/**
 * Describes the type of location returned from a geocode. Specify these by
 * value, or by using the constant&#39;s name. For example,
 * <code>'ROOFTOP'</code> or
 * <code>google.maps.GeocoderLocationType.ROOFTOP</code>.
 *
 * Access by calling `const {GeocoderLocationType} = await
 * google.maps.importLibrary("geocoding")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.GeocoderLocationType = {
  /**
   * The returned result is approximate.
   */
  APPROXIMATE: 'APPROXIMATE',
  /**
   * The returned result is the geometric center of a result such a line (e.g.
   * street) or polygon (region).
   */
  GEOMETRIC_CENTER: 'GEOMETRIC_CENTER',
  /**
   * The returned result reflects an approximation (usually on a road)
   * interpolated between two precise points (such as intersections).
   * Interpolated results are generally returned when rooftop geocodes are
   * unavailable for a street address.
   */
  RANGE_INTERPOLATED: 'RANGE_INTERPOLATED',
  /**
   * The returned result reflects a precise geocode.
   */
  ROOFTOP: 'ROOFTOP',
};

/**
 * The specification for a geocoding request to be sent to the
 * <code>Geocoder</code>.
 * @record
 */
google.maps.GeocoderRequest = function() {};

/**
 * Address to geocode. One, and only one, of <code>address</code>,
 * <code>location</code> and <code>placeId</code> must be supplied.
 * @type {string|null|undefined}
 */
google.maps.GeocoderRequest.prototype.address;

/**
 * <code>LatLngBounds</code> within which to search. Optional.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.GeocoderRequest.prototype.bounds;

/**
 * Components are used to restrict results to a specific area. A filter consists
 * of one or more of: <code>route</code>, <code>locality</code>,
 * <code>administrativeArea</code>, <code>postalCode</code>,
 * <code>country</code>. Only the results that match all the filters will be
 * returned. Filter values support the same methods of spelling correction and
 * partial matching as other geocoding requests. Optional.
 * @type {!google.maps.GeocoderComponentRestrictions|null|undefined}
 */
google.maps.GeocoderRequest.prototype.componentRestrictions;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * A list of extra computations which may be used to complete the request. Note:
 * These extra computations may return extra fields on the response.
 * @type {!Array<!google.maps.ExtraGeocodeComputation>|undefined}
 */
google.maps.GeocoderRequest.prototype.extraComputations;

/**
 * Fulfill the promise on a ZERO_RESULT status in the response. This may be
 * desired because even with zero geocoding results there may still be
 * additional response level fields returned.
 * @type {boolean|null|undefined}
 */
google.maps.GeocoderRequest.prototype.fulfillOnZeroResults;

/**
 * A language identifier for the language in which results should be returned,
 * when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.GeocoderRequest.prototype.language;

/**
 * <code>LatLng</code> (or <code>LatLngLiteral</code>) for which to search. The
 * geocoder performs a reverse geocode. See <a
 * href="https://developers.google.com/maps/documentation/javascript/geocoding#ReverseGeocoding">
 * Reverse Geocoding</a> for more information. One, and only one, of
 * <code>address</code>, <code>location</code> and <code>placeId</code> must be
 * supplied.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.GeocoderRequest.prototype.location;

/**
 * The place ID associated with the location. Place IDs uniquely identify a
 * place in the Google Places database and on Google Maps. Learn more about <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-id">place
 * IDs</a> in the Places API developer guide. The geocoder performs a reverse
 * geocode. See <a
 * href="https://developers.google.com/maps/documentation/javascript/geocoding#ReverseGeocoding">Reverse
 * Geocoding</a> for more information. One, and only one, of
 * <code>address</code>, <code>location</code> and <code>placeId</code> must be
 * supplied.
 * @type {string|null|undefined}
 */
google.maps.GeocoderRequest.prototype.placeId;

/**
 * Country code used to bias the search, specified as a two-character
 * (non-numeric) Unicode region subtag / CLDR identifier. Optional. See <a
 * href="http://developers.google.com/maps/coverage">Google Maps Platform
 * Coverage Details</a> for supported regions.
 * @type {string|null|undefined}
 */
google.maps.GeocoderRequest.prototype.region;

/**
 * A Geocoder response returned by the {@link google.maps.Geocoder} containing
 * the list of {@link google.maps.GeocoderResult}s.
 * @record
 */
google.maps.GeocoderResponse = function() {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * A relational description of a location. Includes a ranked set of nearby
 * landmarks and the areas containing the target location. It is only populated
 * for reverse geocoding requests and only when {@link
 * google.maps.ExtraGeocodeComputation.ADDRESS_DESCRIPTORS} is enabled.
 * @type {!google.maps.AddressDescriptor|null|undefined}
 */
google.maps.GeocoderResponse.prototype.address_descriptor;

/**
 * The plus code associated with the location.
 * @type {!google.maps.places.PlacePlusCode|null|undefined}
 */
google.maps.GeocoderResponse.prototype.plus_code;

/**
 * The list of {@link google.maps.GeocoderResult}s.
 * @type {!Array<!google.maps.GeocoderResult>}
 */
google.maps.GeocoderResponse.prototype.results;

/**
 * A single geocoder result retrieved from the geocode server. A geocode request
 * may return multiple result objects. Note that though this result is
 * &quot;JSON-like,&quot; it is not strictly JSON, as it indirectly includes a
 * <code>LatLng</code> object.
 * @record
 */
google.maps.GeocoderResult = function() {};

/**
 * An array of <code>GeocoderAddressComponent</code>s
 * @type {!Array<!google.maps.GeocoderAddressComponent>}
 */
google.maps.GeocoderResult.prototype.address_components;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * A relational description of the location associated with this geocode.
 * Includes a ranked set of nearby landmarks and the areas containing the target
 * location. This will only be populated for forward geocoding and place ID
 * lookup requests, only when {@link
 * google.maps.ExtraGeocodeComputation.ADDRESS_DESCRIPTORS} is enabled, and only
 * for certain localized places.
 * @type {!google.maps.AddressDescriptor|undefined}
 */
google.maps.GeocoderResult.prototype.address_descriptor;

/**
 * A string containing the human-readable address of this location.
 * @type {string}
 */
google.maps.GeocoderResult.prototype.formatted_address;

/**
 * A <code>GeocoderGeometry</code> object
 * @type {!google.maps.GeocoderGeometry}
 */
google.maps.GeocoderResult.prototype.geometry;

/**
 * Whether the geocoder did not return an exact match for the original request,
 * though it was able to match part of the requested address. If an exact match,
 * the value will be <code>undefined</code>.
 * @type {boolean|undefined}
 */
google.maps.GeocoderResult.prototype.partial_match;

/**
 * The place ID associated with the location. Place IDs uniquely identify a
 * place in the Google Places database and on Google Maps. Learn more about <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-id">Place
 * IDs</a> in the Places API developer guide.
 * @type {string}
 */
google.maps.GeocoderResult.prototype.place_id;

/**
 * The plus code associated with the location.
 * @type {!google.maps.places.PlacePlusCode|undefined}
 */
google.maps.GeocoderResult.prototype.plus_code;

/**
 * An array of strings denoting all the localities contained in a postal code.
 * This is only present when the result is a postal code that contains multiple
 * localities.
 * @type {!Array<string>|undefined}
 */
google.maps.GeocoderResult.prototype.postcode_localities;

/**
 * An array of strings denoting the type of the returned geocoded element. For a
 * list of possible strings, refer to the <a href=
 * "https://developers.google.com/maps/documentation/javascript/geocoding#GeocodingAddressTypes">
 * Address Component Types</a> section of the Developer&#39;s Guide.
 * @type {!Array<string>}
 */
google.maps.GeocoderResult.prototype.types;

/**
 * The status returned by the <code>Geocoder</code> on the completion of a call
 * to <code>geocode()</code>. Specify these by value, or by using the
 * constant&#39;s name. For example, <code>'OK'</code> or
 * <code>google.maps.GeocoderStatus.OK</code>.
 *
 * Access by calling `const {GeocoderStatus} = await
 * google.maps.importLibrary("geocoding")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.GeocoderStatus = {
  /**
   * There was a problem contacting the Google servers.
   */
  ERROR: 'ERROR',
  /**
   * This <code>GeocoderRequest</code> was invalid.
   */
  INVALID_REQUEST: 'INVALID_REQUEST',
  /**
   * The response contains a valid <code>GeocoderResponse</code>.
   */
  OK: 'OK',
  /**
   * The webpage has gone over the requests limit in too short a period of time.
   */
  OVER_QUERY_LIMIT: 'OVER_QUERY_LIMIT',
  /**
   * The webpage is not allowed to use the geocoder.
   */
  REQUEST_DENIED: 'REQUEST_DENIED',
  /**
   * A geocoding request could not be processed due to a server error. The
   * request may succeed if you try again.
   */
  UNKNOWN_ERROR: 'UNKNOWN_ERROR',
  /**
   * No result was found for this <code>GeocoderRequest</code>.
   */
  ZERO_RESULTS: 'ZERO_RESULTS',
};

/**
 * @record
 */
google.maps.GeocodingLibrary = function() {};

/**
 * @type {typeof google.maps.Containment}
 */
google.maps.GeocodingLibrary.prototype.Containment;

/**
 * @type {typeof google.maps.ExtraGeocodeComputation}
 */
google.maps.GeocodingLibrary.prototype.ExtraGeocodeComputation;

/**
 * @type {typeof google.maps.Geocoder}
 */
google.maps.GeocodingLibrary.prototype.Geocoder;

/**
 * @type {typeof google.maps.GeocoderLocationType}
 */
google.maps.GeocodingLibrary.prototype.GeocoderLocationType;

/**
 * @type {typeof google.maps.GeocoderStatus}
 */
google.maps.GeocodingLibrary.prototype.GeocoderStatus;

/**
 * @type {typeof google.maps.SpatialRelationship}
 */
google.maps.GeocodingLibrary.prototype.SpatialRelationship;

/**
 * @record
 */
google.maps.GeometryLibrary = function() {};

/**
 * @type {typeof google.maps.geometry.encoding}
 */
google.maps.GeometryLibrary.prototype.encoding;

/**
 * @type {typeof google.maps.geometry.poly}
 */
google.maps.GeometryLibrary.prototype.poly;

/**
 * @type {typeof google.maps.geometry.spherical}
 */
google.maps.GeometryLibrary.prototype.spherical;

/**
 * A rectangular image overlay on the map.
 *
 * Access by calling `const {GroundOverlay} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {string} url
 * @param {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral} bounds
 * @param {google.maps.GroundOverlayOptions=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.GroundOverlay = function(url, bounds, opts) {};

/**
 * Gets the <code>LatLngBounds</code> of this overlay.
 * @return {google.maps.LatLngBounds}
 */
google.maps.GroundOverlay.prototype.getBounds = function() {};

/**
 * Returns the map on which this ground overlay is displayed.
 * @return {google.maps.Map}
 */
google.maps.GroundOverlay.prototype.getMap = function() {};

/**
 * Returns the opacity of this ground overlay.
 * @return {number}
 */
google.maps.GroundOverlay.prototype.getOpacity = function() {};

/**
 * Gets the url of the projected image.
 * @return {string}
 */
google.maps.GroundOverlay.prototype.getUrl = function() {};

/**
 * Renders the ground overlay on the specified map. If map is set to
 * <code>null</code>, the overlay is removed.
 * @param {google.maps.Map} map
 * @return {undefined}
 */
google.maps.GroundOverlay.prototype.setMap = function(map) {};

/**
 * Sets the opacity of this ground overlay.
 * @param {number} opacity
 * @return {undefined}
 */
google.maps.GroundOverlay.prototype.setOpacity = function(opacity) {};

/**
 * This object defines the properties that can be set on a
 * <code>GroundOverlay</code> object.
 * @record
 */
google.maps.GroundOverlayOptions = function() {};

/**
 * If <code>true</code>, the ground overlay can receive mouse events.
 * @type {boolean|null|undefined}
 */
google.maps.GroundOverlayOptions.prototype.clickable;

/**
 * The map on which to display the overlay.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.GroundOverlayOptions.prototype.map;

/**
 * The opacity of the overlay, expressed as a number between 0 and 1. Optional.
 * @default <code>1.0</code>
 * @type {number|null|undefined}
 */
google.maps.GroundOverlayOptions.prototype.opacity;

/**
 * A structure representing a Marker icon image.
 * @record
 */
google.maps.Icon = function() {};

/**
 * The position at which to anchor an image in correspondence to the location of
 * the marker on the map. By default, the anchor is located along the center
 * point of the bottom of the image.
 * @type {!google.maps.Point|null|undefined}
 */
google.maps.Icon.prototype.anchor;

/**
 * The origin of the label relative to the top-left corner of the icon image, if
 * a label is supplied by the marker. By default, the origin is located in the
 * center point of the image.
 * @type {!google.maps.Point|null|undefined}
 */
google.maps.Icon.prototype.labelOrigin;

/**
 * The position of the image within a sprite, if any. By default, the origin is
 * located at the top left corner of the image <code>(0, 0)</code>.
 * @type {!google.maps.Point|null|undefined}
 */
google.maps.Icon.prototype.origin;

/**
 * The size of the entire image after scaling, if any. Use this property to
 * stretch/shrink an image or a sprite.
 * @type {!google.maps.Size|null|undefined}
 */
google.maps.Icon.prototype.scaledSize;

/**
 * The display size of the sprite or image. When using sprites, you must specify
 * the sprite size. If the size is not provided, it will be set when the image
 * loads.
 * @type {!google.maps.Size|null|undefined}
 */
google.maps.Icon.prototype.size;

/**
 * The URL of the image or sprite sheet.
 * @type {string}
 */
google.maps.Icon.prototype.url;

/**
 * This object is sent in an event when a user clicks on an icon on the map. The
 * place ID of this place is stored in the placeId member. To prevent the
 * default info window from showing up, call the stop() method on this event to
 * prevent it being propagated. Learn more about <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-id">place
 * IDs</a> in the Places API developer guide.
 * @extends {google.maps.MapMouseEvent}
 * @record
 */
google.maps.IconMouseEvent = function() {};

/**
 * The place ID of the place that was clicked. This place ID can be used to
 * query more information about the feature that was clicked. <p> Learn more
 * about <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-id">place
 * IDs</a> in the Places API developer guide.
 * @type {string|null}
 */
google.maps.IconMouseEvent.prototype.placeId;

/**
 * Describes how icons are to be rendered on a line. <br><br> If your polyline
 * is geodesic, then the distances specified for both offset and repeat are
 * calculated in meters by default. Setting either offset or repeat to a pixel
 * value will cause the distances to be calculated in pixels on the screen.
 * @record
 */
google.maps.IconSequence = function() {};

/**
 * If <code>true</code>, each icon in the sequence has the same fixed rotation
 * regardless of the angle of the edge on which it lies. If <code>false</code>,
 * case each icon in the sequence is rotated to align with its edge.
 * @default <code>false</code>
 * @type {boolean|undefined}
 */
google.maps.IconSequence.prototype.fixedRotation;

/**
 * The icon to render on the line.
 * @type {!google.maps.Symbol|null|undefined}
 */
google.maps.IconSequence.prototype.icon;

/**
 * The distance from the start of the line at which an icon is to be rendered.
 * This distance may be expressed as a percentage of line&#39;s length (e.g.
 * &#39;50%&#39;) or in pixels (e.g. &#39;50px&#39;).
 * @default <code>&#39;100%&#39;</code>
 * @type {string|undefined}
 */
google.maps.IconSequence.prototype.offset;

/**
 * The distance between consecutive icons on the line. This distance may be
 * expressed as a percentage of the line&#39;s length (e.g. &#39;50%&#39;) or in
 * pixels (e.g. &#39;50px&#39;). To disable repeating of the icon, specify
 * &#39;0&#39;.
 * @default <code>0</code>
 * @type {string|undefined}
 */
google.maps.IconSequence.prototype.repeat;

/**
 * This class implements the MapType interface and is provided for rendering
 * image tiles.
 *
 * Access by calling `const {ImageMapType} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.ImageMapTypeOptions} opts
 * @implements {google.maps.MapType}
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.ImageMapType = function(opts) {};

/**
 * @type {?string}
 */
google.maps.ImageMapType.prototype.alt;

/**
 * @type {number}
 */
google.maps.ImageMapType.prototype.maxZoom;

/**
 * @type {number}
 */
google.maps.ImageMapType.prototype.minZoom;

/**
 * @type {?string}
 */
google.maps.ImageMapType.prototype.name;

/**
 * @type {google.maps.Projection}
 */
google.maps.ImageMapType.prototype.projection;

/**
 * @type {number}
 */
google.maps.ImageMapType.prototype.radius;

/**
 * @type {google.maps.Size}
 */
google.maps.ImageMapType.prototype.tileSize;

/**
 * Returns the opacity level (<code>0</code> (transparent) to <code>1.0</code>)
 * of the <code>ImageMapType</code> tiles.
 * @return {number} opacity The current opacity.
 */
google.maps.ImageMapType.prototype.getOpacity = function() {};

/**
 * @param {google.maps.Point} tileCoord Tile coordinates.
 * @param {number} zoom Tile zoom.
 * @param {Document} ownerDocument The document which owns this tile.
 * @return {?Element} Resulting tile.
 * @override
 */
google.maps.ImageMapType.prototype.getTile = function(
    tileCoord, zoom, ownerDocument) {};

/**
 * @param {?Element} tileDiv Tile to release.
 * @return {undefined}
 * @override
 */
google.maps.ImageMapType.prototype.releaseTile = function(tileDiv) {};

/**
 * Sets the opacity level (<code>0</code> (transparent) to <code>1.0</code>) of
 * the <code>ImageMapType</code> tiles.
 * @param {number} opacity The new opacity.
 * @return {undefined}
 */
google.maps.ImageMapType.prototype.setOpacity = function(opacity) {};

/**
 * This class is used to create a MapType that renders image tiles.
 * @record
 */
google.maps.ImageMapTypeOptions = function() {};

/**
 * Alt text to display when this MapType&#39;s button is hovered over in the
 * MapTypeControl.
 * @type {string|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.alt;

/**
 * Returns a string (URL) for given tile coordinate (x, y) and zoom level.
 * @type {(function(!google.maps.Point, number): (string|null))|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.getTileUrl;

/**
 * The maximum zoom level for the map when displaying this MapType.
 * @type {number|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.maxZoom;

/**
 * The minimum zoom level for the map when displaying this MapType. Optional.
 * @type {number|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.minZoom;

/**
 * Name to display in the MapTypeControl.
 * @type {string|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.name;

/**
 * The opacity to apply to the tiles. The opacity should be specified as a float
 * value between 0 and 1.0, where 0 is fully transparent and 1 is fully opaque.
 * @type {number|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.opacity;

/**
 * The tile size.
 * @type {!google.maps.Size|null|undefined}
 */
google.maps.ImageMapTypeOptions.prototype.tileSize;

/**
 * An overlay that looks like a bubble and is often connected to a marker.
 *
 * Access by calling `const {InfoWindow} = await
 * google.maps.importLibrary("maps")` or `const {InfoWindow} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {(!google.maps.InfoWindowOptions|null)=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.InfoWindow = function(opts) {};

/**
 * Checks if the InfoWindow is open.
 * @type {boolean}
 */
google.maps.InfoWindow.prototype.isOpen;

/**
 * Closes this InfoWindow by removing it from the DOM structure.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.close = function() {};

/**
 * Sets focus on this <code>InfoWindow</code>. You may wish to consider using
 * this method along with a <code>visible</code> event to make sure that
 * <code>InfoWindow</code> is visible before setting focus on it. An
 * <code>InfoWindow</code> that is not visible cannot be focused.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.focus = function() {};

/**
 * @return {string|!Element|!Text|null|undefined} The content of this
 *     InfoWindow. The same as what was previously set as the content.
 */
google.maps.InfoWindow.prototype.getContent = function() {};

/**
 * @return {string|!Element|!Text|null|undefined} The header content of this
 *     InfoWindow. See {@link google.maps.InfoWindowOptions.headerContent}.
 */
google.maps.InfoWindow.prototype.getHeaderContent = function() {};

/**
 * @return {boolean|undefined} Whether the whole header row is disabled or not.
 *     See {@link google.maps.InfoWindowOptions.headerDisabled}.
 */
google.maps.InfoWindow.prototype.getHeaderDisabled = function() {};

/**
 * @return {!google.maps.LatLng|null|undefined} The LatLng position of this
 *     InfoWindow.
 */
google.maps.InfoWindow.prototype.getPosition = function() {};

/**
 * @return {number} The zIndex of this InfoWindow.
 */
google.maps.InfoWindow.prototype.getZIndex = function() {};

/**
 * Opens this InfoWindow on the given map. Optionally, an InfoWindow can be
 * associated with an anchor. In the core API, the only anchor is the Marker
 * class. However, an anchor can be any MVCObject that exposes a LatLng
 * <code>position</code> property and optionally a Point
 * <code>anchorPoint</code> property for calculating the
 * <code>pixelOffset</code> (see InfoWindowOptions). The
 * <code>anchorPoint</code> is the offset from the anchor&#39;s position to the
 * tip of the InfoWindow. It is recommended to use the {@link
 * google.maps.InfoWindowOpenOptions} interface as the single argument for this
 * method. To prevent changing browser focus on open, set {@link
 * google.maps.InfoWindowOpenOptions.shouldFocus} to <code>false</code>.
 * @param {(!google.maps.InfoWindowOpenOptions|!google.maps.Map|!google.maps.StreetViewPanorama|null)=}
 *     options Either an InfoWindowOpenOptions object (recommended) or the
 *     map|panorama on which to render this InfoWindow.
 * @param {(!google.maps.MVCObject|!google.maps.marker.AdvancedMarkerElement|null)=}
 *     anchor The anchor to which this InfoWindow will be positioned. If the
 *     anchor is non-null, the InfoWindow will be positioned at the top-center
 *     of the anchor. The InfoWindow will be rendered on the same map or
 *     panorama as the anchor <strong>(when available)</strong>.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.open = function(options, anchor) {};

/**
 * @param {(string|!Element|!Text|null)=} content The content to be displayed by
 *     this InfoWindow.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.setContent = function(content) {};

/**
 * @param {(string|!Element|!Text|null)=} headerContent The header content to be
 *     displayed by this InfoWindow. See {@link
 *     google.maps.InfoWindowOptions.headerContent}.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.setHeaderContent = function(headerContent) {};

/**
 * @param {(boolean|null)=} headerDisabled Specifies whether to disable the
 *     whole header row. See {@link
 *     google.maps.InfoWindowOptions.headerDisabled}.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.setHeaderDisabled = function(
    headerDisabled) {};

/**
 * @param {(!google.maps.InfoWindowOptions|null)=} options
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.setOptions = function(options) {};

/**
 * @param {(!google.maps.LatLng|!google.maps.LatLngLiteral|null)=} position The
 *     LatLng position at which to display this InfoWindow.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.setPosition = function(position) {};

/**
 * @param {number} zIndex The z-index for this InfoWindow. An InfoWindow with a
 *     greater z-index will be displayed in front of all other InfoWindows with
 *     a lower z-index.
 * @return {undefined}
 */
google.maps.InfoWindow.prototype.setZIndex = function(zIndex) {};

/**
 * Options for opening an InfoWindow
 * @record
 */
google.maps.InfoWindowOpenOptions = function() {};

/**
 * The anchor to which this InfoWindow will be positioned. If the anchor is
 * non-null, the InfoWindow will be positioned at the top-center of the anchor.
 * The InfoWindow will be rendered on the same map or panorama as the anchor
 * <strong>(when available)</strong>.
 * @type {!google.maps.MVCObject|!google.maps.marker.AdvancedMarkerElement|null|undefined}
 */
google.maps.InfoWindowOpenOptions.prototype.anchor;

/**
 * The map or panorama on which to render this InfoWindow.
 * @type {!google.maps.Map|!google.maps.StreetViewPanorama|null|undefined}
 */
google.maps.InfoWindowOpenOptions.prototype.map;

/**
 * Whether or not focus should be moved inside the InfoWindow when it is opened.
 * When this property is unset or when it is set to <code>null</code> or
 * <code>undefined</code>, a heuristic is used to decide whether or not focus
 * should be moved. It is recommended to explicitly set this property to fit
 * your needs as the heuristic is subject to change and may not work well for
 * all use cases.
 * @type {boolean|null|undefined}
 */
google.maps.InfoWindowOpenOptions.prototype.shouldFocus;

/**
 * InfoWindowOptions object used to define the properties that can be set on a
 * InfoWindow.
 * @record
 */
google.maps.InfoWindowOptions = function() {};

/**
 * AriaLabel to assign to the InfoWindow.
 * @type {string|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.ariaLabel;

/**
 * Content to display in the InfoWindow. This can be an HTML element, a
 * plain-text string, or a string containing HTML. The InfoWindow will be sized
 * according to the content. To set an explicit size for the content, set
 * content to be a HTML element with that size.
 * @type {string|!Element|!Text|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.content;

/**
 * Disable panning the map to make the InfoWindow fully visible when it opens.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.disableAutoPan;

/**
 * The content to display in the InfoWindow header row. This can be an HTML
 * element, or a string of plain text. The InfoWindow will be sized according to
 * the content. To set an explicit size for the header content, set
 * headerContent to be a HTML element with that size.
 * @type {string|!Element|!Text|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.headerContent;

/**
 * Disables the whole header row in the InfoWindow. When set to true, the header
 * will be removed so that the header content and the close button will be
 * hidden.
 * @type {boolean|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.headerDisabled;

/**
 * Maximum width of the InfoWindow, regardless of content&#39;s width. This
 * value is only considered if it is set before a call to <code>open()</code>.
 * To change the maximum width when changing content, call <code>close()</code>,
 * <code>setOptions()</code>, and then <code>open()</code>.
 * @type {number|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.maxWidth;

/**
 * Minimum width of the InfoWindow, regardless of the content&#39;s width. When
 * using this property, it is strongly recommended to set the
 * <code>minWidth</code> to a value less than the width of the map (in pixels).
 * This value is only considered if it is set before a call to
 * <code>open()</code>. To change the minimum width when changing content, call
 * <code>close()</code>, <code>setOptions()</code>, and then
 * <code>open()</code>.
 * @type {number|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.minWidth;

/**
 * The offset, in pixels, of the tip of the info window from the point on the
 * map at whose geographical coordinates the info window is anchored. If an
 * InfoWindow is opened with an anchor, the <code>pixelOffset</code> will be
 * calculated from the anchor&#39;s <code>anchorPoint</code> property.
 * @type {!google.maps.Size|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.pixelOffset;

/**
 * The LatLng at which to display this InfoWindow. If the InfoWindow is opened
 * with an anchor, the anchor&#39;s position will be used instead.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.position;

/**
 * All InfoWindows are displayed on the map in order of their zIndex, with
 * higher values displaying in front of InfoWindows with lower values. By
 * default, InfoWindows are displayed according to their latitude, with
 * InfoWindows of lower latitudes appearing in front of InfoWindows at higher
 * latitudes. InfoWindows are always displayed in front of markers.
 * @type {number|null|undefined}
 */
google.maps.InfoWindowOptions.prototype.zIndex;

/**
 * @record
 */
google.maps.JourneySharingLibrary = function() {};

/**
 * @type {typeof google.maps.journeySharing.AutomaticViewportMode}
 */
google.maps.JourneySharingLibrary.prototype.AutomaticViewportMode;

/**
 * @type {typeof google.maps.journeySharing.DeliveryVehicleStopState}
 */
google.maps.JourneySharingLibrary.prototype.DeliveryVehicleStopState;

/**
 * @type {typeof
 *     google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider}
 */
google.maps.JourneySharingLibrary.prototype
    .FleetEngineDeliveryFleetLocationProvider;

/**
 * @type {typeof
 *     google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider}
 */
google.maps.JourneySharingLibrary.prototype
    .FleetEngineDeliveryVehicleLocationProvider;

/**
 * @type {typeof google.maps.journeySharing.FleetEngineFleetLocationProvider}
 */
google.maps.JourneySharingLibrary.prototype.FleetEngineFleetLocationProvider;

/**
 * @type {typeof google.maps.journeySharing.FleetEngineServiceType}
 */
google.maps.JourneySharingLibrary.prototype.FleetEngineServiceType;

/**
 * @type {typeof google.maps.journeySharing.FleetEngineShipmentLocationProvider}
 */
google.maps.JourneySharingLibrary.prototype.FleetEngineShipmentLocationProvider;

/**
 * @type {typeof google.maps.journeySharing.FleetEngineTripLocationProvider}
 */
google.maps.JourneySharingLibrary.prototype.FleetEngineTripLocationProvider;

/**
 * @type {typeof google.maps.journeySharing.FleetEngineVehicleLocationProvider}
 */
google.maps.JourneySharingLibrary.prototype.FleetEngineVehicleLocationProvider;

/**
 * @type {typeof google.maps.journeySharing.JourneySharingMapView}
 */
google.maps.JourneySharingLibrary.prototype.JourneySharingMapView;

/**
 * @type {typeof google.maps.journeySharing.Speed}
 */
google.maps.JourneySharingLibrary.prototype.Speed;

/**
 * @type {typeof google.maps.journeySharing.TripType}
 */
google.maps.JourneySharingLibrary.prototype.TripType;

/**
 * @type {typeof google.maps.journeySharing.VehicleNavigationStatus}
 */
google.maps.JourneySharingLibrary.prototype.VehicleNavigationStatus;

/**
 * @type {typeof google.maps.journeySharing.VehicleState}
 */
google.maps.JourneySharingLibrary.prototype.VehicleState;

/**
 * @type {typeof google.maps.journeySharing.VehicleType}
 */
google.maps.JourneySharingLibrary.prototype.VehicleType;

/**
 * @type {typeof google.maps.journeySharing.WaypointType}
 */
google.maps.JourneySharingLibrary.prototype.WaypointType;

/**
 * Contains details of the author of a KML document or feature.
 * @record
 */
google.maps.KmlAuthor = function() {};

/**
 * The author&#39;s e-mail address, or an empty string if not specified.
 * @type {string}
 */
google.maps.KmlAuthor.prototype.email;

/**
 * The author&#39;s name, or an empty string if not specified.
 * @type {string}
 */
google.maps.KmlAuthor.prototype.name;

/**
 * The author&#39;s home page, or an empty string if not specified.
 * @type {string}
 */
google.maps.KmlAuthor.prototype.uri;

/**
 * Data for a single KML feature in JSON format, returned when a KML feature is
 * clicked. The data contained in this object mirrors that associated with the
 * feature in the KML or GeoRSS markup in which it is declared.
 * @record
 */
google.maps.KmlFeatureData = function() {};

/**
 * The feature&#39;s <code>&lt;atom:author&gt;</code>, extracted from the layer
 * markup (if specified).
 * @type {!google.maps.KmlAuthor}
 */
google.maps.KmlFeatureData.prototype.author;

/**
 * The feature&#39;s <code>&lt;description&gt;</code>, extracted from the layer
 * markup.
 * @type {string}
 */
google.maps.KmlFeatureData.prototype.description;

/**
 * The feature&#39;s <code>&lt;id&gt;</code>, extracted from the layer markup.
 * If no <code>&lt;id&gt;</code> has been specified, a unique ID will be
 * generated for this feature.
 * @type {string}
 */
google.maps.KmlFeatureData.prototype.id;

/**
 * The feature&#39;s balloon styled text, if set.
 * @type {string}
 */
google.maps.KmlFeatureData.prototype.infoWindowHtml;

/**
 * The feature&#39;s <code>&lt;name&gt;</code>, extracted from the layer markup.
 * @type {string}
 */
google.maps.KmlFeatureData.prototype.name;

/**
 * The feature&#39;s <code>&lt;Snippet&gt;</code>, extracted from the layer
 * markup.
 * @type {string}
 */
google.maps.KmlFeatureData.prototype.snippet;

/**
 * A <code>KmlLayer</code> adds geographic markup to the map from a KML, KMZ or
 * GeoRSS file that is hosted on a publicly accessible web server. A
 * <code>KmlFeatureData</code> object is provided for each feature when clicked.
 *
 * Access by calling `const {KmlLayer} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.KmlLayerOptions=} opts Options for this layer.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.KmlLayer = function(opts) {};

/**
 * Get the default viewport for the layer being displayed.
 * @return {google.maps.LatLngBounds}
 */
google.maps.KmlLayer.prototype.getDefaultViewport = function() {};

/**
 * Get the map on which the KML Layer is being rendered.
 * @return {google.maps.Map}
 */
google.maps.KmlLayer.prototype.getMap = function() {};

/**
 * Get the metadata associated with this layer, as specified in the layer
 * markup.
 * @return {google.maps.KmlLayerMetadata}
 */
google.maps.KmlLayer.prototype.getMetadata = function() {};

/**
 * Get the status of the layer, set once the requested document has loaded.
 * @return {google.maps.KmlLayerStatus}
 */
google.maps.KmlLayer.prototype.getStatus = function() {};

/**
 * Gets the URL of the KML file being displayed.
 * @return {string} URL
 */
google.maps.KmlLayer.prototype.getUrl = function() {};

/**
 * Gets the z-index of the KML Layer.
 * @return {number} The z-index.
 */
google.maps.KmlLayer.prototype.getZIndex = function() {};

/**
 * Renders the KML Layer on the specified map. If map is set to
 * <code>null</code>, the layer is removed.
 * @param {google.maps.Map} map
 * @return {undefined}
 */
google.maps.KmlLayer.prototype.setMap = function(map) {};

/**
 * @param {google.maps.KmlLayerOptions} options
 * @return {undefined}
 */
google.maps.KmlLayer.prototype.setOptions = function(options) {};

/**
 * Sets the URL of the KML file to display.
 * @param {string} url
 * @return {undefined}
 */
google.maps.KmlLayer.prototype.setUrl = function(url) {};

/**
 * Sets the z-index of the KML Layer.
 * @param {number} zIndex The z-index to set.
 * @return {undefined}
 */
google.maps.KmlLayer.prototype.setZIndex = function(zIndex) {};

/**
 * Metadata for a single KML layer, in JSON format.
 * @record
 */
google.maps.KmlLayerMetadata = function() {};

/**
 * The layer&#39;s <code>&lt;atom:author&gt;</code>, extracted from the layer
 * markup.
 * @type {!google.maps.KmlAuthor|null}
 */
google.maps.KmlLayerMetadata.prototype.author;

/**
 * The layer&#39;s <code>&lt;description&gt;</code>, extracted from the layer
 * markup.
 * @type {string}
 */
google.maps.KmlLayerMetadata.prototype.description;

/**
 * Whether the layer has any screen overlays.
 * @type {boolean}
 */
google.maps.KmlLayerMetadata.prototype.hasScreenOverlays;

/**
 * The layer&#39;s <code>&lt;name&gt;</code>, extracted from the layer markup.
 * @type {string}
 */
google.maps.KmlLayerMetadata.prototype.name;

/**
 * The layer&#39;s <code>&lt;Snippet&gt;</code>, extracted from the layer markup
 * @type {string}
 */
google.maps.KmlLayerMetadata.prototype.snippet;

/**
 * This object defines the properties that can be set on a <code>KmlLayer</code>
 * object.
 * @record
 */
google.maps.KmlLayerOptions = function() {};

/**
 * If <code>true</code>, the layer receives mouse events.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.clickable;

/**
 * The map on which to display the layer.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.map;

/**
 * If this option is set to <code>true</code> or if the map&#39;s center and
 * zoom were never set, the input map is centered and zoomed to the bounding box
 * of the contents of the layer.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.preserveViewport;

/**
 * Whether to render the screen overlays.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.screenOverlays;

/**
 * Suppress the rendering of info windows when layer features are clicked.
 * @type {boolean|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.suppressInfoWindows;

/**
 * The URL of the KML document to display.
 * @type {string|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.url;

/**
 * The z-index of the layer.
 * @type {number|null|undefined}
 */
google.maps.KmlLayerOptions.prototype.zIndex;

/**
 * The status returned by <code>KmlLayer</code> on the completion of loading a
 * document. Specify these by value, or by using the constant&#39;s name. For
 * example, <code>'OK'</code> or <code>google.maps.KmlLayerStatus.OK</code>.
 *
 * Access by calling `const {KmlLayerStatus} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.KmlLayerStatus = {
  /**
   * The document could not be found. Most likely it is an invalid URL, or the
   * document is not publicly available.
   */
  DOCUMENT_NOT_FOUND: 'DOCUMENT_NOT_FOUND',
  /**
   * The document exceeds the file size limits of KmlLayer.
   */
  DOCUMENT_TOO_LARGE: 'DOCUMENT_TOO_LARGE',
  /**
   * The document could not be fetched.
   */
  FETCH_ERROR: 'FETCH_ERROR',
  /**
   * The document is not a valid KML, KMZ or GeoRSS document.
   */
  INVALID_DOCUMENT: 'INVALID_DOCUMENT',
  /**
   * The <code>KmlLayer</code> is invalid.
   */
  INVALID_REQUEST: 'INVALID_REQUEST',
  /**
   * The document exceeds the feature limits of KmlLayer.
   */
  LIMITS_EXCEEDED: 'LIMITS_EXCEEDED',
  /**
   * The layer loaded successfully.
   */
  OK: 'OK',
  /**
   * The document could not be loaded within a reasonable amount of time.
   */
  TIMED_OUT: 'TIMED_OUT',
  /**
   * The document failed to load for an unknown reason.
   */
  UNKNOWN: 'UNKNOWN',
};

/**
 * The properties of a click event on a KML/KMZ or GeoRSS document.
 * @record
 */
google.maps.KmlMouseEvent = function() {};

/**
 * A <code>KmlFeatureData</code> object, containing information about the
 * clicked feature.
 * @type {!google.maps.KmlFeatureData}
 */
google.maps.KmlMouseEvent.prototype.featureData;

/**
 * The position at which to anchor an infowindow on the clicked feature.
 * @type {!google.maps.LatLng}
 */
google.maps.KmlMouseEvent.prototype.latLng;

/**
 * The offset to apply to an infowindow anchored on the clicked feature.
 * @type {!google.maps.Size}
 */
google.maps.KmlMouseEvent.prototype.pixelOffset;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * A place that represents a point of reference for the address.
 * @record
 */
google.maps.Landmark = function() {};

/**
 * The name for the landmark.
 * @type {string}
 */
google.maps.Landmark.prototype.display_name;

/**
 * The language of the name for the landmark.
 * @type {string}
 */
google.maps.Landmark.prototype.display_name_language_code;

/**
 * The Place ID of the underlying establishment serving as the landmark. Can be
 * used to resolve more information about the landmark through Place Details or
 * Place Id Lookup.
 * @type {string}
 */
google.maps.Landmark.prototype.place_id;

/**
 * Defines the spatial relationship between the target location and the
 * landmark.
 * @type {!google.maps.SpatialRelationship}
 */
google.maps.Landmark.prototype.spatial_relationship;

/**
 * The straight line distance between the target location and the landmark.
 * @type {number}
 */
google.maps.Landmark.prototype.straight_line_distance_meters;

/**
 * The travel distance along the road network between the target location and
 * the landmark. This can be unpopulated if the landmark is disconnected from
 * the part of the road network the target is closest to OR if the target
 * location was not actually considered to be on the road network.
 * @type {number|undefined}
 */
google.maps.Landmark.prototype.travel_distance_meters;

/**
 * One or more values indicating the type of the returned result. Please see <a
 * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">Types
 * </a> for more detail.
 * @type {!Array<string>}
 */
google.maps.Landmark.prototype.types;

/**
 * A <code>LatLng</code> is a point in geographical coordinates: latitude and
 * longitude.<br> <ul> <li>Latitude ranges between -90 and 90 degrees,
 * inclusive. Values above or below this range will be clamped to the range
 * [-90, 90]. This means that if the value specified is less than -90, it will
 * be set to -90. And if the value is greater than 90, it will be set
 * to 90.</li> <li>Longitude ranges between -180 and 180 degrees, inclusive.
 * Values above or below this range will be wrapped so that they fall within the
 * range. For example, a value of -190 will be converted to 170. A value of 190
 * will be converted to -170. This reflects the fact that longitudes wrap around
 * the globe.</li> </ul> Although the default map projection associates
 * longitude with the x-coordinate of the map, and latitude with the
 * y-coordinate, the latitude coordinate is always written <em>first</em>,
 * followed by the longitude.<br> Notice that you cannot modify the coordinates
 * of a <code>LatLng</code>. If you want to compute another point, you have to
 * create a new one.<br> <p> Most methods that accept <code>LatLng</code>
 * objects also accept a {@link google.maps.LatLngLiteral} object, so that the
 * following are equivalent: <pre> map.setCenter(new google.maps.LatLng(-34,
 * 151));<br> map.setCenter({lat: -34, lng: 151}); </pre> <p> The constructor
 * also accepts {@link google.maps.LatLngLiteral} and <code>LatLng</code>
 * objects. If a <code>LatLng</code> instance is passed to the constructor, a
 * copy is created. <p> The possible calls to the constructor are below: <pre>
 * new google.maps.LatLng(-34, 151);<br> new google.maps.LatLng(-34, 151,
 * true);<br> new google.maps.LatLng({lat: -34, lng: 151});<br> new
 * google.maps.LatLng({lat: -34, lng: 151}, true);<br> new
 * google.maps.LatLng(new google.maps.LatLng(-34, 151));<br> new
 * google.maps.LatLng(new google.maps.LatLng(-34, 151), true);<br> </pre>
 *
 * Access by calling `const {LatLng} = await google.maps.importLibrary("core")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {number|!google.maps.LatLngLiteral|!google.maps.LatLng}
 *     latOrLatLngOrLatLngLiteral
 * @param {?(number|boolean)=} lngOrNoClampNoWrap
 * @param {boolean=} noClampNoWrap
 * @constructor
 */
google.maps.LatLng = function(
    latOrLatLngOrLatLngLiteral, lngOrNoClampNoWrap, noClampNoWrap) {};

/**
 * Comparison function.
 * @param {google.maps.LatLng} other
 * @return {boolean}
 */
google.maps.LatLng.prototype.equals = function(other) {};

/**
 * Returns the latitude in degrees.
 * @return {number}
 */
google.maps.LatLng.prototype.lat = function() {};

/**
 * Returns the longitude in degrees.
 * @return {number}
 */
google.maps.LatLng.prototype.lng = function() {};

/**
 * Converts to JSON representation. This function is intended to be used via
 * <code>JSON.stringify</code>.
 * @return {!google.maps.LatLngLiteral}
 * @override
 */
google.maps.LatLng.prototype.toJSON = function() {};

/**
 * Converts to string representation.
 * @return {string}
 * @override
 */
google.maps.LatLng.prototype.toString = function() {};

/**
 * Returns a string of the form &quot;lat,lng&quot; for this LatLng. We round
 * the lat/lng values to 6 decimal places by default.
 * @param {number=} precision
 * @return {string}
 */
google.maps.LatLng.prototype.toUrlValue = function(precision) {};

/**
 * A <code>LatLngAltitude</code> is a 3D point in geographical coordinates:
 * latitude, longitude, and altitude.<br> <ul> <li>Latitude ranges between -90
 * and 90 degrees, inclusive. Values above or below this range will be clamped
 * to the range [-90, 90]. This means that if the value specified is less than
 * -90, it will be set to -90. And if the value is greater than 90, it will be
 * set to 90.</li> <li>Longitude ranges between -180 and 180 degrees, inclusive.
 * Values above or below this range will be wrapped so that they fall within the
 * range. For example, a value of -190 will be converted to 170. A value of 190
 * will be converted to -170. This reflects the fact that longitudes wrap around
 * the globe.</li> <li>Altitude is measured in meters. Positive values denote
 * heights above ground level, and negative values denote heights underneath the
 * ground surface.</li> </ul>
 *
 * Access by calling `const {LatLngAltitude} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLng|!google.maps.LatLngLiteral}
 *     value The initializing value.
 * @param {boolean=} noClampNoWrap Whether to preserve the initialization
 *     values, even if they may not necessarily be valid latitude values in the
 *     range of [-90, 90] or valid longitude values in the range of [-180, 180].
 *     The default is <code>false</code> which enables latitude clamping and
 *     longitude wrapping.
 * @implements {google.maps.LatLngAltitudeLiteral}
 * @implements {google.maps.LatLngLiteral}
 * @constructor
 */
google.maps.LatLngAltitude = function(value, noClampNoWrap) {};

/**
 * Returns the altitude.
 * @type {number}
 */
google.maps.LatLngAltitude.prototype.altitude;

/**
 * Returns the latitude.
 * @type {number}
 */
google.maps.LatLngAltitude.prototype.lat;

/**
 * Returns the longitude.
 * @type {number}
 */
google.maps.LatLngAltitude.prototype.lng;

/**
 * Comparison function.
 * @param {!google.maps.LatLngAltitude|null} other Another LatLngAltitude
 *     object.
 * @return {boolean} Whether the two objects are equal.
 */
google.maps.LatLngAltitude.prototype.equals = function(other) {};

/**
 * @return {!google.maps.LatLngAltitudeLiteral} A JSON representation of this
 *     object.
 * @override
 */
google.maps.LatLngAltitude.prototype.toJSON = function() {};

/**
 * Object literals are accepted in place of <code>LatLngAltitude</code> objects,
 * as a convenience, in many places. These are converted to
 * <code>LatLngAltitude</code> objects when the Maps API encounters them.
 * @extends {google.maps.LatLngLiteral}
 * @record
 */
google.maps.LatLngAltitudeLiteral = function() {};

/**
 * Distance (in meters) above the ground surface. Negative value means
 * underneath the ground surface.
 * @default <code>0</code>
 * @type {number|null|undefined}
 */
google.maps.LatLngAltitudeLiteral.prototype.altitude;

/**
 * Latitude in degrees. Values will be clamped to the range [-90, 90]. This
 * means that if the value specified is less than -90, it will be set to -90.
 * And if the value is greater than 90, it will be set to 90.
 * @type {number}
 */
google.maps.LatLngAltitudeLiteral.prototype.lat;

/**
 * Longitude in degrees. Values outside the range [-180, 180] will be wrapped so
 * that they fall within the range. For example, a value of -190 will be
 * converted to 170. A value of 190 will be converted to -170. This reflects the
 * fact that longitudes wrap around the globe.
 * @type {number}
 */
google.maps.LatLngAltitudeLiteral.prototype.lng;

/**
 * A <code><a href="#LatLngBounds">LatLngBounds</a></code> instance represents a
 * rectangle in geographical coordinates, including one that crosses the 180
 * degrees longitudinal meridian.
 *
 * Access by calling `const {LatLngBounds} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {(google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null)=}
 *     swOrLatLngBounds
 * @param {(google.maps.LatLng|google.maps.LatLngLiteral|null)=} ne
 * @constructor
 */
google.maps.LatLngBounds = function(swOrLatLngBounds, ne) {};

/**
 * Returns <code>true</code> if the given lat/lng is in this bounds.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latLng
 * @return {boolean}
 */
google.maps.LatLngBounds.prototype.contains = function(latLng) {};

/**
 * Returns <code>true</code> if this bounds approximately equals the given
 * bounds.
 * @param {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null} other
 * @return {boolean}
 */
google.maps.LatLngBounds.prototype.equals = function(other) {};

/**
 * Extends this bounds to contain the given point.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} point
 * @return {!google.maps.LatLngBounds}
 */
google.maps.LatLngBounds.prototype.extend = function(point) {};

/**
 * Computes the center of this LatLngBounds
 * @return {!google.maps.LatLng}
 */
google.maps.LatLngBounds.prototype.getCenter = function() {};

/**
 * Returns the north-east corner of this bounds.
 * @return {!google.maps.LatLng}
 */
google.maps.LatLngBounds.prototype.getNorthEast = function() {};

/**
 * Returns the south-west corner of this bounds.
 * @return {!google.maps.LatLng}
 */
google.maps.LatLngBounds.prototype.getSouthWest = function() {};

/**
 * Returns <code>true</code> if this bounds shares any points with the other
 * bounds.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral} other
 * @return {boolean}
 */
google.maps.LatLngBounds.prototype.intersects = function(other) {};

/**
 * Returns if the bounds are empty.
 * @return {boolean}
 */
google.maps.LatLngBounds.prototype.isEmpty = function() {};

/**
 * Converts to JSON representation. This function is intended to be used via
 * <code>JSON.stringify</code>.
 * @return {!google.maps.LatLngBoundsLiteral}
 * @override
 */
google.maps.LatLngBounds.prototype.toJSON = function() {};

/**
 * Converts the given map bounds to a lat/lng span.
 * @return {!google.maps.LatLng}
 */
google.maps.LatLngBounds.prototype.toSpan = function() {};

/**
 * Converts to string.
 * @return {string}
 * @override
 */
google.maps.LatLngBounds.prototype.toString = function() {};

/**
 * Returns a string of the form &quot;lat_lo,lng_lo,lat_hi,lng_hi&quot; for this
 * bounds, where &quot;lo&quot; corresponds to the southwest corner of the
 * bounding box, while &quot;hi&quot; corresponds to the northeast corner of
 * that box.
 * @param {number=} precision
 * @return {string}
 */
google.maps.LatLngBounds.prototype.toUrlValue = function(precision) {};

/**
 * Extends this bounds to contain the union of this and the given bounds.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral} other
 * @return {!google.maps.LatLngBounds}
 */
google.maps.LatLngBounds.prototype.union = function(other) {};

/**
 * LatLngBounds for the max bounds of the Earth. These bounds will encompass the
 * entire globe.
 * @const
 * @type {!google.maps.LatLngBounds}
 */
google.maps.LatLngBounds.MAX_BOUNDS;

/**
 * Object literals are accepted in place of <code>LatLngBounds</code> objects
 * throughout the API. These are automatically converted to
 * <code>LatLngBounds</code> objects. All <code>south</code>, <code>west</code>,
 * <code>north</code> and <code>east</code> must be set, otherwise an exception
 * is thrown.
 * @record
 */
google.maps.LatLngBoundsLiteral = function() {};

/**
 * East longitude in degrees. Values outside the range [-180, 180] will be
 * wrapped to the range [-180, 180). For example, a value of -190 will be
 * converted to 170. A value of 190 will be converted to -170. This reflects the
 * fact that longitudes wrap around the globe.
 * @type {number}
 */
google.maps.LatLngBoundsLiteral.prototype.east;

/**
 * North latitude in degrees. Values will be clamped to the range [-90, 90].
 * This means that if the value specified is less than -90, it will be set to
 * -90. And if the value is greater than 90, it will be set to 90.
 * @type {number}
 */
google.maps.LatLngBoundsLiteral.prototype.north;

/**
 * South latitude in degrees. Values will be clamped to the range [-90, 90].
 * This means that if the value specified is less than -90, it will be set to
 * -90. And if the value is greater than 90, it will be set to 90.
 * @type {number}
 */
google.maps.LatLngBoundsLiteral.prototype.south;

/**
 * West longitude in degrees. Values outside the range [-180, 180] will be
 * wrapped to the range [-180, 180). For example, a value of -190 will be
 * converted to 170. A value of 190 will be converted to -170. This reflects the
 * fact that longitudes wrap around the globe.
 * @type {number}
 */
google.maps.LatLngBoundsLiteral.prototype.west;

/**
 * Object literals are accepted in place of <code>LatLng</code> objects, as a
 * convenience, in many places. These are converted to <code>LatLng</code>
 * objects when the Maps API encounters them. <p> Examples: <pre>
 * map.setCenter({lat: -34, lng: 151});<br> new
 * google.maps.Marker({position: {lat: -34, lng: 151}, map: map}); </pre> <p
 * class="note">LatLng object literals are not supported in the Geometry
 * library.</p>
 * @record
 */
google.maps.LatLngLiteral = function() {};

/**
 * Latitude in degrees. Values will be clamped to the range [-90, 90]. This
 * means that if the value specified is less than -90, it will be set to -90.
 * And if the value is greater than 90, it will be set to 90.
 * @type {number}
 */
google.maps.LatLngLiteral.prototype.lat;

/**
 * Longitude in degrees. Values outside the range [-180, 180] will be wrapped so
 * that they fall within the range. For example, a value of -190 will be
 * converted to 170. A value of 190 will be converted to -170. This reflects the
 * fact that longitudes wrap around the globe.
 * @type {number}
 */
google.maps.LatLngLiteral.prototype.lng;

/**
 * An elevation request sent by the <code>ElevationService</code> containing the
 * list of discrete coordinates (<code>LatLng</code>s) for which to return
 * elevation data.
 * @record
 */
google.maps.LocationElevationRequest = function() {};

/**
 * The discrete locations for which to retrieve elevations.
 * @type {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.LocationElevationRequest.prototype.locations;

/**
 * An elevation response returned by the {@link google.maps.ElevationService}
 * containing the list of {@link google.maps.ElevationResult}s matching the
 * locations of the {@link google.maps.LocationElevationRequest}.
 * @record
 */
google.maps.LocationElevationResponse = function() {};

/**
 * The list of {@link google.maps.ElevationResult}s matching the locations of
 * the {@link google.maps.LocationElevationRequest}.
 * @type {!Array<!google.maps.ElevationResult>}
 */
google.maps.LocationElevationResponse.prototype.results;

/**
 *
 * Access by calling `const {MVCArray} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {Array<T>=} array
 * @extends {google.maps.MVCObject}
 * @template T
 * @constructor
 */
google.maps.MVCArray = function(array) {};

/**
 * Removes all elements from the array.
 * @return {undefined}
 */
google.maps.MVCArray.prototype.clear = function() {};

/**
 * Iterate over each element, calling the provided callback. The callback is
 * called for each element like: callback(element, index).
 * @param {function(T, number): void} callback
 * @return {undefined}
 */
google.maps.MVCArray.prototype.forEach = function(callback) {};

/**
 * Returns a reference to the underlying Array. Warning: if the Array is
 * mutated, no events will be fired by this object.
 * @return {!Array<T>}
 */
google.maps.MVCArray.prototype.getArray = function() {};

/**
 * Returns the element at the specified index.
 * @param {number} i
 * @return {T}
 */
google.maps.MVCArray.prototype.getAt = function(i) {};

/**
 * Returns the number of elements in this array.
 * @return {number}
 */
google.maps.MVCArray.prototype.getLength = function() {};

/**
 * Inserts an element at the specified index.
 * @param {number} i
 * @param {T} elem
 * @return {undefined}
 */
google.maps.MVCArray.prototype.insertAt = function(i, elem) {};

/**
 * Removes the last element of the array and returns that element.
 * @return {T}
 */
google.maps.MVCArray.prototype.pop = function() {};

/**
 * Adds one element to the end of the array and returns the new length of the
 * array.
 * @param {T} elem
 * @return {number}
 */
google.maps.MVCArray.prototype.push = function(elem) {};

/**
 * Removes an element from the specified index.
 * @param {number} i
 * @return {T}
 */
google.maps.MVCArray.prototype.removeAt = function(i) {};

/**
 * Sets an element at the specified index.
 * @param {number} i
 * @param {T} elem
 * @return {undefined}
 */
google.maps.MVCArray.prototype.setAt = function(i, elem) {};

/**
 * Base class implementing KVO. <br><br>The <code>MVCObject</code> constructor
 * is guaranteed to be an empty function, and so you may inherit from
 * <code>MVCObject</code> by writing <code>MySubclass.prototype = new
 * google.maps.MVCObject();</code>. Unless otherwise noted, this is not true of
 * other classes in the API, and inheriting from other classes in the API is not
 * supported.
 *
 * Access by calling `const {MVCObject} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.MVCObject = function() {};

/**
 * Adds the given listener function to the given event name. Returns an
 * identifier for this listener that can be used with
 * <code>google.maps.event.removeListener</code>.
 * @param {string} eventName
 * @param {!Function} handler
 * @return {!google.maps.MapsEventListener}
 */
google.maps.MVCObject.prototype.addListener = function(eventName, handler) {};

/**
 * Binds a View to a Model.
 * @param {string} key
 * @param {!google.maps.MVCObject} target
 * @param {?string=} targetKey
 * @param {boolean=} noNotify
 * @return {undefined}
 */
google.maps.MVCObject.prototype.bindTo = function(
    key, target, targetKey, noNotify) {};

/**
 * Gets a value.
 * @param {string} key
 * @return {?}
 */
google.maps.MVCObject.prototype.get = function(key) {};

/**
 * Notify all observers of a change on this property. This notifies both objects
 * that are bound to the object&#39;s property as well as the object that it is
 * bound to.
 * @param {string} key
 * @return {undefined}
 */
google.maps.MVCObject.prototype.notify = function(key) {};

/**
 * Sets a value.
 * @param {string} key
 * @param {*} value
 * @return {undefined}
 */
google.maps.MVCObject.prototype.set = function(key, value) {};

/**
 * Sets a collection of key-value pairs.
 * @param {?Object=} values
 * @return {undefined}
 */
google.maps.MVCObject.prototype.setValues = function(values) {};

/**
 * Removes a binding. Unbinding will set the unbound property to the current
 * value. The object will not be notified, as the value has not changed.
 * @param {string} key
 * @return {undefined}
 */
google.maps.MVCObject.prototype.unbind = function(key) {};

/**
 * Removes all bindings.
 * @return {undefined}
 */
google.maps.MVCObject.prototype.unbindAll = function() {};

/**
 *
 * Access by calling `const {Map} = await google.maps.importLibrary("maps")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!HTMLElement} mapDiv The map will render to fill this element.
 * @param {!google.maps.MapOptions=} opts Options
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.Map = function(mapDiv, opts) {};

/**
 * Additional controls to attach to the map. To add a control to the map, add
 * the control&#39;s <code>&lt;div&gt;</code> to the <code>MVCArray</code>
 * corresponding to the <code>ControlPosition</code> where it should be
 * rendered.
 * @type {!Array<!google.maps.MVCArray<!HTMLElement>>}
 */
google.maps.Map.prototype.controls;

/**
 * An instance of <code>Data</code>, bound to the map. Add features to this
 * <code>Data</code> object to conveniently display them on this map.
 * @type {!google.maps.Data}
 */
google.maps.Map.prototype.data;

/**
 * A registry of <code>MapType</code> instances by string ID.
 * @type {!google.maps.MapTypeRegistry}
 */
google.maps.Map.prototype.mapTypes;

/**
 * Additional map types to overlay. Overlay map types will display on top of the
 * base map they are attached to, in the order in which they appear in the
 * <code>overlayMapTypes</code> array (overlays with higher index values are
 * displayed in front of overlays with lower index values).
 * @type {!google.maps.MVCArray<?google.maps.MapType>}
 */
google.maps.Map.prototype.overlayMapTypes;

/**
 * Sets the viewport to contain the given bounds.</br> <strong>Note:</strong>
 * When the map is set to <code>display: none</code>, the <code>fitBounds</code>
 * function reads the map&#39;s size as 0x0, and therefore does not do anything.
 * To change the viewport while the map is hidden, set the map to
 * <code>visibility: hidden</code>, thereby ensuring the map div has an actual
 * size. For vector maps, this method sets the map&#39;s tilt and heading to
 * their default zero values. Calling this method may cause a smooth animation
 * as the map pans and zooms to fit the bounds. Whether or not this method
 * animates depends on an internal heuristic.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral} bounds
 *     Bounds to show.
 * @param {(number|!google.maps.Padding)=} padding Padding in pixels. The bounds
 *     will be fit in the part of the map that remains after padding is removed.
 *     A number value will yield the same padding on all 4 sides. Supply 0 here
 *     to make a fitBounds idempotent on the result of getBounds.
 * @return {undefined}
 */
google.maps.Map.prototype.fitBounds = function(bounds, padding) {};

/**
 * Returns the lat/lng bounds of the current viewport. If more than one copy of
 * the world is visible, the bounds range in longitude from -180 to 180 degrees
 * inclusive. If the map is not yet initialized or center and zoom have not been
 * set then the result is <code>undefined</code>. For vector maps with non-zero
 * tilt or heading, the returned lat/lng bounds represents the smallest bounding
 * box that includes the visible region of the map&#39;s viewport. See {@link
 * google.maps.MapCanvasProjection.getVisibleRegion} for getting the exact
 * visible region of the map&#39;s viewport.
 * @return {!google.maps.LatLngBounds|undefined} The lat/lng bounds of the
 *     current viewport.
 */
google.maps.Map.prototype.getBounds = function() {};

/**
 * Returns the position displayed at the center of the map. Note that
 * this {@link google.maps.LatLng} object is <em>not</em> wrapped. See <code><a
 * href="#LatLng">LatLng</a></code> for more information. If the center or
 * bounds have not been set then the result is <code>undefined</code>.
 * @return {!google.maps.LatLng|undefined}
 */
google.maps.Map.prototype.getCenter = function() {};

/**
 * Returns the clickability of the map icons. A map icon represents a point of
 * interest, also known as a POI. If the returned value is <code>true</code>,
 * then the icons are clickable on the map.
 * @return {boolean|undefined}
 */
google.maps.Map.prototype.getClickableIcons = function() {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * Returns the <code>FeatureLayer</code> for the specified
 * <code>datasetId</code>. Dataset IDs must be configured in the Google Cloud
 * Console. If the dataset ID is not associated with the map&#39;s map style, or
 * if Data-driven styling is not available (no map ID, no vector tiles, no
 * Data-Driven Styling feature layers or Datasets configured in the Map Style),
 * this logs an error, and the resulting <code>FeatureLayer.isAvailable</code>
 * will be false.
 * @param {string} datasetId
 * @return {!google.maps.FeatureLayer}
 */
google.maps.Map.prototype.getDatasetFeatureLayer = function(datasetId) {};

/**
 * @return {!HTMLElement} The mapDiv of the map.
 */
google.maps.Map.prototype.getDiv = function() {};

/**
 * Returns the <code>FeatureLayer</code> of the specific
 * <code>FeatureType</code>. A <code>FeatureLayer</code> must be enabled in the
 * Google Cloud Console. If a <code>FeatureLayer</code> of the specified
 * <code>FeatureType</code> does not exist on this map, or if Data-driven
 * styling is not available (no map ID, no vector tiles, and no
 * <code>FeatureLayer</code> enabled in the map style), this logs an error, and
 * the resulting <code>FeatureLayer.isAvailable</code> will be false.
 * @param {!google.maps.FeatureType} featureType
 * @return {!google.maps.FeatureLayer}
 */
google.maps.Map.prototype.getFeatureLayer = function(featureType) {};

/**
 * Returns the compass heading of the map. The heading value is measured in
 * degrees (clockwise) from cardinal direction North. If the map is not yet
 * initialized then the result is <code>undefined</code>.
 * @return {number|undefined}
 */
google.maps.Map.prototype.getHeading = function() {};

/**
 * Returns whether heading interactions are enabled. This option is only in
 * effect when the map is a vector map. If not set in code, then the cloud
 * configuration for the map ID will be used (if available).
 * @return {boolean|null}
 */
google.maps.Map.prototype.getHeadingInteractionEnabled = function() {};

/**
 * Returns the list of usage attribution IDs, which help Google understand which
 * libraries and samples are helpful to developers, such as usage of a marker
 * clustering library.
 * @return {!Iterable<string>|null}
 */
google.maps.Map.prototype.getInternalUsageAttributionIds = function() {};

/**
 * Informs the caller of the current capabilities available to the map based on
 * the map ID that was provided.
 * @return {!google.maps.MapCapabilities}
 */
google.maps.Map.prototype.getMapCapabilities = function() {};

/**
 * @return {!google.maps.MapTypeId|string|undefined}
 */
google.maps.Map.prototype.getMapTypeId = function() {};

/**
 * Returns the current <code>Projection</code>. If the map is not yet
 * initialized then the result is <code>undefined</code>. Listen to the
 * <code>projection_changed</code> event and check its value to ensure it is not
 * <code>undefined</code>.
 * @return {!google.maps.Projection|undefined}
 */
google.maps.Map.prototype.getProjection = function() {};

/**
 * Returns the current RenderingType of the map.
 * @return {!google.maps.RenderingType}
 */
google.maps.Map.prototype.getRenderingType = function() {};

/**
 * Returns the default <code>StreetViewPanorama</code> bound to the map, which
 * may be a default panorama embedded within the map, or the panorama set using
 * <code>setStreetView()</code>. Changes to the map&#39;s
 * <code>streetViewControl</code> will be reflected in the display of such a
 * bound panorama.
 * @return {!google.maps.StreetViewPanorama} The panorama bound to the map.
 */
google.maps.Map.prototype.getStreetView = function() {};

/**
 * Returns the current angle of incidence of the map, in degrees from the
 * viewport plane to the map plane. For raster maps, the result will be
 * <code>0</code> for imagery taken directly overhead or <code>45</code> for
 * 45&deg; imagery. This method does not return the value set by
 * <code>setTilt</code>. See <code>setTilt</code> for details.
 * @return {number|undefined}
 */
google.maps.Map.prototype.getTilt = function() {};

/**
 * Returns whether tilt interactions are enabled. This option is only in effect
 * when the map is a vector map. If not set in code, then the cloud
 * configuration for the map ID will be used (if available).
 * @return {boolean|null}
 */
google.maps.Map.prototype.getTiltInteractionEnabled = function() {};

/**
 * Returns the zoom of the map. If the zoom has not been set then the result is
 * <code>undefined</code>.
 * @return {number|undefined}
 */
google.maps.Map.prototype.getZoom = function() {};

/**
 * Immediately sets the map&#39;s camera to the target camera options, without
 * animation.
 * @param {!google.maps.CameraOptions} cameraOptions
 * @return {undefined}
 */
google.maps.Map.prototype.moveCamera = function(cameraOptions) {};

/**
 * Changes the center of the map by the given distance in pixels. If the
 * distance is less than both the width and height of the map, the transition
 * will be smoothly animated. Note that the map coordinate system increases from
 * west to east (for x values) and north to south (for y values).
 * @param {number} x Number of pixels to move the map in the x direction.
 * @param {number} y Number of pixels to move the map in the y direction.
 * @return {undefined}
 */
google.maps.Map.prototype.panBy = function(x, y) {};

/**
 * Changes the center of the map to the given <code>LatLng</code>. If the change
 * is less than both the width and height of the map, the transition will be
 * smoothly animated.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latLng The new center
 *     latitude/longitude of the map.
 * @return {undefined}
 */
google.maps.Map.prototype.panTo = function(latLng) {};

/**
 * Pans the map by the minimum amount necessary to contain the given
 * <code>LatLngBounds</code>. It makes no guarantee where on the map the bounds
 * will be, except that the map will be panned to show as much of the bounds as
 * possible inside <code>{currentMapSizeInPx} - {padding}</code>. For both
 * raster and vector maps, the map&#39;s zoom, tilt, and heading will not be
 * changed.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral}
 *     latLngBounds The bounds to pan the map to.
 * @param {(number|!google.maps.Padding)=} padding Padding in pixels. A number
 *     value will yield the same padding on all 4 sides. The default value is 0.
 * @return {undefined}
 */
google.maps.Map.prototype.panToBounds = function(latLngBounds, padding) {};

/**
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latlng
 * @return {undefined}
 */
google.maps.Map.prototype.setCenter = function(latlng) {};

/**
 * Controls whether the map icons are clickable or not. A map icon represents a
 * point of interest, also known as a POI. To disable the clickability of map
 * icons, pass a value of <code>false</code> to this method.
 * @param {boolean} value
 * @return {undefined}
 */
google.maps.Map.prototype.setClickableIcons = function(value) {};

/**
 * Sets the compass heading for map measured in degrees from cardinal direction
 * North. For raster maps, this method only applies to aerial imagery.
 * @param {number} heading
 * @return {undefined}
 */
google.maps.Map.prototype.setHeading = function(heading) {};

/**
 * Sets whether heading interactions are enabled. This option is only in effect
 * when the map is a vector map. If not set in code, then the cloud
 * configuration for the map ID will be used (if available).
 * @param {boolean} headingInteractionEnabled
 * @return {undefined}
 */
google.maps.Map.prototype.setHeadingInteractionEnabled = function(
    headingInteractionEnabled) {};

/**
 * @param {!google.maps.MapTypeId|string} mapTypeId
 * @return {undefined}
 */
google.maps.Map.prototype.setMapTypeId = function(mapTypeId) {};

/**
 * @param {?google.maps.MapOptions} options
 * @return {undefined}
 */
google.maps.Map.prototype.setOptions = function(options) {};

/**
 * Sets the current RenderingType of the map.
 * @param {!google.maps.RenderingType} renderingType
 * @return {undefined}
 */
google.maps.Map.prototype.setRenderingType = function(renderingType) {};

/**
 * Binds a <code>StreetViewPanorama</code> to the map. This panorama overrides
 * the default <code>StreetViewPanorama</code>, allowing the map to bind to an
 * external panorama outside of the map. Setting the panorama to
 * <code>null</code> binds the default embedded panorama back to the map.
 * @param {?google.maps.StreetViewPanorama} panorama The panorama to bind to the
 *     map.
 * @return {undefined}
 */
google.maps.Map.prototype.setStreetView = function(panorama) {};

/**
 * For vector maps, sets the angle of incidence of the map. The allowed values
 * are restricted depending on the zoom level of the map. <br><br> For raster
 * maps, controls the automatic switching behavior for the angle of incidence of
 * the map. The only allowed values are <code>0</code> and <code>45</code>.
 * <code>setTilt(0)</code> causes the map to always use a 0&deg; overhead view
 * regardless of the zoom level and viewport. <code>setTilt(45)</code> causes
 * the tilt angle to automatically switch to 45 whenever 45&deg; imagery is
 * available for the current zoom level and viewport, and switch back to 0
 * whenever 45&deg; imagery is not available (this is the default behavior).
 * 45&deg; imagery is only available for <code>satellite</code> and
 * <code>hybrid</code> map types, within some locations, and at some zoom
 * levels. <b>Note:</b> <code>getTilt</code> returns the current tilt angle, not
 * the value set by <code>setTilt</code>. Because <code>getTilt</code> and
 * <code>setTilt</code> refer to different things, do not <code>bind()</code>
 * the <code>tilt</code> property; doing so may yield unpredictable effects.
 * @param {number} tilt
 * @return {undefined}
 */
google.maps.Map.prototype.setTilt = function(tilt) {};

/**
 * Sets whether tilt interactions are enabled. This option is only in effect
 * when the map is a vector map. If not set in code, then the cloud
 * configuration for the map ID will be used (if available).
 * @param {boolean} tiltInteractionEnabled
 * @return {undefined}
 */
google.maps.Map.prototype.setTiltInteractionEnabled = function(
    tiltInteractionEnabled) {};

/**
 * Sets the zoom of the map.
 * @param {number} zoom Larger zoom values correspond to a higher resolution.
 * @return {undefined}
 */
google.maps.Map.prototype.setZoom = function(zoom) {};

/**
 * Map ID which can be used for code samples which require a map ID. This map ID
 * is not intended for use in production applications and cannot be used for
 * features which require cloud configuration (such as Cloud Styling).
 * @const
 * @type {string}
 */
google.maps.Map.DEMO_MAP_ID;

/**
 * This object is made available to the <code>OverlayView</code> from within the
 * draw method. It is not guaranteed to be initialized until draw is called.
 * @record
 */
google.maps.MapCanvasProjection = function() {};

/**
 * Computes the geographical coordinates from pixel coordinates in the map&#39;s
 * container.
 * @param {!google.maps.Point|null} pixel
 * @param {boolean=} noClampNoWrap
 * @return {!google.maps.LatLng|null}
 */
google.maps.MapCanvasProjection.prototype.fromContainerPixelToLatLng = function(
    pixel, noClampNoWrap) {};

/**
 * Computes the geographical coordinates from pixel coordinates in the div that
 * holds the draggable map.
 * @param {!google.maps.Point|null} pixel
 * @param {boolean=} noClampNoWrap
 * @return {!google.maps.LatLng|null}
 */
google.maps.MapCanvasProjection.prototype.fromDivPixelToLatLng = function(
    pixel, noClampNoWrap) {};

/**
 * Computes the pixel coordinates of the given geographical location in the
 * map&#39;s container element.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latLng
 * @return {!google.maps.Point|null}
 */
google.maps.MapCanvasProjection.prototype.fromLatLngToContainerPixel = function(
    latLng) {};

/**
 * Computes the pixel coordinates of the given geographical location in the DOM
 * element that holds the draggable map.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral|null} latLng
 * @return {!google.maps.Point|null}
 */
google.maps.MapCanvasProjection.prototype.fromLatLngToDivPixel = function(
    latLng) {};

/**
 * The visible region of the map. Returns <code>null</code> if the map has no
 * size. Returns <code>null</code> if the OverlayView is on a
 * StreetViewPanorama.
 * @return {!google.maps.VisibleRegion|null}
 */
google.maps.MapCanvasProjection.prototype.getVisibleRegion = function() {};

/**
 * The width of the world in pixels in the current zoom level. For projections
 * with a heading angle of either 90 or 270 degrees, this corresponds to the
 * pixel span in the Y-axis.
 * @return {number}
 */
google.maps.MapCanvasProjection.prototype.getWorldWidth = function() {};

/**
 * Object containing a snapshot of what capabilities are currently available for
 * the Map. Note that this does not necessarily mean that relevant modules are
 * loaded or initialized, but rather that the current map has permission to use
 * these APIs. See the properties for a list of possible capabilities.
 * @record
 */
google.maps.MapCapabilities = function() {};

/**
 * If true, this map is configured properly to allow for the use of advanced
 * markers. Note that you must still import the <code>marker</code> library in
 * order to use advanced markers. See <a
 * href="https://goo.gle/gmp-isAdvancedMarkersAvailable">https://goo.gle/gmp-isAdvancedMarkersAvailable</a>
 * for more information.
 * @type {boolean|undefined}
 */
google.maps.MapCapabilities.prototype.isAdvancedMarkersAvailable;

/**
 * If true, this map is configured properly to allow for the use of data-driven
 * styling for at least one FeatureLayer. See <a
 * href="https://goo.gle/gmp-data-driven-styling">https://goo.gle/gmp-data-driven-styling</a>
 * and <a
 * href="https://goo.gle/gmp-FeatureLayerIsAvailable">https://goo.gle/gmp-FeatureLayerIsAvailable</a>
 * for more information.
 * @type {boolean|undefined}
 */
google.maps.MapCapabilities.prototype.isDataDrivenStylingAvailable;

/**
 * If true, this map is configured properly to allow for the use of {@link
 * google.maps.WebGLOverlayView}.
 * @type {boolean|undefined}
 */
google.maps.MapCapabilities.prototype.isWebGLOverlayViewAvailable;

/**
 * MapElement is an <code>HTMLElement</code> subclass for rendering maps. After
 * loading the <code>maps</code> library, a map can be created in HTML. For
 * example: <pre><code>&lt;gmp-map center=&quot;37.4220656,-122.0840897&quot;
 * zoom=&quot;10&quot;
 * map-id=&quot;DEMO_MAP_ID&quot;&gt;<br>&nbsp;&nbsp;&lt;button
 * slot=&quot;control-block-start-inline-end&quot;&gt;Custom
 * Control&lt;/button&gt;<br>&lt;/gmp-map&gt;</code></pre> <br> Internally, it
 * uses {@link google.maps.Map}, which can be accessed with the {@link
 * google.maps.MapElement.innerMap} property.
 *
 * Access by calling `const {MapElement} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.MapElementOptions=} options
 * @implements {google.maps.MapElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.MapElement = function(options) {};

/**
 * The center latitude/longitude of the map.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null}
 */
google.maps.MapElement.prototype.center;

/**
 * Whether the map should allow user control of the camera heading (rotation).
 * This option is only in effect when the map is a vector map. If not set in
 * code, then the cloud configuration for the map ID will be used (if
 * available).
 * @default <code>false</code>
 * @type {boolean|null}
 */
google.maps.MapElement.prototype.headingInteractionDisabled;

/**
 * A reference to the {@link google.maps.Map} that the MapElement uses
 * internally.
 * @type {!google.maps.Map}
 */
google.maps.MapElement.prototype.innerMap;

/**
 * Adds a usage attribution ID to the initializer, which helps Google understand
 * which libraries and samples are helpful to developers, such as usage of a
 * marker clustering library. To opt out of sending the usage attribution ID, it
 * is safe to delete this property or replace the value with an empty string.
 * Only unique values will be sent. Changes to this value after instantiation
 * may be ignored.
 * @default <code>null</code>
 * @type {!Iterable<string>|null}
 */
google.maps.MapElement.prototype.internalUsageAttributionIds;

/**
 * The <a href="https://developers.google.com/maps/documentation/get-map-id">map
 * ID</a> of the map. This parameter cannot be set or changed after a map is
 * instantiated. {@link google.maps.Map.DEMO_MAP_ID} can be used to try out
 * features that require a map ID but which do not require cloud enablement.
 * @type {string|null}
 */
google.maps.MapElement.prototype.mapId;

/**
 * Whether the map should be a raster or vector map. This parameter cannot be
 * set or changed after a map is instantiated. If not set, then the cloud
 * configuration for the map ID will determine the rendering type (if
 * available). Please note that vector maps may not be available for all devices
 * and browsers and the map will fall back to a raster map as needed.
 * @default {@link google.maps.RenderingType.VECTOR}
 * @type {!google.maps.RenderingType|null}
 */
google.maps.MapElement.prototype.renderingType;

/**
 * Whether the map should allow user control of the camera tilt. This option is
 * only in effect when the map is a vector map. If not set in code, then the
 * cloud configuration for the map ID will be used (if available).
 * @default <code>false</code>
 * @type {boolean|null}
 */
google.maps.MapElement.prototype.tiltInteractionDisabled;

/**
 * The zoom level of the map. Valid zoom values are numbers from zero up to the
 * supported <a
 * href="https://developers.google.com/maps/documentation/javascript/maxzoom">maximum
 * zoom level</a>. Larger zoom values correspond to a higher resolution.
 * @type {number|null}
 */
google.maps.MapElement.prototype.zoom;



/**
 * MapElementOptions object used to define the properties that can be set on a
 * MapElement.
 * @record
 */
google.maps.MapElementOptions = function() {};

/**
 * See {@link google.maps.MapElement.center}.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.MapElementOptions.prototype.center;

/**
 * See {@link google.maps.MapElement.headingInteractionDisabled}.
 * @type {boolean|null|undefined}
 */
google.maps.MapElementOptions.prototype.headingInteractionDisabled;

/**
 * See {@link google.maps.MapElement.internalUsageAttributionIds}.
 * @type {!Iterable<string>|null|undefined}
 */
google.maps.MapElementOptions.prototype.internalUsageAttributionIds;

/**
 * See {@link google.maps.MapElement.mapId}.
 * @type {string|null|undefined}
 */
google.maps.MapElementOptions.prototype.mapId;

/**
 * See {@link google.maps.MapElement.renderingType}.
 * @type {!google.maps.RenderingType|null|undefined}
 */
google.maps.MapElementOptions.prototype.renderingType;

/**
 * See {@link google.maps.MapElement.tiltInteractionDisabled}.
 * @type {boolean|null|undefined}
 */
google.maps.MapElementOptions.prototype.tiltInteractionDisabled;

/**
 * See {@link google.maps.MapElement.zoom}.
 * @type {number|null|undefined}
 */
google.maps.MapElementOptions.prototype.zoom;

/**
 * This object is returned from various mouse events on the map and overlays,
 * and contains all the fields shown below.
 * @record
 */
google.maps.MapMouseEvent = function() {};

/**
 * The corresponding native DOM event. Developers should not rely on
 * <code>target</code>, <code>currentTarget</code>, <code>relatedTarget</code>
 * and <code>path</code> properties being defined and consistent. Developers
 * should not also rely on the DOM structure of the internal implementation of
 * the Maps API. Due to internal event mapping, the <code>domEvent</code> may
 * have different semantics from the {@link google.maps.MapMouseEvent} (e.g.
 * a {@link google.maps.MapMouseEvent} &quot;click&quot; may have a
 * <code>domEvent</code> of type <code>KeyboardEvent</code>).
 * @type {!MouseEvent|!TouchEvent|!PointerEvent|!KeyboardEvent|!Event}
 */
google.maps.MapMouseEvent.prototype.domEvent;

/**
 * The latitude/longitude that was below the cursor when the event occurred.
 * @type {!google.maps.LatLng|null}
 */
google.maps.MapMouseEvent.prototype.latLng;

/**
 * Prevents this event from propagating further.
 * @return {void}
 */
google.maps.MapMouseEvent.prototype.stop = function() {};

/**
 * MapOptions object used to define the properties that can be set on a Map.
 * @record
 */
google.maps.MapOptions = function() {};

/**
 * Color used for the background of the Map div. This color will be visible when
 * tiles have not yet loaded as the user pans. This option can only be set when
 * the map is initialized.
 * @type {string|null|undefined}
 */
google.maps.MapOptions.prototype.backgroundColor;

/**
 * The enabled/disabled state of the Camera control.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.cameraControl;

/**
 * The display options for the Camera control.
 * @type {!google.maps.CameraControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.cameraControlOptions;

/**
 * The initial Map center.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.MapOptions.prototype.center;

/**
 * When <code>false</code>, map icons are not clickable. A map icon represents a
 * point of interest, also known as a POI.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.clickableIcons;

/**
 * The initial Map color scheme. This option can only be set when the map is
 * initialized.
 * @default {@link google.maps.ColorScheme.LIGHT}
 * @type {!google.maps.ColorScheme|string|null|undefined}
 */
google.maps.MapOptions.prototype.colorScheme;

/**
 * Size in pixels of the controls appearing on the map. This value must be
 * supplied directly when creating the Map, updating this value later may bring
 * the controls into an <code>undefined</code> state. Only governs the controls
 * made by the Maps API itself. Does not scale developer created custom
 * controls.
 * @type {number|null|undefined}
 */
google.maps.MapOptions.prototype.controlSize;

/**
 * Enables/disables all default UI buttons. May be overridden individually. Does
 * not disable the keyboard controls, which are separately controlled by
 * the {@link google.maps.MapOptions.keyboardShortcuts} option. Does not disable
 * gesture controls, which are separately controlled by the {@link
 * google.maps.MapOptions.gestureHandling} option.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.disableDefaultUI;

/**
 * Enables/disables zoom and center on double click. Enabled by default.
 * <p><strong>Note</strong>: This property is <strong>not recommended</strong>.
 * To disable zooming on double click, you can use the
 * <code>gestureHandling</code> property, and set it to <code>"none"</code>.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.disableDoubleClickZoom;

/**
 * The name or url of the cursor to display when mousing over a draggable map.
 * This property uses the css <code>cursor</code> attribute to change the icon.
 * As with the css property, you must specify at least one fallback cursor that
 * is not a URL. For example: <code>draggableCursor: 'url(<a
 * href="http://www.example.com/icon.png">http://www.example.com/icon.png</a>),
 * auto;'</code>.
 * @type {string|null|undefined}
 */
google.maps.MapOptions.prototype.draggableCursor;

/**
 * The name or url of the cursor to display when the map is being dragged. This
 * property uses the css <code>cursor</code> attribute to change the icon. As
 * with the css property, you must specify at least one fallback cursor that is
 * not a URL. For example: <code>draggingCursor: 'url(<a
 * href="http://www.example.com/icon.png">http://www.example.com/icon.png</a>),
 * auto;'</code>.
 * @type {string|null|undefined}
 */
google.maps.MapOptions.prototype.draggingCursor;

/**
 * The enabled/disabled state of the Fullscreen control.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.fullscreenControl;

/**
 * The display options for the Fullscreen control.
 * @type {!google.maps.FullscreenControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.fullscreenControlOptions;

/**
 * This setting controls how the API handles gestures on the map. Allowed
 * values: <ul> <li> <code>"cooperative"</code>: Scroll events and one-finger
 * touch gestures scroll the page, and do not zoom or pan the map. Two-finger
 * touch gestures pan and zoom the map. Scroll events with a ctrl key or ⌘ key
 * pressed zoom the map.<br> In this mode the map <em>cooperates</em> with the
 * page. <li> <code>"greedy"</code>: All touch gestures and scroll events pan or
 * zoom the map. <li> <code>"none"</code>: The map cannot be panned or zoomed by
 * user gestures. <li> <code>"auto"</code>: (default) Gesture handling is either
 * cooperative or greedy, depending on whether the page is scrollable or in an
 * iframe. </ul>
 * @type {string|null|undefined}
 */
google.maps.MapOptions.prototype.gestureHandling;

/**
 * The heading for aerial imagery in degrees measured clockwise from cardinal
 * direction North. Headings are snapped to the nearest available angle for
 * which imagery is available.
 * @type {number|null|undefined}
 */
google.maps.MapOptions.prototype.heading;

/**
 * Whether the map should allow user control of the camera heading (rotation).
 * This option is only in effect when the map is a vector map. If not set in
 * code, then the cloud configuration for the map ID will be used (if
 * available).
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.headingInteractionEnabled;

/**
 * Adds a usage attribution ID to the initializer, which helps Google understand
 * which libraries and samples are helpful to developers, such as usage of a
 * marker clustering library. To opt out of sending the usage attribution ID, it
 * is safe to delete this property or replace the value with an empty string.
 * Only unique values will be sent. Changes to this value after instantiation
 * may be ignored.
 * @default <code>null</code>
 * @type {!Iterable<string>|null|undefined}
 */
google.maps.MapOptions.prototype.internalUsageAttributionIds;

/**
 * Whether the map should allow fractional zoom levels. Listen to
 * <code>isfractionalzoomenabled_changed</code> to know when the default has
 * been set.
 * @default <code>true</code> for vector maps and <code>false</code> for raster
 * maps
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.isFractionalZoomEnabled;

/**
 * If <code>false</code>, prevents the map from being controlled by the
 * keyboard. Keyboard shortcuts are enabled by default.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.keyboardShortcuts;

/**
 * The <a href="https://developers.google.com/maps/documentation/get-map-id">map
 * ID</a> of the map. This parameter cannot be set or changed after a map is
 * instantiated. {@link google.maps.Map.DEMO_MAP_ID} can be used to try out
 * features that require a map ID but which do not require cloud enablement.
 * @type {string|null|undefined}
 */
google.maps.MapOptions.prototype.mapId;

/**
 * The initial enabled/disabled state of the Map type control.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.mapTypeControl;

/**
 * The initial display options for the Map type control.
 * @type {!google.maps.MapTypeControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.mapTypeControlOptions;

/**
 * The initial Map mapTypeId. Defaults to <code>ROADMAP</code>.
 * @type {!google.maps.MapTypeId|string|null|undefined}
 */
google.maps.MapOptions.prototype.mapTypeId;

/**
 * The maximum zoom level which will be displayed on the map. If omitted, or set
 * to <code>null</code>, the maximum zoom from the current map type is used
 * instead. Valid zoom values are numbers from zero up to the supported <a
 * href="https://developers.google.com/maps/documentation/javascript/maxzoom">maximum
 * zoom level</a>.
 * @type {number|null|undefined}
 */
google.maps.MapOptions.prototype.maxZoom;

/**
 * The minimum zoom level which will be displayed on the map. If omitted, or set
 * to <code>null</code>, the minimum zoom from the current map type is used
 * instead. Valid zoom values are numbers from zero up to the supported <a
 * href="https://developers.google.com/maps/documentation/javascript/maxzoom">maximum
 * zoom level</a>.
 * @type {number|null|undefined}
 */
google.maps.MapOptions.prototype.minZoom;

/**
 * If <code>true</code>, do not clear the contents of the Map div.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.noClear;

/**
 * Whether the map should be a raster or vector map. This parameter cannot be
 * set or changed after a map is instantiated. If not set, then the cloud
 * configuration for the map ID will determine the rendering type (if
 * available). Please note that vector maps may not be available for all devices
 * and browsers and the map will fall back to a raster map as needed.
 * @default {@link google.maps.RenderingType.RASTER}
 * @type {!google.maps.RenderingType|null|undefined}
 */
google.maps.MapOptions.prototype.renderingType;

/**
 * Defines a boundary that restricts the area of the map accessible to users.
 * When set, a user can only pan and zoom while the camera view stays inside the
 * limits of the boundary.
 * @type {!google.maps.MapRestriction|null|undefined}
 */
google.maps.MapOptions.prototype.restriction;

/**
 * The enabled/disabled state of the Rotate control.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.rotateControl;

/**
 * The display options for the Rotate control.
 * @type {!google.maps.RotateControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.rotateControlOptions;

/**
 * The initial enabled/disabled state of the Scale control.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.scaleControl;

/**
 * The initial display options for the Scale control.
 * @type {!google.maps.ScaleControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.scaleControlOptions;

/**
 * If <code>false</code>, disables zooming on the map using a mouse scroll
 * wheel. The scrollwheel is enabled by default. <p><strong>Note</strong>: This
 * property is <strong>not recommended</strong>. To disable zooming using
 * scrollwheel, you can use the <code>gestureHandling</code> property, and set
 * it to either <code>"cooperative"</code> or <code>"none"</code>.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.scrollwheel;

/**
 * A <code>StreetViewPanorama</code> to display when the Street View pegman is
 * dropped on the map. If no panorama is specified, a default
 * <code>StreetViewPanorama</code> will be displayed in the map&#39;s
 * <code>div</code> when the pegman is dropped.
 * @type {!google.maps.StreetViewPanorama|null|undefined}
 */
google.maps.MapOptions.prototype.streetView;

/**
 * The initial enabled/disabled state of the Street View Pegman control. This
 * control is part of the default UI, and should be set to <code>false</code>
 * when displaying a map type on which the Street View road overlay should not
 * appear (e.g. a non-Earth map type).
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.streetViewControl;

/**
 * The initial display options for the Street View Pegman control.
 * @type {!google.maps.StreetViewControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.streetViewControlOptions;

/**
 * Styles to apply to each of the default map types. Note that for
 * <code>satellite</code>/<code>hybrid</code> and <code>terrain</code> modes,
 * these styles will only apply to labels and geometry. This feature is not
 * available when using a map ID, or when using vector maps (use <a
 * href="https://developers.google.com/maps/documentation/cloud-customization">cloud-based
 * maps styling</a> instead).
 * @type {!Array<!google.maps.MapTypeStyle>|null|undefined}
 */
google.maps.MapOptions.prototype.styles;

/**
 * For vector maps, sets the angle of incidence of the map. The allowed values
 * are restricted depending on the zoom level of the map. For raster maps,
 * controls the automatic switching behavior for the angle of incidence of the
 * map. The only allowed values are <code>0</code> and <code>45</code>. The
 * value <code>0</code> causes the map to always use a 0&deg; overhead view
 * regardless of the zoom level and viewport. The value <code>45</code> causes
 * the tilt angle to automatically switch to 45 whenever 45&deg; imagery is
 * available for the current zoom level and viewport, and switch back to 0
 * whenever 45&deg; imagery is not available (this is the default behavior).
 * 45&deg; imagery is only available for <code>satellite</code> and
 * <code>hybrid</code> map types, within some locations, and at some zoom
 * levels. <b>Note:</b> <code>getTilt</code> returns the current tilt angle, not
 * the value specified by this option. Because <code>getTilt</code> and this
 * option refer to different things, do not <code>bind()</code> the
 * <code>tilt</code> property; doing so may yield unpredictable effects.
 * @type {number|null|undefined}
 */
google.maps.MapOptions.prototype.tilt;

/**
 * Whether the map should allow user control of the camera tilt. This option is
 * only in effect when the map is a vector map. If not set in code, then the
 * cloud configuration for the map ID will be used (if available).
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.tiltInteractionEnabled;

/**
 * The initial Map zoom level. Valid zoom values are numbers from zero up to the
 * supported <a
 * href="https://developers.google.com/maps/documentation/javascript/maxzoom">maximum
 * zoom level</a>. Larger zoom values correspond to a higher resolution.
 * @type {number|null|undefined}
 */
google.maps.MapOptions.prototype.zoom;

/**
 * The enabled/disabled state of the Zoom control.
 * @type {boolean|null|undefined}
 */
google.maps.MapOptions.prototype.zoomControl;

/**
 * The display options for the Zoom control.
 * @type {!google.maps.ZoomControlOptions|null|undefined}
 */
google.maps.MapOptions.prototype.zoomControlOptions;

/**
 * If <code>false</code>, prevents the map from being dragged and zoomed by
 * mouse and touch gestures. Dragging is enabled by default.
 * @type {boolean|null|undefined}
 * @deprecated Deprecated in 2017. To disable dragging on the map, you can use
 *     the <code>gestureHandling</code> property, and set it to
 *     <code>"none"</code>.
 */
google.maps.MapOptions.prototype.draggable;

/**
 * The enabled/disabled state of the Pan control. <p>
 * @type {boolean|null|undefined}
 * @deprecated The Pan control is deprecated as of September 2015.
 */
google.maps.MapOptions.prototype.panControl;

/**
 * The display options for the Pan control. <p>
 * @type {!google.maps.PanControlOptions|null|undefined}
 * @deprecated The Pan control is deprecated as of September 2015.
 */
google.maps.MapOptions.prototype.panControlOptions;

/**
 * @record
 */
google.maps.MapPanes = function() {};

/**
 * This pane contains the info window. It is above all map overlays. (Pane 4).
 * @type {!Element}
 */
google.maps.MapPanes.prototype.floatPane;

/**
 * This pane is the lowest pane and is above the tiles. It does not receive DOM
 * events. (Pane 0).
 * @type {!Element}
 */
google.maps.MapPanes.prototype.mapPane;

/**
 * This pane contains markers. It does not receive DOM events. (Pane 2).
 * @type {!Element}
 */
google.maps.MapPanes.prototype.markerLayer;

/**
 * This pane contains polylines, polygons, ground overlays and tile layer
 * overlays. It does not receive DOM events. (Pane 1).
 * @type {!Element}
 */
google.maps.MapPanes.prototype.overlayLayer;

/**
 * This pane contains elements that receive DOM events. (Pane 3).
 * @type {!Element}
 */
google.maps.MapPanes.prototype.overlayMouseTarget;

/**
 * A restriction that can be applied to the Map. The map&#39;s viewport will not
 * exceed these restrictions.
 * @record
 */
google.maps.MapRestriction = function() {};

/**
 * When set, a user can only pan and zoom inside the given bounds. Bounds can
 * restrict both longitude and latitude, or can restrict latitude only. For
 * latitude-only bounds use west and east longitudes of -180 and 180,
 * respectively, for example, <code>latLngBounds: {north: northLat, south:
 * southLat, west: -180, east: 180}</code>.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral}
 */
google.maps.MapRestriction.prototype.latLngBounds;

/**
 * Bounds can be made more restrictive by setting the <code>strictBounds</code>
 * flag to <code>true</code>. This reduces how far a user can zoom out, ensuring
 * that everything outside of the restricted bounds stays hidden. The default is
 * <code>false</code>, meaning that a user can zoom out until the entire bounded
 * area is in view, possibly including areas outside the bounded area.
 * @type {boolean|undefined}
 */
google.maps.MapRestriction.prototype.strictBounds;

/**
 * This interface defines the map type, and is typically used for custom map
 * types. Immutable.
 * @record
 */
google.maps.MapType = function() {};

/**
 * Alt text to display when this MapType&#39;s button is hovered over in the
 * MapTypeControl. Optional.
 * @type {string|null}
 */
google.maps.MapType.prototype.alt;

/**
 * The maximum zoom level for the map when displaying this MapType. Required for
 * base MapTypes, ignored for overlay MapTypes.
 * @type {number}
 */
google.maps.MapType.prototype.maxZoom;

/**
 * The minimum zoom level for the map when displaying this MapType. Optional;
 * defaults to 0.
 * @type {number}
 */
google.maps.MapType.prototype.minZoom;

/**
 * Name to display in the MapTypeControl. Optional.
 * @type {string|null}
 */
google.maps.MapType.prototype.name;

/**
 * The Projection used to render this MapType. Optional; defaults to Mercator.
 * @type {!google.maps.Projection|null}
 */
google.maps.MapType.prototype.projection;

/**
 * Radius of the planet for the map, in meters. Optional; defaults to
 * Earth&#39;s equatorial radius of 6378137 meters.
 * @type {number}
 */
google.maps.MapType.prototype.radius;

/**
 * The dimensions of each tile. Required.
 * @type {!google.maps.Size|null}
 */
google.maps.MapType.prototype.tileSize;

/**
 * Returns a tile for the given tile coordinate (x, y) and zoom level. This tile
 * will be appended to the given ownerDocument. Not available for base map
 * types.
 * @param {!google.maps.Point} tileCoord Tile coordinates.
 * @param {number} zoom Tile zoom.
 * @param {!Document} ownerDocument The document which owns this tile.
 * @return {!Element|null} Resulting tile.
 */
google.maps.MapType.prototype.getTile = function(
    tileCoord, zoom, ownerDocument) {};

/**
 * Releases the given tile, performing any necessary cleanup. The provided tile
 * will have already been removed from the document. Optional.
 * @param {!Element|null} tile Tile to release.
 * @return {void}
 */
google.maps.MapType.prototype.releaseTile = function(tile) {};

/**
 * Options for the rendering of the map type control.
 * @record
 */
google.maps.MapTypeControlOptions = function() {};

/**
 * IDs of map types to show in the control.
 * @type {!Array<!google.maps.MapTypeId|string>|null|undefined}
 */
google.maps.MapTypeControlOptions.prototype.mapTypeIds;

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.BLOCK_START_INLINE_START}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.MapTypeControlOptions.prototype.position;

/**
 * Style id. Used to select what style of map type control to display.
 * @type {!google.maps.MapTypeControlStyle|null|undefined}
 */
google.maps.MapTypeControlOptions.prototype.style;

/**
 * Identifiers for common MapTypesControls.
 *
 * Access by calling `const {MapTypeControlStyle} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.MapTypeControlStyle = {
  /**
   * Uses the default map type control. When the <code>DEFAULT</code> control is
   * shown, it will vary according to window size and other factors. The
   * <code>DEFAULT</code> control may change in future versions of the API.
   */
  DEFAULT: 0,
  /**
   * A dropdown menu for the screen realestate conscious.
   */
  DROPDOWN_MENU: 1,
  /**
   * The standard horizontal radio buttons bar.
   */
  HORIZONTAL_BAR: 2,
};

/**
 * Identifiers for common MapTypes. Specify these by value, or by using the
 * constant&#39;s name. For example, <code>'satellite'</code> or
 * <code>google.maps.MapTypeId.SATELLITE</code>.
 *
 * Access by calling `const {MapTypeId} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.MapTypeId = {
  /**
   * This map type displays a transparent layer of major streets on satellite
   * images.
   */
  HYBRID: 'hybrid',
  /**
   * This map type displays a normal street map.
   */
  ROADMAP: 'roadmap',
  /**
   * This map type displays satellite images.
   */
  SATELLITE: 'satellite',
  /**
   * This map type displays maps with physical features such as terrain and
   * vegetation.
   */
  TERRAIN: 'terrain',
};

/**
 * A registry for MapType instances, keyed by MapType id.
 *
 * Access by calling `const {MapTypeRegistry} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.MapTypeRegistry = function() {};

/**
 * Sets the registry to associate the passed string identifier with the passed
 * MapType.
 * @param {string} id Identifier of the MapType to add to the registry.
 * @param {!google.maps.MapType|?} mapType MapType object to add to the
 *     registry.
 * @return {undefined}
 */
google.maps.MapTypeRegistry.prototype.set = function(id, mapType) {};

/**
 * The <code>MapTypeStyle</code> is a collection of selectors and stylers that
 * define how the map should be styled. Selectors specify the map features
 * and/or elements that should be affected, and stylers specify how those
 * features and elements should be modified. For details, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/style-reference">style
 * reference</a>.
 * @record
 */
google.maps.MapTypeStyle = function() {};

/**
 * The element to which a styler should be applied. An element is a visual
 * aspect of a feature on the map. Example: a label, an icon, the stroke or fill
 * applied to the geometry, and more. Optional. If <code>elementType</code> is
 * not specified, the value is assumed to be <code>'all'</code>. For details of
 * usage and allowed values, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/style-reference#style-elements">style
 * reference</a>.
 * @type {string|null|undefined}
 */
google.maps.MapTypeStyle.prototype.elementType;

/**
 * The feature, or group of features, to which a styler should be applied.
 * Optional. If <code>featureType</code> is not specified, the value is assumed
 * to be <code>'all'</code>. For details of usage and allowed values, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/style-reference#style-features">style
 * reference</a>.
 * @type {string|null|undefined}
 */
google.maps.MapTypeStyle.prototype.featureType;

/**
 * The style rules to apply to the selected map features and elements. The rules
 * are applied in the order that you specify in this array. For guidelines on
 * usage and allowed values, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/style-reference#stylers">style
 * reference</a>.
 * @type {!Array<!Object>}
 */
google.maps.MapTypeStyle.prototype.stylers;

/**
 * @record
 */
google.maps.Maps3DLibrary = function() {};

/**
 * @type {typeof google.maps.maps3d.AltitudeMode}
 */
google.maps.Maps3DLibrary.prototype.AltitudeMode;

/**
 * @type {typeof google.maps.maps3d.GestureHandling}
 */
google.maps.Maps3DLibrary.prototype.GestureHandling;

/**
 * @type {typeof google.maps.maps3d.LocationClickEvent}
 */
google.maps.Maps3DLibrary.prototype.LocationClickEvent;

/**
 * @type {typeof google.maps.maps3d.Map3DElement}
 */
google.maps.Maps3DLibrary.prototype.Map3DElement;

/**
 * @type {typeof google.maps.maps3d.MapMode}
 */
google.maps.Maps3DLibrary.prototype.MapMode;

/**
 * @type {typeof google.maps.maps3d.Marker3DElement}
 */
google.maps.Maps3DLibrary.prototype.Marker3DElement;

/**
 * @type {typeof google.maps.maps3d.Marker3DInteractiveElement}
 */
google.maps.Maps3DLibrary.prototype.Marker3DInteractiveElement;

/**
 * @type {typeof google.maps.maps3d.Model3DElement}
 */
google.maps.Maps3DLibrary.prototype.Model3DElement;

/**
 * @type {typeof google.maps.maps3d.Model3DInteractiveElement}
 */
google.maps.Maps3DLibrary.prototype.Model3DInteractiveElement;

/**
 * @type {typeof google.maps.maps3d.PlaceClickEvent}
 */
google.maps.Maps3DLibrary.prototype.PlaceClickEvent;

/**
 * @type {typeof google.maps.maps3d.Polygon3DElement}
 */
google.maps.Maps3DLibrary.prototype.Polygon3DElement;

/**
 * @type {typeof google.maps.maps3d.Polygon3DInteractiveElement}
 */
google.maps.Maps3DLibrary.prototype.Polygon3DInteractiveElement;

/**
 * @type {typeof google.maps.maps3d.Polyline3DElement}
 */
google.maps.Maps3DLibrary.prototype.Polyline3DElement;

/**
 * @type {typeof google.maps.maps3d.Polyline3DInteractiveElement}
 */
google.maps.Maps3DLibrary.prototype.Polyline3DInteractiveElement;

/**
 * @type {typeof google.maps.maps3d.PopoverElement}
 */
google.maps.Maps3DLibrary.prototype.PopoverElement;

/**
 * @type {typeof google.maps.maps3d.SteadyChangeEvent}
 */
google.maps.Maps3DLibrary.prototype.SteadyChangeEvent;

/**
 * Describes a Firebase App Check token result.
 * @record
 */
google.maps.MapsAppCheckTokenResult = function() {};

/**
 * An event listener, created by <code><a
 * href="#event">google.maps.event.addListener</a>()</code> and friends.
 * @record
 */
google.maps.MapsEventListener = function() {};

/**
 * Removes the listener. <p>Calling <code>listener.remove()</code> is equivalent
 * to <code>google.maps.event.removeListener(listener)</code>.
 * @return {void}
 */
google.maps.MapsEventListener.prototype.remove = function() {};

/**
 * @record
 */
google.maps.MapsLibrary = function() {};

/**
 * @type {typeof google.maps.BicyclingLayer}
 */
google.maps.MapsLibrary.prototype.BicyclingLayer;

/**
 * @type {typeof google.maps.Circle}
 */
google.maps.MapsLibrary.prototype.Circle;

/**
 * @type {typeof google.maps.Data}
 */
google.maps.MapsLibrary.prototype.Data;

/**
 * @type {typeof google.maps.FeatureType}
 */
google.maps.MapsLibrary.prototype.FeatureType;

/**
 * @type {typeof google.maps.GroundOverlay}
 */
google.maps.MapsLibrary.prototype.GroundOverlay;

/**
 * @type {typeof google.maps.ImageMapType}
 */
google.maps.MapsLibrary.prototype.ImageMapType;

/**
 * @type {typeof google.maps.InfoWindow}
 */
google.maps.MapsLibrary.prototype.InfoWindow;

/**
 * @type {typeof google.maps.KmlLayer}
 */
google.maps.MapsLibrary.prototype.KmlLayer;

/**
 * @type {typeof google.maps.KmlLayerStatus}
 */
google.maps.MapsLibrary.prototype.KmlLayerStatus;

/**
 * @type {typeof google.maps.Map}
 */
google.maps.MapsLibrary.prototype.Map;

/**
 * @type {typeof google.maps.MapElement}
 */
google.maps.MapsLibrary.prototype.MapElement;

/**
 * @type {typeof google.maps.MapTypeControlStyle}
 */
google.maps.MapsLibrary.prototype.MapTypeControlStyle;

/**
 * @type {typeof google.maps.MapTypeId}
 */
google.maps.MapsLibrary.prototype.MapTypeId;

/**
 * @type {typeof google.maps.MapTypeRegistry}
 */
google.maps.MapsLibrary.prototype.MapTypeRegistry;

/**
 * @type {typeof google.maps.MaxZoomService}
 */
google.maps.MapsLibrary.prototype.MaxZoomService;

/**
 * @type {typeof google.maps.MaxZoomStatus}
 */
google.maps.MapsLibrary.prototype.MaxZoomStatus;

/**
 * @type {typeof google.maps.OverlayView}
 */
google.maps.MapsLibrary.prototype.OverlayView;

/**
 * @type {typeof google.maps.Polygon}
 */
google.maps.MapsLibrary.prototype.Polygon;

/**
 * @type {typeof google.maps.Polyline}
 */
google.maps.MapsLibrary.prototype.Polyline;

/**
 * @type {typeof google.maps.Rectangle}
 */
google.maps.MapsLibrary.prototype.Rectangle;

/**
 * @type {typeof google.maps.RenderingType}
 */
google.maps.MapsLibrary.prototype.RenderingType;

/**
 * @type {typeof google.maps.StrokePosition}
 */
google.maps.MapsLibrary.prototype.StrokePosition;

/**
 * @type {typeof google.maps.StyledMapType}
 */
google.maps.MapsLibrary.prototype.StyledMapType;

/**
 * @type {typeof google.maps.TrafficLayer}
 */
google.maps.MapsLibrary.prototype.TrafficLayer;

/**
 * @type {typeof google.maps.TransitLayer}
 */
google.maps.MapsLibrary.prototype.TransitLayer;

/**
 * @type {typeof google.maps.WebGLOverlayView}
 */
google.maps.MapsLibrary.prototype.WebGLOverlayView;

/**
 * @type {typeof google.maps.ZoomChangeEvent}
 */
google.maps.MapsLibrary.prototype.ZoomChangeEvent;

/**
 * Base class for managing network errors in Maps.
 *
 * Access by calling `const {MapsNetworkError} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Error}
 * @constructor
 */
google.maps.MapsNetworkError = function() {};

/**
 * Identifies the type of error produced by the API.
 * @type {!google.maps.DirectionsStatus|!google.maps.DistanceMatrixStatus|!google.maps.ElevationStatus|!google.maps.GeocoderStatus|!google.maps.MaxZoomStatus|!google.maps.places.PlacesServiceStatus|!google.maps.RPCStatus|!google.maps.StreetViewStatus}
 */
google.maps.MapsNetworkError.prototype.code;

/**
 * Represents the network service that responded with the error.
 * @type {!google.maps.MapsNetworkErrorEndpoint}
 */
google.maps.MapsNetworkError.prototype.endpoint;

/**
 * Identifiers for API endpoints used by {@link google.maps.MapsNetworkError}
 * instances.
 *
 * Access by calling `const {MapsNetworkErrorEndpoint} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.MapsNetworkErrorEndpoint = {
  /**
   * Identifies the Routes API within the Directions API.
   */
  DIRECTIONS_ROUTE: 'DIRECTIONS_ROUTE',
  /**
   * Identifies the DistanceMatrix API.
   */
  DISTANCE_MATRIX: 'DISTANCE_MATRIX',
  /**
   * Identifies the getElevationsAlongPath API within the Elevation API.
   */
  ELEVATION_ALONG_PATH: 'ELEVATION_ALONG_PATH',
  /**
   * Identifies the getElevationForLocations API within the Elevation API.
   */
  ELEVATION_LOCATIONS: 'ELEVATION_LOCATIONS',
  /**
   * Identifies the Get DeliveryVehicle API within Fleet Engine.
   */
  FLEET_ENGINE_GET_DELIVERY_VEHICLE: 'FLEET_ENGINE_GET_DELIVERY_VEHICLE',
  /**
   * Identifies the Get Trip API within Fleet Engine.
   */
  FLEET_ENGINE_GET_TRIP: 'FLEET_ENGINE_GET_TRIP',
  /**
   * Identifies the Get Vehicle API within Fleet Engine.
   */
  FLEET_ENGINE_GET_VEHICLE: 'FLEET_ENGINE_GET_VEHICLE',
  /**
   * Identifies the List DeliveryVehicles API within Fleet Engine.
   */
  FLEET_ENGINE_LIST_DELIVERY_VEHICLES: 'FLEET_ENGINE_LIST_DELIVERY_VEHICLES',
  /**
   * Identifies the List Tasks API within Fleet Engine.
   */
  FLEET_ENGINE_LIST_TASKS: 'FLEET_ENGINE_LIST_TASKS',
  /**
   * Identifies the List Vehicles API within Fleet Engine.
   */
  FLEET_ENGINE_LIST_VEHICLES: 'FLEET_ENGINE_LIST_VEHICLES',
  /**
   * Identifies the Search Tasks API within Fleet Engine.
   */
  FLEET_ENGINE_SEARCH_TASKS: 'FLEET_ENGINE_SEARCH_TASKS',
  /**
   * Identifies the geocode API within the Geocoder.
   */
  GEOCODER_GEOCODE: 'GEOCODER_GEOCODE',
  /**
   * Identifies the MaximumZoomImageryService API within the Maps API.
   */
  MAPS_MAX_ZOOM: 'MAPS_MAX_ZOOM',
  /**
   * Identifies the Autocomplete API within the Places API.
   */
  PLACES_AUTOCOMPLETE: 'PLACES_AUTOCOMPLETE',
  /**
   * Identifies the Details API within the Places API.
   */
  PLACES_DETAILS: 'PLACES_DETAILS',
  /**
   * Identifies the findPlaceFromPhoneNumber API within the Places API.
   */
  PLACES_FIND_PLACE_FROM_PHONE_NUMBER: 'PLACES_FIND_PLACE_FROM_PHONE_NUMBER',
  /**
   * Identifies the findPlaceFromQuery API within the Places API.
   */
  PLACES_FIND_PLACE_FROM_QUERY: 'PLACES_FIND_PLACE_FROM_QUERY',
  /**
   * Identifies the Gateway API within the Places API.
   */
  PLACES_GATEWAY: 'PLACES_GATEWAY',
  /**
   * Identifies the Get Place API within the Places API.
   */
  PLACES_GET_PLACE: 'PLACES_GET_PLACE',
  /**
   * Identifies the LocalContextSearch API within the Places API.
   */
  PLACES_LOCAL_CONTEXT_SEARCH: 'PLACES_LOCAL_CONTEXT_SEARCH',
  /**
   * Identifies the NearbySearch API within the Places API.
   */
  PLACES_NEARBY_SEARCH: 'PLACES_NEARBY_SEARCH',
  /**
   * Identifies the Search Text API within the Places API.
   */
  PLACES_SEARCH_TEXT: 'PLACES_SEARCH_TEXT',
  /**
   * Identifies the getPanorama method within the Streetview service.
   */
  STREETVIEW_GET_PANORAMA: 'STREETVIEW_GET_PANORAMA',
};

/**
 * Represents a request error from a web service (i.e. the equivalent of a 4xx
 * code in HTTP).
 *
 * Access by calling `const {MapsRequestError} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MapsNetworkError}
 * @constructor
 */
google.maps.MapsRequestError = function() {};

/**
 * Represents a server-side error from a web service (i.e. the equivalent of a
 * 5xx code in HTTP).
 *
 * Access by calling `const {MapsServerError} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MapsNetworkError}
 * @constructor
 */
google.maps.MapsServerError = function() {};

/**
 *
 * Access by calling `const {Marker} = await
 * google.maps.importLibrary("marker")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.MarkerOptions=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 * @deprecated As of February 21st, 2024, google.maps.Marker is deprecated.
 *     Please use {@link google.maps.marker.AdvancedMarkerElement} instead. At
 *     this time, google.maps.Marker is not scheduled to be discontinued,
 *     but {@link google.maps.marker.AdvancedMarkerElement} is recommended over
 *     google.maps.Marker. While google.maps.Marker will continue to receive bug
 *     fixes for any major regressions, existing bugs in google.maps.Marker will
 *     not be addressed. At least 12 months notice will be given before support
 *     is discontinued. Please see <a
 *     href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>
 *     for additional details and <a
 *     href="https://developers.google.com/maps/documentation/javascript/advanced-markers/migration">https://developers.google.com/maps/documentation/javascript/advanced-markers/migration</a>
 *     for the migration guide.
 */
google.maps.Marker = function(opts) {};

/**
 * Get the currently running animation.
 * @return {google.maps.Animation|null|undefined}
 */
google.maps.Marker.prototype.getAnimation = function() {};

/**
 * Get the clickable status of the {@link google.maps.Marker}.
 * @return {boolean} True if the Marker is clickable.
 */
google.maps.Marker.prototype.getClickable = function() {};

/**
 * Get the mouse cursor type shown on hover.
 * @return {string|null|undefined}
 */
google.maps.Marker.prototype.getCursor = function() {};

/**
 * Get the draggable status of the {@link google.maps.Marker}.
 * @return {boolean} True if the Marker is draggable.
 */
google.maps.Marker.prototype.getDraggable = function() {};

/**
 * Get the icon of the {@link google.maps.Marker}. See {@link
 * google.maps.MarkerOptions.icon}.
 * @return {string|google.maps.Icon|google.maps.Symbol|null|undefined}
 */
google.maps.Marker.prototype.getIcon = function() {};

/**
 * Get the label of the {@link google.maps.Marker}. See {@link
 * google.maps.MarkerOptions.label}.
 * @return {google.maps.MarkerLabel|string|null|undefined}
 */
google.maps.Marker.prototype.getLabel = function() {};

/**
 * Get the map or panaroama the {@link google.maps.Marker} is rendered on.
 * @return {!google.maps.Map|!google.maps.StreetViewPanorama|null}
 */
google.maps.Marker.prototype.getMap = function() {};

/**
 * Get the opacity of the {@link google.maps.Marker}.
 * @return {number|null|undefined} A number between 0.0 and 1.0.
 */
google.maps.Marker.prototype.getOpacity = function() {};

/**
 * Get the position of the {@link google.maps.Marker}.
 * @return {google.maps.LatLng|null|undefined}
 */
google.maps.Marker.prototype.getPosition = function() {};

/**
 * Get the shape of the {@link google.maps.Marker} used for interaction.
 * See {@link google.maps.MarkerOptions.shape} and {@link
 * google.maps.MarkerShape}.
 * @return {google.maps.MarkerShape|null|undefined}
 */
google.maps.Marker.prototype.getShape = function() {};

/**
 * Get the title of the {@link google.maps.Marker} tooltip. See {@link
 * google.maps.MarkerOptions.title}.
 * @return {string|null|undefined}
 */
google.maps.Marker.prototype.getTitle = function() {};

/**
 * Get the visibility of the {@link google.maps.Marker}.
 * @return {boolean} True if the Marker is visible.
 */
google.maps.Marker.prototype.getVisible = function() {};

/**
 * Get the zIndex of the {@link google.maps.Marker}. See {@link
 * google.maps.MarkerOptions.zIndex}.
 * @return {number|null|undefined} zIndex of the Marker.
 */
google.maps.Marker.prototype.getZIndex = function() {};

/**
 * Start an animation. Any ongoing animation will be cancelled. Currently
 * supported animations are: {@link google.maps.Animation.BOUNCE}, {@link
 * google.maps.Animation.DROP}. Passing in <code>null</code> will cause any
 * animation to stop.
 * @param {?google.maps.Animation=} animation The animation to play.
 * @return {undefined}
 */
google.maps.Marker.prototype.setAnimation = function(animation) {};

/**
 * Set if the {@link google.maps.Marker} is clickable.
 * @param {boolean} flag If <code>true</code>, the Marker can be clicked.
 * @return {undefined}
 */
google.maps.Marker.prototype.setClickable = function(flag) {};

/**
 * Set the mouse cursor type shown on hover.
 * @param {?string=} cursor Mouse cursor type.
 * @return {undefined}
 */
google.maps.Marker.prototype.setCursor = function(cursor) {};

/**
 * Set if the {@link google.maps.Marker} is draggable.
 * @param {?boolean} flag If <code>true</code>, the Marker can be dragged.
 * @return {undefined}
 */
google.maps.Marker.prototype.setDraggable = function(flag) {};

/**
 * Set the icon for the {@link google.maps.Marker}. See {@link
 * google.maps.MarkerOptions.icon}.
 * @param {(string|google.maps.Icon|google.maps.Symbol|null)=} icon
 * @return {undefined}
 */
google.maps.Marker.prototype.setIcon = function(icon) {};

/**
 * Set the label for the {@link google.maps.Marker}. See {@link
 * google.maps.MarkerOptions.label}.
 * @param {(string|google.maps.MarkerLabel|null)=} label The label can either be
 *     a character string or a {@link google.maps.MarkerLabel} object.
 * @return {undefined}
 */
google.maps.Marker.prototype.setLabel = function(label) {};

/**
 * Renders the {@link google.maps.Marker} on the specified map or panorama. If
 * map is set to <code>null</code>, the marker will be removed.
 * @param {!google.maps.Map|!google.maps.StreetViewPanorama|null} map
 * @return {undefined}
 */
google.maps.Marker.prototype.setMap = function(map) {};

/**
 * Set the opacity of the {@link google.maps.Marker}.
 * @param {?number=} opacity A number between 0.0, transparent, and 1.0, opaque.
 * @return {undefined}
 */
google.maps.Marker.prototype.setOpacity = function(opacity) {};

/**
 * Set the options for the {@link google.maps.Marker}.
 * @param {!google.maps.MarkerOptions|null} options
 * @return {undefined}
 */
google.maps.Marker.prototype.setOptions = function(options) {};

/**
 * Set the postition for the {@link google.maps.Marker}.
 * @param {(google.maps.LatLng|google.maps.LatLngLiteral|null)=} latlng The new
 *     position.
 * @return {undefined}
 */
google.maps.Marker.prototype.setPosition = function(latlng) {};

/**
 * Set the shape of the {@link google.maps.Marker} used for interaction.
 * See {@link google.maps.MarkerOptions.shape} and {@link
 * google.maps.MarkerShape}.
 * @param {?google.maps.MarkerShape=} shape
 * @return {undefined}
 */
google.maps.Marker.prototype.setShape = function(shape) {};

/**
 * Set the title of the {@link google.maps.Marker} tooltip. See {@link
 * google.maps.MarkerOptions.title}.
 * @param {?string=} title
 * @return {undefined}
 */
google.maps.Marker.prototype.setTitle = function(title) {};

/**
 * Set if the {@link google.maps.Marker} is visible.
 * @param {boolean} visible If <code>true</code>, the Marker is visible
 * @return {undefined}
 */
google.maps.Marker.prototype.setVisible = function(visible) {};

/**
 * Set the zIndex of the {@link google.maps.Marker}. See {@link
 * google.maps.MarkerOptions.zIndex}.
 * @param {?number=} zIndex
 * @return {undefined}
 */
google.maps.Marker.prototype.setZIndex = function(zIndex) {};

/**
 * The maximum default z-index that the API will assign to a marker. You may set
 * a higher z-index to bring a marker to the front.
 * @const
 * @type {number}
 */
google.maps.Marker.MAX_ZINDEX;

/**
 * These options specify the appearance of a marker label. A marker label is a
 * string (often a single character) which will appear inside the marker. If you
 * are using it with a custom marker, you can reposition it with the
 * <code>labelOrigin</code> property in the <code>Icon</code> class.
 * @record
 */
google.maps.MarkerLabel = function() {};

/**
 * The className property of the label&#39;s element (equivalent to the
 * element&#39;s class attribute). Multiple space-separated CSS classes can be
 * added. The font color, size, weight, and family can only be set via the other
 * properties of <code>MarkerLabel</code>. CSS classes should not be used to
 * change the position nor orientation of the label (e.g. using translations and
 * rotations) if also using <a
 * href="https://developers.google.com/maps/documentation/javascript/examples/marker-collision-management">marker
 * collision management</a>.
 * @default <code>&#39;&#39;</code> (empty string)
 * @type {string|undefined}
 */
google.maps.MarkerLabel.prototype.className;

/**
 * The color of the label text.
 * @default <code>&#39;black&#39;</code>
 * @type {string|undefined}
 */
google.maps.MarkerLabel.prototype.color;

/**
 * The font family of the label text (equivalent to the CSS font-family
 * property).
 * @type {string|undefined}
 */
google.maps.MarkerLabel.prototype.fontFamily;

/**
 * The font size of the label text (equivalent to the CSS font-size property).
 * @default <code>&#39;14px&#39;</code>
 * @type {string|undefined}
 */
google.maps.MarkerLabel.prototype.fontSize;

/**
 * The font weight of the label text (equivalent to the CSS font-weight
 * property).
 * @type {string|undefined}
 */
google.maps.MarkerLabel.prototype.fontWeight;

/**
 * The text to be displayed in the label.
 * @type {string}
 */
google.maps.MarkerLabel.prototype.text;

/**
 * @record
 */
google.maps.MarkerLibrary = function() {};

/**
 * @type {typeof google.maps.marker.AdvancedMarkerClickEvent}
 */
google.maps.MarkerLibrary.prototype.AdvancedMarkerClickEvent;

/**
 * @type {typeof google.maps.marker.AdvancedMarkerElement}
 */
google.maps.MarkerLibrary.prototype.AdvancedMarkerElement;

/**
 * @type {typeof google.maps.Animation}
 */
google.maps.MarkerLibrary.prototype.Animation;

/**
 * @type {typeof google.maps.CollisionBehavior}
 */
google.maps.MarkerLibrary.prototype.CollisionBehavior;

/**
 * @type {typeof google.maps.Marker}
 */
google.maps.MarkerLibrary.prototype.Marker;

/**
 * @type {typeof google.maps.marker.PinElement}
 */
google.maps.MarkerLibrary.prototype.PinElement;

/**
 * MarkerOptions object used to define the properties that can be set on a
 * Marker.
 * @record
 * @deprecated As of February 21st, 2024, google.maps.Marker is deprecated.
 *     Please use google.maps.marker.AdvancedMarkerElement instead. Please see
 *     <a
 *     href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>
 *     for deprecation details and <a
 *     href="https://developers.google.com/maps/documentation/javascript/advanced-markers/migration">https://developers.google.com/maps/documentation/javascript/advanced-markers/migration</a>
 *     for the migration guide.
 */
google.maps.MarkerOptions = function() {};

/**
 * The offset from the marker&#39;s position to the tip of an InfoWindow that
 * has been opened with the marker as anchor.
 * @type {!google.maps.Point|null|undefined}
 */
google.maps.MarkerOptions.prototype.anchorPoint;

/**
 * Which animation to play when marker is added to a map.
 * @default <code>null</code>
 * @type {!google.maps.Animation|null|undefined}
 */
google.maps.MarkerOptions.prototype.animation;

/**
 * If <code>true</code>, the marker receives mouse and touch events.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.MarkerOptions.prototype.clickable;

/**
 * If <code>false</code>, disables cross that appears beneath the marker when
 * dragging.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.MarkerOptions.prototype.crossOnDrag;

/**
 * Mouse cursor type to show on hover.
 * @default <code>pointer</code>
 * @type {string|null|undefined}
 */
google.maps.MarkerOptions.prototype.cursor;

/**
 * If <code>true</code>, the marker can be dragged. <b>Note:</b> Setting this to
 * <code>true</code> will make the marker clickable even if
 * <code>clickable</code> is set to <code>false</code>.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.MarkerOptions.prototype.draggable;

/**
 * Icon for the foreground. If a string is provided, it is treated as though it
 * were an <code>Icon</code> with the string as <code>url</code>.
 * @type {string|!google.maps.Icon|!google.maps.Symbol|null|undefined}
 */
google.maps.MarkerOptions.prototype.icon;

/**
 * Adds a label to the marker. A marker label is a letter or number that appears
 * inside a marker. The label can either be a string, or a
 * <code>MarkerLabel</code> object. If provided and {@link
 * google.maps.MarkerOptions.title} is not provided, an accessibility text (e.g.
 * for use with screen readers) will be added to the marker with the provided
 * label&#39;s text. Please note that the <code>label</code> is currently only
 * used for accessibility text for non-optimized markers.
 * @default <code>null</code>
 * @type {string|!google.maps.MarkerLabel|null|undefined}
 */
google.maps.MarkerOptions.prototype.label;

/**
 * Map on which to display Marker. The map is required to display the marker and
 * can be provided with {@link google.maps.Marker.setMap} if not provided at
 * marker construction.
 * @type {!google.maps.Map|!google.maps.StreetViewPanorama|null|undefined}
 */
google.maps.MarkerOptions.prototype.map;

/**
 * A number between 0.0, transparent, and 1.0, opaque.
 * @default 1.0
 * @type {number|null|undefined}
 */
google.maps.MarkerOptions.prototype.opacity;

/**
 * Optimization enhances performance by rendering many markers as a single
 * static element. This is useful in cases where a large number of markers is
 * required. Read more about <a
 * href="https://developers.google.com/maps/documentation/javascript/markers#optimize">marker
 * optimization</a>. <b>Note:</b> This optimization has no effect for markers on
 * vector maps.
 * @type {boolean|null|undefined}
 */
google.maps.MarkerOptions.prototype.optimized;

/**
 * Sets the marker position. A marker may be constructed but not displayed until
 * its position is provided - for example, by a user&#39;s actions or choices. A
 * marker position can be provided with {@link google.maps.Marker.setPosition}
 * if not provided at marker construction.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.MarkerOptions.prototype.position;

/**
 * Image map region definition used for drag/click.
 * @type {!google.maps.MarkerShape|null|undefined}
 */
google.maps.MarkerOptions.prototype.shape;

/**
 * Rollover text. If provided, an accessibility text (e.g. for use with screen
 * readers) will be added to the marker with the provided value. Please note
 * that the <code>title</code> is currently only used for accessibility text for
 * non-optimized markers.
 * @default <code>undefined</code>
 * @type {string|null|undefined}
 */
google.maps.MarkerOptions.prototype.title;

/**
 * If <code>true</code>, the marker is visible.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.MarkerOptions.prototype.visible;

/**
 * All markers are displayed on the map in order of their zIndex, with higher
 * values displaying in front of markers with lower values. By default, markers
 * are displayed according to their vertical position on screen, with lower
 * markers appearing in front of markers further up the screen.
 * @type {number|null|undefined}
 */
google.maps.MarkerOptions.prototype.zIndex;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * Set a collision behavior for markers on vector maps.
 * @default <code>null</code>
 * @type {string|!google.maps.CollisionBehavior|null|undefined}
 * @deprecated <code>collisionBehavior</code> is deprecated as of July 2023.
 *     Use {@link google.maps.marker.AdvancedMarkerElement.collisionBehavior}
 *     instead.
 */
google.maps.MarkerOptions.prototype.collisionBehavior;

/**
 * This object defines the clickable region of a marker image. The shape
 * consists of two properties &mdash; <code>type</code> and <code>coord</code>
 * &mdash; which define the non-transparent region of an image.
 * @record
 */
google.maps.MarkerShape = function() {};

/**
 * The format of this attribute depends on the value of the <code>type</code>
 * and follows the w3 AREA <code>coords</code> specification found at <a
 * href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords">
 * http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords</a>. <br>The
 * <code>coords</code> attribute is an array of integers that specify the pixel
 * position of the shape relative to the top-left corner of the target image.
 * The coordinates depend on the value of <code>type</code> as follows:
 * <br>&nbsp;&nbsp;- <code>circle</code>: coords is <code>[x1,y1,r]</code> where
 * x1,y2 are the coordinates of the center of the circle, and r is the radius of
 * the circle. <br>&nbsp;&nbsp;- <code>poly</code>: coords is
 * <code>[x1,y1,x2,y2...xn,yn]</code> where each x,y pair contains the
 * coordinates of one vertex of the polygon. <br>&nbsp;&nbsp;-
 * <code>rect</code>: coords is <code>[x1,y1,x2,y2]</code> where x1,y1 are the
 * coordinates of the upper-left corner of the rectangle and x2,y2 are the
 * coordinates of the lower-right coordinates of the rectangle.
 * @type {!Array<number>|null}
 */
google.maps.MarkerShape.prototype.coords;

/**
 * Describes the shape&#39;s type and can be <code>circle</code>,
 * <code>poly</code> or <code>rect</code>.
 * @type {string}
 */
google.maps.MarkerShape.prototype.type;

/**
 * A MaxZoom result in JSON format retrieved from the MaxZoomService.
 * @record
 */
google.maps.MaxZoomResult = function() {};

/**
 * Status of the request. This property is only defined when using callbacks
 * with {@link google.maps.MaxZoomService.getMaxZoomAtLatLng} (it is not defined
 * when using Promises).
 * @type {!google.maps.MaxZoomStatus|null}
 */
google.maps.MaxZoomResult.prototype.status;

/**
 * The maximum zoom level found at the given <code>LatLng</code>.
 * @type {number}
 */
google.maps.MaxZoomResult.prototype.zoom;

/**
 * A service for obtaining the highest zoom level at which satellite imagery is
 * available for a given location.
 *
 * Access by calling `const {MaxZoomService} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.MaxZoomService = function() {};

/**
 * Returns the maximum zoom level for which detailed imagery is available at a
 * particular <code>LatLng</code> for the <code>satellite</code> map type. As
 * this request is asynchronous, you must pass a <code>callback</code> function
 * which will be executed upon completion of the request, being passed a
 * <code>MaxZoomResult</code>.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latlng
 * @param {(function(!google.maps.MaxZoomResult): void)=} callback
 * @return {!Promise<!google.maps.MaxZoomResult>}
 */
google.maps.MaxZoomService.prototype.getMaxZoomAtLatLng = function(
    latlng, callback) {};

/**
 * The status returned by the <code>MaxZoomService</code> on the completion of a
 * call to <code>getMaxZoomAtLatLng()</code>. Specify these by value, or by
 * using the constant&#39;s name. For example, <code>'OK'</code> or
 * <code>google.maps.MaxZoomStatus.OK</code>.
 *
 * Access by calling `const {MaxZoomStatus} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.MaxZoomStatus = {
  /**
   * An unknown error occurred.
   */
  ERROR: 'ERROR',
  /**
   * The response contains a valid <code>MaxZoomResult</code>.
   */
  OK: 'OK',
};

/**
 * Options for the rendering of the motion tracking control.
 * @record
 */
google.maps.MotionTrackingControlOptions = function() {};

/**
 * Position id. This is used to specify the position of this control on the
 * panorama.
 * @default {@link google.maps.ControlPosition.INLINE_END_BLOCK_END}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.MotionTrackingControlOptions.prototype.position;

/**
 * A <code>Orientation3D</code> is a three-dimensional vector used for standard
 * mathematical rotation transformations along heading, tilt, and roll.<br> <ul>
 * <li>heading is an angle in the range [0, 360) degrees.</li> <li>tilt is an
 * angle in the range [0, 360) degrees.</li> <li>roll is an angle in the range
 * [0, 360) degrees.</li> </ul>
 *
 * Access by calling `const {Orientation3D} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.Orientation3D|!google.maps.Orientation3DLiteral} value
 *     The initializing value.
 * @implements {google.maps.Orientation3DLiteral}
 * @constructor
 */
google.maps.Orientation3D = function(value) {};

/**
 * Rotation about the z-axis (normal to the Earth&#39;s surface). A value of 0
 * (the default) equals North. A positive rotation is clockwise around the
 * z-axis and specified in degrees from 0 to 360. Values above or below this
 * range will be wrapped so that they fall within the range. For example, a
 * value of -190 will be converted to 170. A value of 530 will be converted to
 * 170 as well.
 * @default <code>0</code>
 * @type {number}
 */
google.maps.Orientation3D.prototype.heading;

/**
 * Rotation about the y-axis. A positive rotation is clockwise around the y-axis
 * and specified in degrees from 0 to 360. Values above or below this range will
 * be wrapped so that they fall within the range. For example, a value of -190
 * will be converted to 170. A value of 530 will be converted to 170 as well.
 * @default <code>0</code>
 * @type {number}
 */
google.maps.Orientation3D.prototype.roll;

/**
 * Rotation about the x-axis. A positive rotation is clockwise around the x-axis
 * and specified in degrees from 0 to 360. Values above or below this range will
 * be wrapped so that they fall within the range. For example, a value of -190
 * will be converted to 170. A value of 530 will be converted to 170 as well.
 * @default <code>0</code>
 * @type {number}
 */
google.maps.Orientation3D.prototype.tilt;

/**
 * Comparison function.
 * @param {!google.maps.Orientation3D|!google.maps.Orientation3DLiteral|null}
 *     other Another Orientation3D object.
 * @return {boolean} Whether the two objects are equal.
 */
google.maps.Orientation3D.prototype.equals = function(other) {};

/**
 * Converts to JSON representation. This function is intended to be used via
 * JSON.stringify.
 * @return {!google.maps.Orientation3DLiteral}
 */
google.maps.Orientation3D.prototype.toJSON = function() {};

/**
 * Object literals are accepted in place of <code>Orientation3D</code> objects,
 * as a convenience, in many places. These are converted to
 * <code>Orientation3D</code> objects when the Maps API encounters them.
 * @record
 */
google.maps.Orientation3DLiteral = function() {};

/**
 * Rotation about the z-axis (normal to the Earth&#39;s surface). A value of 0
 * (the default) equals North. A positive rotation is clockwise around the
 * z-axis and specified in degrees from 0 to 360.
 * @type {number|null|undefined}
 */
google.maps.Orientation3DLiteral.prototype.heading;

/**
 * Rotation about the y-axis. A positive rotation is clockwise around the y-axis
 * and specified in degrees from 0 to 360.
 * @type {number|null|undefined}
 */
google.maps.Orientation3DLiteral.prototype.roll;

/**
 * Rotation about the x-axis. A positive rotation is clockwise around the x-axis
 * and specified in degrees from 0 to 360.
 * @type {number|null|undefined}
 */
google.maps.Orientation3DLiteral.prototype.tilt;

/**
 * You can implement this class if you want to display custom types of overlay
 * objects on the map. <br><br>Inherit from this class by setting your
 * overlay&#39;s prototype: <code>MyOverlay.prototype = new
 * google.maps.OverlayView();</code>. The <code>OverlayView</code> constructor
 * is guaranteed to be an empty function. <br><br>You must implement three
 * methods: <code>onAdd()</code>, <code>draw()</code>, and
 * <code>onRemove()</code>. <ul> <li>In the <code>onAdd()</code> method, you
 * should create DOM objects and append them as children of the panes.</li>
 * <li>In the <code>draw()</code> method, you should position these
 * elements.</li> <li>In the <code>onRemove()</code> method, you should remove
 * the objects from the DOM.</li> </ul> You must call <code>setMap()</code> with
 * a valid <code>Map</code> object to trigger the call to the
 * <code>onAdd()</code> method and <code>setMap(null)</code> in order to trigger
 * the <code>onRemove()</code> method. The <code>setMap()</code> method can be
 * called at the time of construction or at any point afterward when the overlay
 * should be re-shown after removing. The <code>draw()</code> method will then
 * be called whenever a map property changes that could change the position of
 * the element, such as zoom, center, or map type.
 *
 * Access by calling `const {OverlayView} = await
 * google.maps.importLibrary("maps")` or `const {OverlayView} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.OverlayView = function() {};

/**
 * Stops click, tap, drag, and wheel events on the element from bubbling up to
 * the map. Use this to prevent map dragging and zooming, as well as map
 * &quot;click&quot; events.
 * @param {!Element} element
 * @return {undefined}
 */
google.maps.OverlayView.preventMapHitsAndGesturesFrom = function(element) {};

/**
 * Stops click or tap on the element from bubbling up to the map. Use this to
 * prevent the map from triggering &quot;click&quot; events.
 * @param {!Element} element
 * @return {undefined}
 */
google.maps.OverlayView.preventMapHitsFrom = function(element) {};

/**
 * Implement this method to draw or update the overlay. Use the position from
 * projection.fromLatLngToDivPixel() to correctly position the overlay relative
 * to the MapPanes. This method is called after onAdd(), and is called on change
 * of zoom or center. It is not recommended to do computationally expensive work
 * in this method.
 * @return {undefined}
 */
google.maps.OverlayView.prototype.draw = function() {};

/**
 * @return {google.maps.Map|google.maps.StreetViewPanorama}
 */
google.maps.OverlayView.prototype.getMap = function() {};

/**
 * Returns the panes in which this OverlayView can be rendered. The panes are
 * not initialized until <code>onAdd</code> is called by the API.
 * @return {?google.maps.MapPanes}
 */
google.maps.OverlayView.prototype.getPanes = function() {};

/**
 * Returns the <code>MapCanvasProjection</code> object associated with this
 * <code>OverlayView</code>. The projection is not initialized until
 * <code>onAdd</code> is called by the API.
 * @return {!google.maps.MapCanvasProjection}
 */
google.maps.OverlayView.prototype.getProjection = function() {};

/**
 * Implement this method to initialize the overlay DOM elements. This method is
 * called once after setMap() is called with a valid map. At this point, panes
 * and projection will have been initialized.
 * @return {undefined}
 */
google.maps.OverlayView.prototype.onAdd = function() {};

/**
 * Implement this method to remove your elements from the DOM. This method is
 * called once following a call to setMap(null).
 * @return {undefined}
 */
google.maps.OverlayView.prototype.onRemove = function() {};

/**
 * Adds the overlay to the map or panorama.
 * @param {google.maps.Map|google.maps.StreetViewPanorama|null} map The map or
 *     panorama. If <code>null</code>, the layer will be removed.
 * @return {undefined}
 */
google.maps.OverlayView.prototype.setMap = function(map) {};

/**
 * @record
 */
google.maps.Padding = function() {};

/**
 * Padding for the bottom, in pixels.
 * @type {number|undefined}
 */
google.maps.Padding.prototype.bottom;

/**
 * Padding for the left, in pixels.
 * @type {number|undefined}
 */
google.maps.Padding.prototype.left;

/**
 * Padding for the right, in pixels.
 * @type {number|undefined}
 */
google.maps.Padding.prototype.right;

/**
 * Padding for the top, in pixels.
 * @type {number|undefined}
 */
google.maps.Padding.prototype.top;

/**
 * Options for the rendering of the pan control.
 * @record
 */
google.maps.PanControlOptions = function() {};

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.INLINE_END_BLOCK_END}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.PanControlOptions.prototype.position;

/**
 * Options for the Custom Pano Provider.
 * @record
 */
google.maps.PanoProviderOptions = function() {};

/**
 * If set, the renderer will use technologies (like webgl) that only work when
 * cors headers are appropriately set on the provided images. It is the
 * developer&#39;s task to serve the images correctly in combination with this
 * flag, which might otherwise lead to SecurityErrors.
 * @type {boolean|undefined}
 */
google.maps.PanoProviderOptions.prototype.cors;

/**
 * An elevation query sent by the <code>ElevationService</code> containing the
 * path along which to return sampled data. This request defines a continuous
 * path along the earth along which elevation samples should be taken at
 * evenly-spaced distances. All paths from vertex to vertex use segments of the
 * great circle between those two points.
 * @record
 */
google.maps.PathElevationRequest = function() {};

/**
 * The path along which to collect elevation values.
 * @type {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.PathElevationRequest.prototype.path;

/**
 * Required. The number of equidistant points along the given path for which to
 * retrieve elevation data, including the endpoints. The number of samples must
 * be a value between 2 and 512 inclusive.
 * @type {number}
 */
google.maps.PathElevationRequest.prototype.samples;

/**
 * An elevation response returned by the {@link google.maps.ElevationService}
 * containing the list of {@link google.maps.ElevationResult}s evenly-spaced
 * along the path of the {@link google.maps.PathElevationRequest}.
 * @record
 */
google.maps.PathElevationResponse = function() {};

/**
 * The list of {@link google.maps.ElevationResult}s matching the samples of
 * the {@link google.maps.PathElevationRequest}.
 * @type {!Array<!google.maps.ElevationResult>}
 */
google.maps.PathElevationResponse.prototype.results;

/**
 * Contains information needed to locate, identify, or describe a place for
 * a {@link google.maps.DirectionsRequest} or {@link
 * google.maps.DistanceMatrixRequest}. In this context, &quot;place&quot; means
 * a business, point of interest, or geographic location. For fetching
 * information about a place, see {@link google.maps.places.PlacesService}.
 * @record
 */
google.maps.Place = function() {};

/**
 * The <code>LatLng</code> of the entity described by this place.
 * @type {google.maps.LatLng|google.maps.LatLngLiteral|null|undefined}
 */
google.maps.Place.prototype.location;

/**
 * The place ID of the place (such as a business or point of interest). The
 * place ID is a unique identifier of a place in the Google Maps database. Note
 * that the <code>placeId</code> is the most accurate way of identifying a
 * place. If possible, you should specify the <code>placeId</code> rather than a
 * <code>query</code>. A place ID can be retrieved from any request to the
 * Places API, such as a <a
 * href="https://developers.google.com/maps/documentation/places/web-service/search">TextSearch</a>.
 * Place IDs can also be retrieved from requests to the Geocoding API. For more
 * information, see the <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-id">overview
 * of place IDs</a>.
 * @type {string|undefined}
 */
google.maps.Place.prototype.placeId;

/**
 * A search query describing the place (such as a business or point of
 * interest). An example query is &quot;Quay, Upper Level, Overseas Passenger
 * Terminal 5 Hickson Road, The Rocks NSW&quot;. If possible, you should specify
 * the <code>placeId</code> rather than a <code>query</code>. The API does not
 * guarantee the accuracy of resolving the query string to a place. If both the
 * <code>placeId</code> and <code>query</code> are provided, an error occurs.
 * @type {string|undefined}
 */
google.maps.Place.prototype.query;

/**
 * An interface representing a feature with a place ID which includes features
 * of type {@link google.maps.FeatureType.ADMINISTRATIVE_AREA_LEVEL_1}, {@link
 * google.maps.FeatureType.ADMINISTRATIVE_AREA_LEVEL_2}, {@link
 * google.maps.FeatureType.COUNTRY}, {@link
 * google.maps.FeatureType.LOCALITY}, {@link
 * google.maps.FeatureType.POSTAL_CODE}, and {@link
 * google.maps.FeatureType.SCHOOL_DISTRICT}.
 * @extends {google.maps.Feature}
 * @record
 */
google.maps.PlaceFeature = function() {};

/**
 * The {@link google.maps.places.PlaceResult.place_id}.
 * @type {string}
 */
google.maps.PlaceFeature.prototype.placeId;

/**
 * Fetches a <code>Place</code> for this <code>PlaceFeature</code>. In the
 * resulting <code>Place</code> object, the <code>id</code> and the
 * <code>displayName</code> properties will be populated. The display name will
 * be in the language the end user sees on the map. (Additional fields can be
 * subsequently requested via <code>Place.fetchFields()</code> subject to normal
 * Places API enablement and billing.) Do not call this from a
 * <code>FeatureStyleFunction</code> since only synchronous
 * FeatureStyleFunctions are supported. The promise is rejected if there was an
 * error fetching the <code>Place</code>.
 * @return {!Promise<!google.maps.places.Place>}
 */
google.maps.PlaceFeature.prototype.fetchPlace = function() {};

/**
 * @record
 */
google.maps.PlacesLibrary = function() {};

/**
 * @type {typeof google.maps.places.AccessibilityOptions}
 */
google.maps.PlacesLibrary.prototype.AccessibilityOptions;

/**
 * @type {typeof google.maps.places.AddressComponent}
 */
google.maps.PlacesLibrary.prototype.AddressComponent;

/**
 * @type {typeof google.maps.places.Attribution}
 */
google.maps.PlacesLibrary.prototype.Attribution;

/**
 * @type {typeof google.maps.places.AuthorAttribution}
 */
google.maps.PlacesLibrary.prototype.AuthorAttribution;

/**
 * @type {typeof google.maps.places.Autocomplete}
 */
google.maps.PlacesLibrary.prototype.Autocomplete;

/**
 * @type {typeof google.maps.places.AutocompleteService}
 */
google.maps.PlacesLibrary.prototype.AutocompleteService;

/**
 * @type {typeof google.maps.places.AutocompleteSessionToken}
 */
google.maps.PlacesLibrary.prototype.AutocompleteSessionToken;

/**
 * @type {typeof google.maps.places.AutocompleteSuggestion}
 */
google.maps.PlacesLibrary.prototype.AutocompleteSuggestion;

/**
 * @type {typeof google.maps.places.BusinessStatus}
 */
google.maps.PlacesLibrary.prototype.BusinessStatus;

/**
 * @type {typeof google.maps.places.ConnectorAggregation}
 */
google.maps.PlacesLibrary.prototype.ConnectorAggregation;

/**
 * @type {typeof google.maps.places.ConsumerAlert}
 */
google.maps.PlacesLibrary.prototype.ConsumerAlert;

/**
 * @type {typeof google.maps.places.ConsumerAlertDetails}
 */
google.maps.PlacesLibrary.prototype.ConsumerAlertDetails;

/**
 * @type {typeof google.maps.places.ContentBlock}
 */
google.maps.PlacesLibrary.prototype.ContentBlock;

/**
 * @type {typeof google.maps.places.EVChargeAmenitySummary}
 */
google.maps.PlacesLibrary.prototype.EVChargeAmenitySummary;

/**
 * @type {typeof google.maps.places.EVChargeOptions}
 */
google.maps.PlacesLibrary.prototype.EVChargeOptions;

/**
 * @type {typeof google.maps.places.EVConnectorType}
 */
google.maps.PlacesLibrary.prototype.EVConnectorType;

/**
 * @type {typeof google.maps.places.FormattableText}
 */
google.maps.PlacesLibrary.prototype.FormattableText;

/**
 * @type {typeof google.maps.places.FuelOptions}
 */
google.maps.PlacesLibrary.prototype.FuelOptions;

/**
 * @type {typeof google.maps.places.FuelPrice}
 */
google.maps.PlacesLibrary.prototype.FuelPrice;

/**
 * @type {typeof google.maps.places.FuelType}
 */
google.maps.PlacesLibrary.prototype.FuelType;

/**
 * @type {typeof google.maps.places.GenerativeSummary}
 */
google.maps.PlacesLibrary.prototype.GenerativeSummary;

/**
 * @type {typeof google.maps.places.GoogleMapsLinks}
 */
google.maps.PlacesLibrary.prototype.GoogleMapsLinks;

/**
 * @type {typeof google.maps.places.Money}
 */
google.maps.PlacesLibrary.prototype.Money;

/**
 * @type {typeof google.maps.places.NeighborhoodSummary}
 */
google.maps.PlacesLibrary.prototype.NeighborhoodSummary;

/**
 * @type {typeof google.maps.places.OpeningHours}
 */
google.maps.PlacesLibrary.prototype.OpeningHours;

/**
 * @type {typeof google.maps.places.OpeningHoursPeriod}
 */
google.maps.PlacesLibrary.prototype.OpeningHoursPeriod;

/**
 * @type {typeof google.maps.places.OpeningHoursPoint}
 */
google.maps.PlacesLibrary.prototype.OpeningHoursPoint;

/**
 * @type {typeof google.maps.places.ParkingOptions}
 */
google.maps.PlacesLibrary.prototype.ParkingOptions;

/**
 * @type {typeof google.maps.places.PaymentOptions}
 */
google.maps.PlacesLibrary.prototype.PaymentOptions;

/**
 * @type {typeof google.maps.places.Photo}
 */
google.maps.PlacesLibrary.prototype.Photo;

/**
 * @type {typeof google.maps.places.Place}
 */
google.maps.PlacesLibrary.prototype.Place;

/**
 * @type {typeof google.maps.places.PlaceContextualElement}
 */
google.maps.PlacesLibrary.prototype.PlaceContextualElement;

/**
 * @type {typeof google.maps.places.PlaceContextualListConfigElement}
 */
google.maps.PlacesLibrary.prototype.PlaceContextualListConfigElement;

/**
 * @type {typeof google.maps.places.PlaceContextualListLayout}
 */
google.maps.PlacesLibrary.prototype.PlaceContextualListLayout;

/**
 * @type {typeof google.maps.places.PlacePrediction}
 */
google.maps.PlacesLibrary.prototype.PlacePrediction;

/**
 * @type {typeof google.maps.places.PlacesService}
 */
google.maps.PlacesLibrary.prototype.PlacesService;

/**
 * @type {typeof google.maps.places.PlacesServiceStatus}
 */
google.maps.PlacesLibrary.prototype.PlacesServiceStatus;

/**
 * @type {typeof google.maps.places.PlusCode}
 */
google.maps.PlacesLibrary.prototype.PlusCode;

/**
 * @type {typeof google.maps.places.PostalAddress}
 */
google.maps.PlacesLibrary.prototype.PostalAddress;

/**
 * @type {typeof google.maps.places.PriceLevel}
 */
google.maps.PlacesLibrary.prototype.PriceLevel;

/**
 * @type {typeof google.maps.places.PriceRange}
 */
google.maps.PlacesLibrary.prototype.PriceRange;

/**
 * @type {typeof google.maps.places.RankBy}
 */
google.maps.PlacesLibrary.prototype.RankBy;

/**
 * @type {typeof google.maps.places.Review}
 */
google.maps.PlacesLibrary.prototype.Review;

/**
 * @type {typeof google.maps.places.ReviewSummary}
 */
google.maps.PlacesLibrary.prototype.ReviewSummary;

/**
 * @type {typeof google.maps.places.SearchBox}
 */
google.maps.PlacesLibrary.prototype.SearchBox;

/**
 * @type {typeof google.maps.places.SearchByTextRankPreference}
 */
google.maps.PlacesLibrary.prototype.SearchByTextRankPreference;

/**
 * @type {typeof google.maps.places.SearchNearbyRankPreference}
 */
google.maps.PlacesLibrary.prototype.SearchNearbyRankPreference;

/**
 * @type {typeof google.maps.places.StringRange}
 */
google.maps.PlacesLibrary.prototype.StringRange;

/**
 *
 * Access by calling `const {Point} = await google.maps.importLibrary("core")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {number} x
 * @param {number} y
 * @constructor
 */
google.maps.Point = function(x, y) {};

/**
 * The X coordinate
 * @type {number}
 */
google.maps.Point.prototype.x;

/**
 * The Y coordinate
 * @type {number}
 */
google.maps.Point.prototype.y;

/**
 * Compares two Points
 * @param {!google.maps.Point|null} other
 * @return {boolean}
 */
google.maps.Point.prototype.equals = function(other) {};

/**
 * Returns a string representation of this Point.
 * @return {string}
 * @override
 */
google.maps.Point.prototype.toString = function() {};

/**
 * This object is returned from mouse events on polylines and polygons.
 * @extends {google.maps.MapMouseEvent}
 * @record
 */
google.maps.PolyMouseEvent = function() {};

/**
 * The index of the edge within the path beneath the cursor when the event
 * occurred, if the event occurred on a mid-point on an editable polygon.
 * @type {number|undefined}
 */
google.maps.PolyMouseEvent.prototype.edge;

/**
 * The index of the path beneath the cursor when the event occurred, if the
 * event occurred on a vertex and the polygon is editable. Otherwise
 * <code>undefined</code>.
 * @type {number|undefined}
 */
google.maps.PolyMouseEvent.prototype.path;

/**
 * The index of the vertex beneath the cursor when the event occurred, if the
 * event occurred on a vertex and the polyline or polygon is editable. If the
 * event does not occur on a vertex, the value is <code>undefined</code>.
 * @type {number|undefined}
 */
google.maps.PolyMouseEvent.prototype.vertex;

/**
 * A polygon (like a polyline) defines a series of connected coordinates in an
 * ordered sequence. Additionally, polygons form a closed loop and define a
 * filled region. See the samples in the developer&#39;s guide, starting with a
 * <a
 * href="https://developers.google.com/maps/documentation/javascript/examples/polygon-simple">simple
 * polygon</a>, a <a
 * href="https://developers.google.com/maps/documentation/javascript/examples/polygon-hole">polygon
 * with a hole</a>, and more. Note that you can also use the <a
 * href="https://developers.google.com/maps/documentation/javascript/reference/data#Data.Polygon">Data
 * layer</a> to create a polygon. The Data layer offers a simpler way of
 * creating holes because it handles the order of the inner and outer paths for
 * you.
 *
 * Access by calling `const {Polygon} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {(!google.maps.PolygonOptions|null)=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.Polygon = function(opts) {};

/**
 * Returns whether this shape can be dragged by the user.
 * @return {boolean}
 */
google.maps.Polygon.prototype.getDraggable = function() {};

/**
 * Returns whether this shape can be edited by the user.
 * @return {boolean}
 */
google.maps.Polygon.prototype.getEditable = function() {};

/**
 * Returns the map on which this shape is attached.
 * @return {!google.maps.Map|null}
 */
google.maps.Polygon.prototype.getMap = function() {};

/**
 * Retrieves the first path.
 * @return {!google.maps.MVCArray<!google.maps.LatLng>}
 */
google.maps.Polygon.prototype.getPath = function() {};

/**
 * Retrieves the paths for this polygon.
 * @return {!google.maps.MVCArray<!google.maps.MVCArray<!google.maps.LatLng>>}
 */
google.maps.Polygon.prototype.getPaths = function() {};

/**
 * Returns whether this poly is visible on the map.
 * @return {boolean}
 */
google.maps.Polygon.prototype.getVisible = function() {};

/**
 * If set to <code>true</code>, the user can drag this shape over the map. The
 * <code>geodesic</code> property defines the mode of dragging.
 * @param {boolean} draggable
 * @return {undefined}
 */
google.maps.Polygon.prototype.setDraggable = function(draggable) {};

/**
 * If set to <code>true</code>, the user can edit this shape by dragging the
 * control points shown at the vertices and on each segment.
 * @param {boolean} editable
 * @return {undefined}
 */
google.maps.Polygon.prototype.setEditable = function(editable) {};

/**
 * Renders this shape on the specified map. If map is set to <code>null</code>,
 * the shape will be removed.
 * @param {!google.maps.Map|null} map
 * @return {undefined}
 */
google.maps.Polygon.prototype.setMap = function(map) {};

/**
 * @param {!google.maps.PolygonOptions|null} options
 * @return {undefined}
 */
google.maps.Polygon.prototype.setOptions = function(options) {};

/**
 * Sets the first path. See <em><code><a
 * href="#PolygonOptions">PolygonOptions</a></code></em> for more details.
 * @param {!google.maps.MVCArray<!google.maps.LatLng>|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     path
 * @return {undefined}
 */
google.maps.Polygon.prototype.setPath = function(path) {};

/**
 * Sets the path for this polygon.
 * @param {!google.maps.MVCArray<!google.maps.MVCArray<!google.maps.LatLng>>|!google.maps.MVCArray<!google.maps.LatLng>|!Array<!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>>|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     paths
 * @return {undefined}
 */
google.maps.Polygon.prototype.setPaths = function(paths) {};

/**
 * Hides this poly if set to <code>false</code>.
 * @param {boolean} visible
 * @return {undefined}
 */
google.maps.Polygon.prototype.setVisible = function(visible) {};

/**
 * PolygonOptions object used to define the properties that can be set on a
 * Polygon.
 * @record
 */
google.maps.PolygonOptions = function() {};

/**
 * Indicates whether this <code>Polygon</code> handles mouse events.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolygonOptions.prototype.clickable;

/**
 * If set to <code>true</code>, the user can drag this shape over the map. The
 * <code>geodesic</code> property defines the mode of dragging.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolygonOptions.prototype.draggable;

/**
 * If set to <code>true</code>, the user can edit this shape by dragging the
 * control points shown at the vertices and on each segment.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolygonOptions.prototype.editable;

/**
 * The fill color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.PolygonOptions.prototype.fillColor;

/**
 * The fill opacity between 0.0 and 1.0
 * @type {number|null|undefined}
 */
google.maps.PolygonOptions.prototype.fillOpacity;

/**
 * When <code>true</code>, edges of the polygon are interpreted as geodesic and
 * will follow the curvature of the Earth. When <code>false</code>, edges of the
 * polygon are rendered as straight lines in screen space. Note that the shape
 * of a geodesic polygon may appear to change when dragged, as the dimensions
 * are maintained relative to the surface of the earth.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolygonOptions.prototype.geodesic;

/**
 * Map on which to display Polygon.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.PolygonOptions.prototype.map;

/**
 * The ordered sequence of coordinates that designates a closed loop. Unlike
 * polylines, a polygon may consist of one or more paths. As a result, the paths
 * property may specify one or more arrays of <code>LatLng</code> coordinates.
 * Paths are closed automatically; do not repeat the first vertex of the path as
 * the last vertex. Simple polygons may be defined using a single array of
 * <code>LatLng</code>s. More complex polygons may specify an array of arrays.
 * Any simple arrays are converted into <code><a
 * href="#MVCArray">MVCArray</a></code>s. Inserting or removing
 * <code>LatLng</code>s from the <code>MVCArray</code> will automatically update
 * the polygon on the map.
 * @type {!google.maps.MVCArray<!google.maps.MVCArray<!google.maps.LatLng>>|!google.maps.MVCArray<!google.maps.LatLng>|!Array<!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>>|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.PolygonOptions.prototype.paths;

/**
 * The stroke color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.PolygonOptions.prototype.strokeColor;

/**
 * The stroke opacity between 0.0 and 1.0
 * @type {number|null|undefined}
 */
google.maps.PolygonOptions.prototype.strokeOpacity;

/**
 * The stroke position.
 * @default {@link google.maps.StrokePosition.CENTER}
 * @type {!google.maps.StrokePosition|null|undefined}
 */
google.maps.PolygonOptions.prototype.strokePosition;

/**
 * The stroke width in pixels.
 * @type {number|null|undefined}
 */
google.maps.PolygonOptions.prototype.strokeWeight;

/**
 * Whether this polygon is visible on the map.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolygonOptions.prototype.visible;

/**
 * The zIndex compared to other polys.
 * @type {number|null|undefined}
 */
google.maps.PolygonOptions.prototype.zIndex;

/**
 * A polyline is a linear overlay of connected line segments on the map.
 *
 * Access by calling `const {Polyline} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {(!google.maps.PolylineOptions|null)=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.Polyline = function(opts) {};

/**
 * Returns whether this shape can be dragged by the user.
 * @return {boolean}
 */
google.maps.Polyline.prototype.getDraggable = function() {};

/**
 * Returns whether this shape can be edited by the user.
 * @return {boolean}
 */
google.maps.Polyline.prototype.getEditable = function() {};

/**
 * Returns the map on which this shape is attached.
 * @return {!google.maps.Map|null}
 */
google.maps.Polyline.prototype.getMap = function() {};

/**
 * Retrieves the path.
 * @return {!google.maps.MVCArray<!google.maps.LatLng>}
 */
google.maps.Polyline.prototype.getPath = function() {};

/**
 * Returns whether this poly is visible on the map.
 * @return {boolean}
 */
google.maps.Polyline.prototype.getVisible = function() {};

/**
 * If set to <code>true</code>, the user can drag this shape over the map. The
 * <code>geodesic</code> property defines the mode of dragging.
 * @param {boolean} draggable
 * @return {undefined}
 */
google.maps.Polyline.prototype.setDraggable = function(draggable) {};

/**
 * If set to <code>true</code>, the user can edit this shape by dragging the
 * control points shown at the vertices and on each segment.
 * @param {boolean} editable
 * @return {undefined}
 */
google.maps.Polyline.prototype.setEditable = function(editable) {};

/**
 * Renders this shape on the specified map. If map is set to <code>null</code>,
 * the shape will be removed.
 * @param {!google.maps.Map|null} map
 * @return {undefined}
 */
google.maps.Polyline.prototype.setMap = function(map) {};

/**
 * @param {!google.maps.PolylineOptions|null} options
 * @return {undefined}
 */
google.maps.Polyline.prototype.setOptions = function(options) {};

/**
 * Sets the path. See <em><code><a
 * href="#PolylineOptions">PolylineOptions</a></code></em> for more details.
 * @param {!google.maps.MVCArray<!google.maps.LatLng>|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     path
 * @return {undefined}
 */
google.maps.Polyline.prototype.setPath = function(path) {};

/**
 * Hides this poly if set to <code>false</code>.
 * @param {boolean} visible
 * @return {undefined}
 */
google.maps.Polyline.prototype.setVisible = function(visible) {};

/**
 * PolylineOptions object used to define the properties that can be set on a
 * Polyline.
 * @record
 */
google.maps.PolylineOptions = function() {};

/**
 * Indicates whether this <code>Polyline</code> handles mouse events.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolylineOptions.prototype.clickable;

/**
 * If set to <code>true</code>, the user can drag this shape over the map. The
 * <code>geodesic</code> property defines the mode of dragging.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolylineOptions.prototype.draggable;

/**
 * If set to <code>true</code>, the user can edit this shape by dragging the
 * control points shown at the vertices and on each segment.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolylineOptions.prototype.editable;

/**
 * When <code>true</code>, edges of the polygon are interpreted as geodesic and
 * will follow the curvature of the Earth. When <code>false</code>, edges of the
 * polygon are rendered as straight lines in screen space. Note that the shape
 * of a geodesic polygon may appear to change when dragged, as the dimensions
 * are maintained relative to the surface of the earth.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolylineOptions.prototype.geodesic;

/**
 * The icons to be rendered along the polyline.
 * @type {!Array<!google.maps.IconSequence>|null|undefined}
 */
google.maps.PolylineOptions.prototype.icons;

/**
 * Map on which to display Polyline.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.PolylineOptions.prototype.map;

/**
 * The ordered sequence of coordinates of the Polyline. This path may be
 * specified using either a simple array of <code>LatLng</code>s, or an
 * <code>MVCArray</code> of <code>LatLng</code>s. Note that if you pass a simple
 * array, it will be converted to an <code>MVCArray</code> Inserting or removing
 * LatLngs in the <code>MVCArray</code> will automatically update the polyline
 * on the map.
 * @type {!google.maps.MVCArray<!google.maps.LatLng>|!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.PolylineOptions.prototype.path;

/**
 * The stroke color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.PolylineOptions.prototype.strokeColor;

/**
 * The stroke opacity between 0.0 and 1.0.
 * @type {number|null|undefined}
 */
google.maps.PolylineOptions.prototype.strokeOpacity;

/**
 * The stroke width in pixels.
 * @type {number|null|undefined}
 */
google.maps.PolylineOptions.prototype.strokeWeight;

/**
 * Whether this polyline is visible on the map.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.PolylineOptions.prototype.visible;

/**
 * The zIndex compared to other polys.
 * @type {number|null|undefined}
 */
google.maps.PolylineOptions.prototype.zIndex;

/**
 * Projection interface.
 * @record
 */
google.maps.Projection = function() {};

/**
 * Translates from the LatLng cylinder to the Point plane. This interface
 * specifies a function which implements translation from given
 * <code>LatLng</code> values to world coordinates on the map projection. The
 * Maps API calls this method when it needs to plot locations on screen.
 * <code>Projection</code> objects must implement this method, but may return
 * <code>null</code> if the projection cannot calculate the <code>Point</code>.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} latLng
 * @param {!google.maps.Point=} point
 * @return {!google.maps.Point|null}
 */
google.maps.Projection.prototype.fromLatLngToPoint = function(latLng, point) {};

/**
 * This interface specifies a function which implements translation from world
 * coordinates on a map projection to <code>LatLng</code> values. The Maps API
 * calls this method when it needs to translate actions on screen to positions
 * on the map. <code>Projection</code> objects must implement this method, but
 * may return <code>null</code> if the projection cannot calculate the
 * <code>LatLng</code>.
 * @param {!google.maps.Point} pixel
 * @param {boolean=} noClampNoWrap
 * @return {!google.maps.LatLng|null}
 */
google.maps.Projection.prototype.fromPointToLatLng = function(
    pixel, noClampNoWrap) {};

/**
 * The status returned by a web service. See <a
 * href="https://grpc.github.io/grpc/core/md_doc_statuscodes.html">https://grpc.github.io/grpc/core/md_doc_statuscodes.html</a>.
 *
 * Access by calling `const {RPCStatus} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.RPCStatus = {
  /**
   * The operation was aborted, typically due to a concurrency issue such as a
   * sequencer check failure or transaction abort.
   */
  ABORTED: 'ABORTED',
  /**
   * The entity that a client attempted to create (e.g., file or directory)
   * already exists.
   */
  ALREADY_EXISTS: 'ALREADY_EXISTS',
  /**
   * The operation was cancelled, typically by the caller.
   */
  CANCELLED: 'CANCELLED',
  /**
   * Unrecoverable data loss or corruption.
   */
  DATA_LOSS: 'DATA_LOSS',
  /**
   * The deadline expired before the operation could complete. For operations
   * that change the state of the system, this error may be returned even if the
   * operation has completed successfully. For example, a successful response
   * from a server could have been delayed long.
   */
  DEADLINE_EXCEEDED: 'DEADLINE_EXCEEDED',
  /**
   * The operation was rejected because the system is not in a state required
   * for the operation&#39;s execution.
   */
  FAILED_PRECONDITION: 'FAILED_PRECONDITION',
  /**
   * Internal errors. This means that some invariants expected by the underlying
   * system have been broken. This error code is reserved for serious errors.
   */
  INTERNAL: 'INTERNAL',
  /**
   * The client specified an invalid argument. Note that this differs from
   * <code>FAILED_PRECONDITION</code>. <code>INVALID_ARGUMENT</code> indicates
   * arguments that are problematic regardless of the state of the system (e.g.,
   * a malformed file name).
   */
  INVALID_ARGUMENT: 'INVALID_ARGUMENT',
  /**
   * Some requested entity (e.g., file or directory) was not found.
   */
  NOT_FOUND: 'NOT_FOUND',
  /**
   * Not an error; returned on success.
   */
  OK: 'OK',
  /**
   * The operation was attempted past the valid range. E.g., seeking or reading
   * past end-of-file. Unlike <code>INVALID_ARGUMENT</code>, this error
   * indicates a problem that may be fixed if the system state changes. For
   * example, a 32-bit file system will generate <code>INVALID_ARGUMENT</code>
   * if asked to read at an offset that is not in the range [0,2^32-1], but it
   * will generate <code>OUT_OF_RANGE</code> if asked to read from an offset
   * past the current file size.
   */
  OUT_OF_RANGE: 'OUT_OF_RANGE',
  /**
   * The caller does not have permission to execute the specified operation.
   * This error code does not imply the request is valid or the requested entity
   * exists or satisfies other pre-conditions.
   */
  PERMISSION_DENIED: 'PERMISSION_DENIED',
  /**
   * Some resource has been exhausted, perhaps a per-user quota, or perhaps the
   * entire file system is out of space.
   */
  RESOURCE_EXHAUSTED: 'RESOURCE_EXHAUSTED',
  /**
   * The request does not have valid authentication credentials for the
   * operation.
   */
  UNAUTHENTICATED: 'UNAUTHENTICATED',
  /**
   * The service is currently unavailable. This is most likely a transient
   * condition, which can be corrected by retrying with a backoff. Note that it
   * is not always safe to retry non-idempotent operations.
   */
  UNAVAILABLE: 'UNAVAILABLE',
  /**
   * Operation is not implemented or not supported/enabled in this service.
   */
  UNIMPLEMENTED: 'UNIMPLEMENTED',
  /**
   * Unknown error. For example, this error may be returned when a status
   * received from another address space belongs to an error space that is not
   * known in this address space. Also errors raised by APIs that do not return
   * enough error information may be converted to this error.
   */
  UNKNOWN: 'UNKNOWN',
};

/**
 * A rectangle overlay.
 *
 * Access by calling `const {Rectangle} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {(!google.maps.RectangleOptions|null)=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.Rectangle = function(opts) {};

/**
 * Returns the bounds of this rectangle.
 * @return {!google.maps.LatLngBounds|null}
 */
google.maps.Rectangle.prototype.getBounds = function() {};

/**
 * Returns whether this rectangle can be dragged by the user.
 * @return {boolean}
 */
google.maps.Rectangle.prototype.getDraggable = function() {};

/**
 * Returns whether this rectangle can be edited by the user.
 * @return {boolean}
 */
google.maps.Rectangle.prototype.getEditable = function() {};

/**
 * Returns the map on which this rectangle is displayed.
 * @return {!google.maps.Map|null}
 */
google.maps.Rectangle.prototype.getMap = function() {};

/**
 * Returns whether this rectangle is visible on the map.
 * @return {boolean}
 */
google.maps.Rectangle.prototype.getVisible = function() {};

/**
 * Sets the bounds of this rectangle.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null}
 *     bounds
 * @return {undefined}
 */
google.maps.Rectangle.prototype.setBounds = function(bounds) {};

/**
 * If set to <code>true</code>, the user can drag this rectangle over the map.
 * @param {boolean} draggable
 * @return {undefined}
 */
google.maps.Rectangle.prototype.setDraggable = function(draggable) {};

/**
 * If set to <code>true</code>, the user can edit this rectangle by dragging the
 * control points shown at the corners and on each edge.
 * @param {boolean} editable
 * @return {undefined}
 */
google.maps.Rectangle.prototype.setEditable = function(editable) {};

/**
 * Renders the rectangle on the specified map. If map is set to
 * <code>null</code>, the rectangle will be removed.
 * @param {!google.maps.Map|null} map
 * @return {undefined}
 */
google.maps.Rectangle.prototype.setMap = function(map) {};

/**
 * @param {!google.maps.RectangleOptions|null} options
 * @return {undefined}
 */
google.maps.Rectangle.prototype.setOptions = function(options) {};

/**
 * Hides this rectangle if set to <code>false</code>.
 * @param {boolean} visible
 * @return {undefined}
 */
google.maps.Rectangle.prototype.setVisible = function(visible) {};

/**
 * RectangleOptions object used to define the properties that can be set on a
 * Rectangle.
 * @record
 */
google.maps.RectangleOptions = function() {};

/**
 * The bounds.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.RectangleOptions.prototype.bounds;

/**
 * Indicates whether this <code>Rectangle</code> handles mouse events.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.RectangleOptions.prototype.clickable;

/**
 * If set to <code>true</code>, the user can drag this rectangle over the map.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.RectangleOptions.prototype.draggable;

/**
 * If set to <code>true</code>, the user can edit this rectangle by dragging the
 * control points shown at the corners and on each edge.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.RectangleOptions.prototype.editable;

/**
 * The fill color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.RectangleOptions.prototype.fillColor;

/**
 * The fill opacity between 0.0 and 1.0
 * @type {number|null|undefined}
 */
google.maps.RectangleOptions.prototype.fillOpacity;

/**
 * Map on which to display Rectangle.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.RectangleOptions.prototype.map;

/**
 * The stroke color. All CSS3 colors are supported except for extended named
 * colors.
 * @type {string|null|undefined}
 */
google.maps.RectangleOptions.prototype.strokeColor;

/**
 * The stroke opacity between 0.0 and 1.0
 * @type {number|null|undefined}
 */
google.maps.RectangleOptions.prototype.strokeOpacity;

/**
 * The stroke position.
 * @default {@link google.maps.StrokePosition.CENTER}
 * @type {!google.maps.StrokePosition|null|undefined}
 */
google.maps.RectangleOptions.prototype.strokePosition;

/**
 * The stroke width in pixels.
 * @type {number|null|undefined}
 */
google.maps.RectangleOptions.prototype.strokeWeight;

/**
 * Whether this rectangle is visible on the map.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.RectangleOptions.prototype.visible;

/**
 * The zIndex compared to other polys.
 * @type {number|null|undefined}
 */
google.maps.RectangleOptions.prototype.zIndex;

/**
 *
 * Access by calling `const {RenderingType} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.RenderingType = {
  /**
   * Indicates that the map is a raster map.
   */
  RASTER: 'RASTER',
  /**
   * Indicates that it is unknown yet whether the map is vector or raster,
   * because the map has not finished initializing yet.
   */
  UNINITIALIZED: 'UNINITIALIZED',
  /**
   * Indicates that the map is a vector map.
   */
  VECTOR: 'VECTOR',
};

/**
 * Options for the rendering of the rotate control.
 * @record
 */
google.maps.RotateControlOptions = function() {};

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.INLINE_END_BLOCK_END}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.RotateControlOptions.prototype.position;

/**
 * @record
 */
google.maps.RoutesLibrary = function() {};

/**
 * @type {typeof google.maps.routes.ComputeRouteMatrixExtraComputation}
 */
google.maps.RoutesLibrary.prototype.ComputeRouteMatrixExtraComputation;

/**
 * @type {typeof google.maps.routes.ComputeRoutesExtraComputation}
 */
google.maps.RoutesLibrary.prototype.ComputeRoutesExtraComputation;

/**
 * @type {typeof google.maps.routes.DirectionalLocation}
 */
google.maps.RoutesLibrary.prototype.DirectionalLocation;

/**
 * @type {typeof google.maps.DirectionsRenderer}
 */
google.maps.RoutesLibrary.prototype.DirectionsRenderer;

/**
 * @type {typeof google.maps.DirectionsService}
 */
google.maps.RoutesLibrary.prototype.DirectionsService;

/**
 * @type {typeof google.maps.DirectionsStatus}
 */
google.maps.RoutesLibrary.prototype.DirectionsStatus;

/**
 * @type {typeof google.maps.DistanceMatrixElementStatus}
 */
google.maps.RoutesLibrary.prototype.DistanceMatrixElementStatus;

/**
 * @type {typeof google.maps.DistanceMatrixService}
 */
google.maps.RoutesLibrary.prototype.DistanceMatrixService;

/**
 * @type {typeof google.maps.DistanceMatrixStatus}
 */
google.maps.RoutesLibrary.prototype.DistanceMatrixStatus;

/**
 * @type {typeof google.maps.routes.FallbackInfo}
 */
google.maps.RoutesLibrary.prototype.FallbackInfo;

/**
 * @type {typeof google.maps.routes.FallbackReason}
 */
google.maps.RoutesLibrary.prototype.FallbackReason;

/**
 * @type {typeof google.maps.routes.FallbackRoutingMode}
 */
google.maps.RoutesLibrary.prototype.FallbackRoutingMode;

/**
 * @type {typeof google.maps.routes.GeocodedWaypoint}
 */
google.maps.RoutesLibrary.prototype.GeocodedWaypoint;

/**
 * @type {typeof google.maps.routes.GeocodingResults}
 */
google.maps.RoutesLibrary.prototype.GeocodingResults;

/**
 * @type {typeof google.maps.routes.MultiModalSegment}
 */
google.maps.RoutesLibrary.prototype.MultiModalSegment;

/**
 * @type {typeof google.maps.routes.PolylineDetailInfo}
 */
google.maps.RoutesLibrary.prototype.PolylineDetailInfo;

/**
 * @type {typeof google.maps.routes.PolylineDetails}
 */
google.maps.RoutesLibrary.prototype.PolylineDetails;

/**
 * @type {typeof google.maps.routes.PolylineQuality}
 */
google.maps.RoutesLibrary.prototype.PolylineQuality;

/**
 * @type {typeof google.maps.routes.ReferenceRoute}
 */
google.maps.RoutesLibrary.prototype.ReferenceRoute;

/**
 * @type {typeof google.maps.routes.RoadFeatureState}
 */
google.maps.RoutesLibrary.prototype.RoadFeatureState;

/**
 * @type {typeof google.maps.routes.Route}
 */
google.maps.RoutesLibrary.prototype.Route;

/**
 * @type {typeof google.maps.routes.RouteLabel}
 */
google.maps.RoutesLibrary.prototype.RouteLabel;

/**
 * @type {typeof google.maps.routes.RouteLeg}
 */
google.maps.RoutesLibrary.prototype.RouteLeg;

/**
 * @type {typeof google.maps.routes.RouteLegLocalizedValues}
 */
google.maps.RoutesLibrary.prototype.RouteLegLocalizedValues;

/**
 * @type {typeof google.maps.routes.RouteLegStep}
 */
google.maps.RoutesLibrary.prototype.RouteLegStep;

/**
 * @type {typeof google.maps.routes.RouteLegStepLocalizedValues}
 */
google.maps.RoutesLibrary.prototype.RouteLegStepLocalizedValues;

/**
 * @type {typeof google.maps.routes.RouteLegTravelAdvisory}
 */
google.maps.RoutesLibrary.prototype.RouteLegTravelAdvisory;

/**
 * @type {typeof google.maps.routes.RouteLocalizedValues}
 */
google.maps.RoutesLibrary.prototype.RouteLocalizedValues;

/**
 * @type {typeof google.maps.routes.RouteMatrix}
 */
google.maps.RoutesLibrary.prototype.RouteMatrix;

/**
 * @type {typeof google.maps.routes.RouteMatrixItem}
 */
google.maps.RoutesLibrary.prototype.RouteMatrixItem;

/**
 * @type {typeof google.maps.routes.RouteMatrixItemCondition}
 */
google.maps.RoutesLibrary.prototype.RouteMatrixItemCondition;

/**
 * @type {typeof google.maps.routes.RouteMatrixItemError}
 */
google.maps.RoutesLibrary.prototype.RouteMatrixItemError;

/**
 * @type {typeof google.maps.routes.RouteMatrixItemLocalizedValues}
 */
google.maps.RoutesLibrary.prototype.RouteMatrixItemLocalizedValues;

/**
 * @type {typeof google.maps.routes.RouteMatrixRow}
 */
google.maps.RoutesLibrary.prototype.RouteMatrixRow;

/**
 * @type {typeof google.maps.routes.RouteTravelAdvisory}
 */
google.maps.RoutesLibrary.prototype.RouteTravelAdvisory;

/**
 * @type {typeof google.maps.routes.RoutingPreference}
 */
google.maps.RoutesLibrary.prototype.RoutingPreference;

/**
 * @type {typeof google.maps.routes.Speed}
 */
google.maps.RoutesLibrary.prototype.Speed;

/**
 * @type {typeof google.maps.routes.SpeedReadingInterval}
 */
google.maps.RoutesLibrary.prototype.SpeedReadingInterval;

/**
 * @type {typeof google.maps.routes.StepsOverview}
 */
google.maps.RoutesLibrary.prototype.StepsOverview;

/**
 * @type {typeof google.maps.routes.TollInfo}
 */
google.maps.RoutesLibrary.prototype.TollInfo;

/**
 * @type {typeof google.maps.TrafficModel}
 */
google.maps.RoutesLibrary.prototype.TrafficModel;

/**
 * @type {typeof google.maps.routes.TransitAgency}
 */
google.maps.RoutesLibrary.prototype.TransitAgency;

/**
 * @type {typeof google.maps.routes.TransitDetails}
 */
google.maps.RoutesLibrary.prototype.TransitDetails;

/**
 * @type {typeof google.maps.routes.TransitLine}
 */
google.maps.RoutesLibrary.prototype.TransitLine;

/**
 * @type {typeof google.maps.TransitMode}
 */
google.maps.RoutesLibrary.prototype.TransitMode;

/**
 * @type {typeof google.maps.TransitRoutePreference}
 */
google.maps.RoutesLibrary.prototype.TransitRoutePreference;

/**
 * @type {typeof google.maps.routes.TransitStop}
 */
google.maps.RoutesLibrary.prototype.TransitStop;

/**
 * @type {typeof google.maps.routes.TransitVehicle}
 */
google.maps.RoutesLibrary.prototype.TransitVehicle;

/**
 * @type {typeof google.maps.TravelMode}
 */
google.maps.RoutesLibrary.prototype.TravelMode;

/**
 * @type {typeof google.maps.routes.VehicleEmissionType}
 */
google.maps.RoutesLibrary.prototype.VehicleEmissionType;

/**
 * @type {typeof google.maps.VehicleType}
 */
google.maps.RoutesLibrary.prototype.VehicleType;

/**
 * Options for the rendering of the scale control.
 * @record
 */
google.maps.ScaleControlOptions = function() {};

/**
 * Style id. Used to select what style of scale control to display.
 * @type {!google.maps.ScaleControlStyle|null|undefined}
 */
google.maps.ScaleControlOptions.prototype.style;

/**
 * Identifiers for scale control ids.
 * @enum {number}
 */
google.maps.ScaleControlStyle = {
  /**
   * The standard scale control.
   */
  DEFAULT: 0,
};

/**
 * Settings which control the behavior of the Maps JavaScript API as a whole.
 *
 * Access by calling `const {Settings} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.Settings = function() {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * A collection of unique experience IDs to which to attribute Maps JS API
 * calls. The returned value is a copy of the internal value that is stored in
 * the <code>Settings</code> class singleton instance. Operations on
 * <code>google.maps.Settings.getInstance().experienceIds</code> will therefore
 * only modify the copy and not the internal value.<br/><br/>To update the
 * internal value, set the property equal to the new value on the singleton
 * instance (ex: <code>google.maps.Settings.getInstance().experienceIds =
 * [experienceId];</code>).
 * @type {!Iterable<string>}
 */
google.maps.Settings.prototype.experienceIds;

/**
 * Set this property to a function that returns a promise which resolves to a
 * Firebase App Check token result.
 * @type {function(): !Promise<!google.maps.MapsAppCheckTokenResult>}
 */
google.maps.Settings.prototype.fetchAppCheckToken;

/**
 * Returns the singleton instance of <code>google.maps.Settings</code>.
 * @return {!google.maps.Settings}
 */
google.maps.Settings.getInstance = function() {};

/**
 *
 * Access by calling `const {Size} = await google.maps.importLibrary("core")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {number} width
 * @param {number} height
 * @param {string=} widthUnit
 * @param {string=} heightUnit
 * @constructor
 */
google.maps.Size = function(width, height, widthUnit, heightUnit) {};

/**
 * The height along the y-axis, in pixels.
 * @type {number}
 */
google.maps.Size.prototype.height;

/**
 * The width along the x-axis, in pixels.
 * @type {number}
 */
google.maps.Size.prototype.width;

/**
 * Compares two Sizes.
 * @param {!google.maps.Size|null} other
 * @return {boolean}
 */
google.maps.Size.prototype.equals = function(other) {};

/**
 * Returns a string representation of this Size.
 * @return {string}
 * @override
 */
google.maps.Size.prototype.toString = function() {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * An enum representing the relationship in space between the landmark and the
 * target.
 *
 * Access by calling `const {SpatialRelationship} = await
 * google.maps.importLibrary("geocoding")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.SpatialRelationship = {
  /**
   * The target is directly opposite the landmark on the other side of the road.
   */
  ACROSS_THE_ROAD: 'ACROSS_THE_ROAD',
  /**
   * Not on the same route as the landmark but a single turn away.
   */
  AROUND_THE_CORNER: 'AROUND_THE_CORNER',
  /**
   * Close to the landmark&#39;s structure but further away from its access
   * point.
   */
  BEHIND: 'BEHIND',
  /**
   * The target is directly adjacent to the landmark.
   */
  BESIDE: 'BESIDE',
  /**
   * On the same route as the landmark but not besides or across.
   */
  DOWN_THE_ROAD: 'DOWN_THE_ROAD',
  /**
   * This is the default relationship when nothing more specific below applies.
   */
  NEAR: 'NEAR',
  /**
   * The landmark has a spatial geometry and the target is within its bounds.
   */
  WITHIN: 'WITHIN',
};

/**
 * Options for the rendering of the Street View address control.
 * @record
 */
google.maps.StreetViewAddressControlOptions = function() {};

/**
 * Position id. This id is used to specify the position of the control on the
 * map. The default position is <code>TOP_LEFT</code>.
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.StreetViewAddressControlOptions.prototype.position;

/**
 * Options for the rendering of the Street View pegman control on the map.
 * @record
 */
google.maps.StreetViewControlOptions = function() {};

/**
 * Position id. Used to specify the position of the control on the map. The
 * default position is embedded within the navigation (zoom and pan) controls.
 * If this position is empty or the same as that specified in the
 * <code>zoomControlOptions</code> or <code>panControlOptions</code>, the Street
 * View control will be displayed as part of the navigation controls. Otherwise,
 * it will be displayed separately.
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.StreetViewControlOptions.prototype.position;

/**
 * Specifies the sources of panoramas to search. This allows a restriction to
 * search for just official Google panoramas for example. Setting multiple
 * sources will be evaluated as the intersection of those sources. Note:
 * the {@link google.maps.StreetViewSource.OUTDOOR} source is not supported at
 * this time.
 * @default [{@link google.maps.StreetViewSource.DEFAULT}]
 * @type {!Iterable<!google.maps.StreetViewSource>|null|undefined}
 */
google.maps.StreetViewControlOptions.prototype.sources;

/**
 * A layer that illustrates the locations where Street View is available.
 *
 * Access by calling `const {StreetViewCoverageLayer} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.StreetViewCoverageLayer = function() {};

/**
 * Returns the map on which this layer is displayed.
 * @return {!google.maps.Map|null}
 */
google.maps.StreetViewCoverageLayer.prototype.getMap = function() {};

/**
 * Renders the layer on the specified map. If the map is set to null, the layer
 * will be removed.
 * @param {!google.maps.Map|null} map
 * @return {undefined}
 */
google.maps.StreetViewCoverageLayer.prototype.setMap = function(map) {};

/**
 * @record
 */
google.maps.StreetViewLibrary = function() {};

/**
 * @type {typeof google.maps.InfoWindow}
 */
google.maps.StreetViewLibrary.prototype.InfoWindow;

/**
 * @type {typeof google.maps.OverlayView}
 */
google.maps.StreetViewLibrary.prototype.OverlayView;

/**
 * @type {typeof google.maps.StreetViewCoverageLayer}
 */
google.maps.StreetViewLibrary.prototype.StreetViewCoverageLayer;

/**
 * @type {typeof google.maps.StreetViewPanorama}
 */
google.maps.StreetViewLibrary.prototype.StreetViewPanorama;

/**
 * @type {typeof google.maps.StreetViewPreference}
 */
google.maps.StreetViewLibrary.prototype.StreetViewPreference;

/**
 * @type {typeof google.maps.StreetViewService}
 */
google.maps.StreetViewLibrary.prototype.StreetViewService;

/**
 * @type {typeof google.maps.StreetViewSource}
 */
google.maps.StreetViewLibrary.prototype.StreetViewSource;

/**
 * @type {typeof google.maps.StreetViewStatus}
 */
google.maps.StreetViewLibrary.prototype.StreetViewStatus;

/**
 * A collection of references to adjacent Street View panos.
 * @record
 */
google.maps.StreetViewLink = function() {};

/**
 * A localized string describing the link.
 * @type {string|null}
 */
google.maps.StreetViewLink.prototype.description;

/**
 * The heading of the link.
 * @type {number|null}
 */
google.maps.StreetViewLink.prototype.heading;

/**
 * A unique identifier for the panorama. This id is stable within a session but
 * unstable across sessions.
 * @type {string|null}
 */
google.maps.StreetViewLink.prototype.pano;

/**
 * A representation of a location in the Street View panorama.
 * @record
 */
google.maps.StreetViewLocation = function() {};

/**
 * A localized string describing the location.
 * @type {string|null|undefined}
 */
google.maps.StreetViewLocation.prototype.description;

/**
 * The latlng of the panorama.
 * @type {!google.maps.LatLng|null|undefined}
 */
google.maps.StreetViewLocation.prototype.latLng;

/**
 * A unique identifier for the panorama. This is stable within a session but
 * unstable across sessions.
 * @type {string}
 */
google.maps.StreetViewLocation.prototype.pano;

/**
 * Short description of the location.
 * @type {string|null|undefined}
 */
google.maps.StreetViewLocation.prototype.shortDescription;

/**
 * A Street View request to be sent with <code>getPanorama</code>.
 * <code>StreetViewLocationRequest</code> lets you search for a Street View
 * panoroma at a specified location.
 * @record
 */
google.maps.StreetViewLocationRequest = function() {};

/**
 * Specifies the location where to search for a Street View panorama.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.StreetViewLocationRequest.prototype.location;

/**
 * Sets a preference for which panorama should be found within the radius: the
 * one nearest to the provided location, or the best one within the radius.
 * @type {!google.maps.StreetViewPreference|null|undefined}
 */
google.maps.StreetViewLocationRequest.prototype.preference;

/**
 * Sets a radius in meters in which to search for a panorama.
 * @default <code>50</code>
 * @type {number|null|undefined}
 */
google.maps.StreetViewLocationRequest.prototype.radius;

/**
 * Specifies the sources of panoramas to search. This allows a restriction to
 * search for just outdoor panoramas for example. Setting multiple sources will
 * be evaluated as the intersection of those sources.
 * @default [{@link google.maps.StreetViewSource.DEFAULT}]
 * @type {!Iterable<!google.maps.StreetViewSource>|null|undefined}
 */
google.maps.StreetViewLocationRequest.prototype.sources;

/**
 * Specifies the source of panoramas to search. This allows a restriction to
 * search for just outdoor panoramas for example.
 * @default {@link google.maps.StreetViewSource.DEFAULT}
 * @type {!google.maps.StreetViewSource|null|undefined}
 * @deprecated Use <code>sources</code> instead.
 */
google.maps.StreetViewLocationRequest.prototype.source;

/**
 * A <code>StreetViewPanoRequest</code> is used with the
 * <code>getPanorama</code> to find a panorama with a specified ID.
 * @record
 */
google.maps.StreetViewPanoRequest = function() {};

/**
 * Specifies the pano ID to search for.
 * @type {string|null|undefined}
 */
google.maps.StreetViewPanoRequest.prototype.pano;

/**
 * Displays the panorama for a given <code>LatLng</code> or panorama ID. A
 * <code>StreetViewPanorama</code> object provides a Street View
 * &quot;viewer&quot; which can be stand-alone within a separate
 * <code>&lt;div&gt;</code> or bound to a <code>Map</code>.
 *
 * Access by calling `const {StreetViewPanorama} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!HTMLElement} container
 * @param {?google.maps.StreetViewPanoramaOptions=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.StreetViewPanorama = function(container, opts) {};

/**
 * Additional controls to attach to the panorama. To add a control to the
 * panorama, add the control&#39;s <code>&lt;div&gt;</code> to the
 * <code>MVCArray</code> corresponding to the {@link
 * google.maps.ControlPosition} where it should be rendered.
 * @type {!Array<!google.maps.MVCArray<!HTMLElement>>}
 */
google.maps.StreetViewPanorama.prototype.controls;

/**
 * Sets focus on this <code>StreetViewPanorama</code>. You may wish to consider
 * using this method along with a <code>visible_changed</code> event to make
 * sure that <code>StreetViewPanorama</code> is visible before setting focus on
 * it. A <code>StreetViewPanorama</code> that is not visible cannot be focused.
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.focus = function() {};

/**
 * Returns the set of navigation links for the Street View panorama.
 * @return {Array<google.maps.StreetViewLink>}
 */
google.maps.StreetViewPanorama.prototype.getLinks = function() {};

/**
 * Returns the StreetViewLocation of the current panorama.
 * @return {!google.maps.StreetViewLocation}
 */
google.maps.StreetViewPanorama.prototype.getLocation = function() {};

/**
 * Returns the state of motion tracker. If <code>true</code> when the user
 * physically moves the device and the browser supports it, the Street View
 * Panorama tracks the physical movements.
 * @return {boolean}
 */
google.maps.StreetViewPanorama.prototype.getMotionTracking = function() {};

/**
 * Returns the current panorama ID for the Street View panorama. This id is
 * stable within the browser&#39;s current session only.
 * @return {string}
 */
google.maps.StreetViewPanorama.prototype.getPano = function() {};

/**
 * Returns the heading and pitch of the photographer when this panorama was
 * taken. For Street View panoramas on the road, this also reveals in which
 * direction the car was travelling. This data is available after the
 * <code>pano_changed</code> event.
 * @return {!google.maps.StreetViewPov}
 */
google.maps.StreetViewPanorama.prototype.getPhotographerPov = function() {};

/**
 * Returns the current <code>LatLng</code> position for the Street View
 * panorama.
 * @return {?google.maps.LatLng}
 */
google.maps.StreetViewPanorama.prototype.getPosition = function() {};

/**
 * Returns the current point of view for the Street View panorama.
 * @return {!google.maps.StreetViewPov}
 */
google.maps.StreetViewPanorama.prototype.getPov = function() {};

/**
 * Returns the status of the panorama on completion of the
 * <code>setPosition()</code> or <code>setPano()</code> request.
 * @return {!google.maps.StreetViewStatus}
 */
google.maps.StreetViewPanorama.prototype.getStatus = function() {};

/**
 * Returns <code>true</code> if the panorama is visible. It does not specify
 * whether Street View imagery is available at the specified position.
 * @return {boolean}
 */
google.maps.StreetViewPanorama.prototype.getVisible = function() {};

/**
 * Returns the zoom level of the panorama. Fully zoomed-out is level 0, where
 * the field of view is 180 degrees. Zooming in increases the zoom level.
 * @return {number}
 */
google.maps.StreetViewPanorama.prototype.getZoom = function() {};

/**
 * Set the custom panorama provider called on pano change to load custom
 * panoramas.
 * @param {function(string): ?google.maps.StreetViewPanoramaData} provider
 * @param {!google.maps.PanoProviderOptions=} opt_options
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.registerPanoProvider = function(
    provider, opt_options) {};

/**
 * Sets the set of navigation links for the Street View panorama.
 * @param {Array<google.maps.StreetViewLink>} links
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setLinks = function(links) {};

/**
 * Sets the state of motion tracker. If <code>true</code> when the user
 * physically moves the device and the browser supports it, the Street View
 * Panorama tracks the physical movements.
 * @param {boolean} motionTracking
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setMotionTracking = function(
    motionTracking) {};

/**
 * Sets a collection of key-value pairs.
 * @param {?google.maps.StreetViewPanoramaOptions} options
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setOptions = function(options) {};

/**
 * Sets the current panorama ID for the Street View panorama.
 * @param {string} pano
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setPano = function(pano) {};

/**
 * Sets the current <code>LatLng</code> position for the Street View panorama.
 * @param {google.maps.LatLng|google.maps.LatLngLiteral|null} latLng
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setPosition = function(latLng) {};

/**
 * Sets the point of view for the Street View panorama.
 * @param {!google.maps.StreetViewPov} pov
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setPov = function(pov) {};

/**
 * Sets to <code>true</code> to make the panorama visible. If set to
 * <code>false</code>, the panorama will be hidden whether it is embedded in the
 * map or in its own <code>&lt;div&gt;</code>.
 * @param {boolean} flag
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setVisible = function(flag) {};

/**
 * Sets the zoom level of the panorama. Fully zoomed-out is level 0, where the
 * field of view is 180 degrees. Zooming in increases the zoom level.
 * @param {number} zoom
 * @return {undefined}
 */
google.maps.StreetViewPanorama.prototype.setZoom = function(zoom) {};

/**
 * The representation of a panorama returned from the provider defined using
 * <code>registerPanoProvider</code>.
 * @record
 */
google.maps.StreetViewPanoramaData = function() {};

/**
 * Specifies the copyright text for this panorama.
 * @type {string|undefined}
 */
google.maps.StreetViewPanoramaData.prototype.copyright;

/**
 * Specifies the year and month in which the imagery in this panorama was
 * acquired. The date string is in the form YYYY-MM.
 * @type {string|undefined}
 */
google.maps.StreetViewPanoramaData.prototype.imageDate;

/**
 * Specifies the navigational links to adjacent panoramas.
 * @type {!Array<!google.maps.StreetViewLink>|undefined}
 */
google.maps.StreetViewPanoramaData.prototype.links;

/**
 * Specifies the location meta-data for this panorama.
 * @type {!google.maps.StreetViewLocation|undefined}
 */
google.maps.StreetViewPanoramaData.prototype.location;

/**
 * Specifies the custom tiles for this panorama.
 * @type {!google.maps.StreetViewTileData}
 */
google.maps.StreetViewPanoramaData.prototype.tiles;

/**
 * Options defining the properties of a <code>StreetViewPanorama</code> object.
 * @record
 */
google.maps.StreetViewPanoramaOptions = function() {};

/**
 * The enabled/disabled state of the address control.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.addressControl;

/**
 * The display options for the address control.
 * @type {!google.maps.StreetViewAddressControlOptions|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.addressControlOptions;

/**
 * The enabled/disabled state of click-to-go. Not applicable to custom
 * panoramas.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.clickToGo;

/**
 * Size in pixels of the controls appearing on the panorama. This value must be
 * supplied directly when creating the Panorama, updating this value later may
 * bring the controls into an undefined state. Only governs the controls made by
 * the Maps API itself. Does not scale developer created custom controls.
 * @type {number|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.controlSize;

/**
 * Enables/disables all default UI. May be overridden individually.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.disableDefaultUI;

/**
 * Enables/disables zoom on double click.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.disableDoubleClickZoom;

/**
 * If <code>true</code>, the close button is displayed.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.enableCloseButton;

/**
 * The enabled/disabled state of the fullscreen control.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.fullscreenControl;

/**
 * The display options for the fullscreen control.
 * @type {!google.maps.FullscreenControlOptions|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.fullscreenControlOptions;

/**
 * The enabled/disabled state of the imagery acquisition date control. Disabled
 * by default.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.imageDateControl;

/**
 * The enabled/disabled state of the links control.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.linksControl;

/**
 * Whether motion tracking is on or off. Enabled by default when the motion
 * tracking control is present and permission is granted by a user or not
 * required, so that the POV (point of view) follows the orientation of the
 * device. This is primarily applicable to mobile devices. If
 * <code>motionTracking</code> is set to <code>false</code> while
 * <code>motionTrackingControl</code> is enabled, the motion tracking control
 * appears but tracking is off. The user can tap the motion tracking control to
 * toggle this option. If <code>motionTracking</code> is set to
 * <code>true</code> while permission is required but not yet requested, the
 * motion tracking control appears but tracking is off. The user can tap the
 * motion tracking control to request permission. If <code>motionTracking</code>
 * is set to <code>true</code> while permission is denied by a user, the motion
 * tracking control appears disabled with tracking turned off.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.motionTracking;

/**
 * The enabled/disabled state of the motion tracking control. Enabled by default
 * when the device has motion data, so that the control appears on the map. This
 * is primarily applicable to mobile devices.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.motionTrackingControl;

/**
 * The display options for the motion tracking control.
 * @type {!google.maps.MotionTrackingControlOptions|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.motionTrackingControlOptions;

/**
 * The enabled/disabled state of the pan control.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.panControl;

/**
 * The display options for the pan control.
 * @type {!google.maps.PanControlOptions|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.panControlOptions;

/**
 * The panorama ID, which should be set when specifying a custom panorama.
 * @type {string|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.pano;

/**
 * The <code>LatLng</code> position of the Street View panorama.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.position;

/**
 * The camera orientation, specified as heading and pitch, for the panorama.
 * @type {!google.maps.StreetViewPov|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.pov;

/**
 * If <code>false</code>, disables scrollwheel zooming in Street View.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.scrollwheel;

/**
 * The display of street names on the panorama. If this value is not specified,
 * or is set to <code>true</code>, street names are displayed on the panorama.
 * If set to <code>false</code>, street names are not displayed.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.showRoadLabels;

/**
 * If <code>true</code>, the Street View panorama is visible on load.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.visible;

/**
 * The zoom of the panorama, specified as a number. A zoom of 0 gives a 180
 * degrees Field of View.
 * @type {number|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.zoom;

/**
 * The enabled/disabled state of the zoom control.
 * @type {boolean|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.zoomControl;

/**
 * The display options for the zoom control.
 * @type {!google.maps.ZoomControlOptions|null|undefined}
 */
google.maps.StreetViewPanoramaOptions.prototype.zoomControlOptions;

/**
 * A point of view object which specifies the camera&#39;s orientation at the
 * Street View panorama&#39;s position. The point of view is defined as heading
 * and pitch.
 * @record
 */
google.maps.StreetViewPov = function() {};

/**
 * The camera heading in degrees relative to <code>true</code> north. True north
 * is 0&deg;, east is 90&deg;, south is 180&deg;, west is 270&deg;.
 * @type {number}
 */
google.maps.StreetViewPov.prototype.heading;

/**
 * The camera pitch in degrees, relative to the street view vehicle. Ranges from
 * 90&deg; (directly upwards) to -90&deg; (directly downwards).
 * @type {number}
 */
google.maps.StreetViewPov.prototype.pitch;

/**
 * Options that bias a search result towards returning a Street View panorama
 * that is nearest to the request location, or a panorama that is considered
 * most likely to be what the user wants to see. Specify these by value, or by
 * using the constant&#39;s name. For example, <code>'best'</code> or
 * <code>google.maps.StreetViewPreference.BEST</code>.
 *
 * Access by calling `const {StreetViewPreference} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.StreetViewPreference = {
  /**
   * Return the Street View panorama that is considered most likely to be what
   * the user wants to see. The best result is determined by algorithms based on
   * user research and parameters such as recognised points of interest, image
   * quality, and distance from the given location.
   */
  BEST: 'best',
  /**
   * Return the Street View panorama that is the shortest distance from the
   * provided location. This works well only within a limited radius. The
   * recommended radius is 1km or less.
   */
  NEAREST: 'nearest',
};

/**
 * The response resolved for a Promise from {@link
 * google.maps.StreetViewService.getPanorama}.
 * @record
 */
google.maps.StreetViewResponse = function() {};

/**
 * The representation of a panorama.
 * @type {!google.maps.StreetViewPanoramaData}
 */
google.maps.StreetViewResponse.prototype.data;

/**
 * A <code>StreetViewService</code> object performs searches for Street View
 * data.
 *
 * Access by calling `const {StreetViewService} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.StreetViewService = function() {};

/**
 * Retrieves the <code>StreetViewPanoramaData</code> for a panorama that matches
 * the supplied Street View query request. The
 * <code>StreetViewPanoramaData</code> is passed to the provided callback.
 * @param {!google.maps.StreetViewLocationRequest|!google.maps.StreetViewPanoRequest}
 *     request
 * @param {(function((!google.maps.StreetViewPanoramaData|null),
 *     !google.maps.StreetViewStatus): void)=} callback
 * @return {!Promise<!google.maps.StreetViewResponse>}
 */
google.maps.StreetViewService.prototype.getPanorama = function(
    request, callback) {};

/**
 * Identifiers to limit Street View searches to selected sources. These values
 * are specified as strings. For example, <code>'outdoor'</code>.
 *
 * Access by calling `const {StreetViewSource} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.StreetViewSource = {
  /**
   * Uses the default sources of Street View, searches will not be limited to
   * specific sources.
   */
  DEFAULT: 'default',
  /**
   * Limits Street View searches to official Google collections.
   */
  GOOGLE: 'google',
  /**
   * Limits Street View searches to outdoor collections. Indoor collections are
   * not included in search results. Note also that the search only returns
   * panoramas where it&#39;s possible to determine whether they&#39;re indoors
   * or outdoors. For example, PhotoSpheres are not returned because it&#39;s
   * unknown whether they are indoors or outdoors.
   */
  OUTDOOR: 'outdoor',
};

/**
 * The status returned by the <code>StreetViewService</code> on completion of a
 * Street View request. These can be specified by value, or by using the
 * constant&#39;s name. For example, <code>'OK'</code> or
 * <code>google.maps.StreetViewStatus.OK</code>.
 *
 * Access by calling `const {StreetViewStatus} = await
 * google.maps.importLibrary("streetView")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.StreetViewStatus = {
  /**
   * The request was successful.
   */
  OK: 'OK',
  /**
   * The request could not be successfully processed, yet the exact reason for
   * failure is unknown.
   */
  UNKNOWN_ERROR: 'UNKNOWN_ERROR',
  /**
   * There are no panoramas found that match the search criteria.
   */
  ZERO_RESULTS: 'ZERO_RESULTS',
};

/**
 * The properties of the tile set used in a Street View panorama.
 * @record
 */
google.maps.StreetViewTileData = function() {};

/**
 * The heading (in degrees) at the center of the panoramic tiles.
 * @type {number}
 */
google.maps.StreetViewTileData.prototype.centerHeading;

/**
 * The size (in pixels) at which tiles will be rendered.
 * @type {!google.maps.Size}
 */
google.maps.StreetViewTileData.prototype.tileSize;

/**
 * The size (in pixels) of the whole panorama&#39;s &quot;world&quot;.
 * @type {!google.maps.Size}
 */
google.maps.StreetViewTileData.prototype.worldSize;

/**
 * Gets the tile image URL for the specified tile.<br/> This is a custom method
 * which you must implement, to supply your custom tiles. The API calls this
 * method, supplying the following parameters:</br> <code>pano</code> is the
 * panorama ID of the Street View tile.<br/> <code>tileZoom</code> is the zoom
 * level of the tile.<br/> <code>tileX</code> is the x-coordinate of the
 * tile.<br/> <code>tileY</code> is the y-coordinate of the tile.<br/> Your
 * custom method must return the URL for the tile image.<br/>
 * @param {string} pano
 * @param {number} tileZoom
 * @param {number} tileX
 * @param {number} tileY
 * @return {string}
 */
google.maps.StreetViewTileData.prototype.getTileUrl = function(
    pano, tileZoom, tileX, tileY) {};

/**
 * The possible positions of the stroke on a polygon.
 *
 * Access by calling `const {StrokePosition} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.StrokePosition = {
  /**
   * The stroke is centered on the polygon&#39;s path, with half the stroke
   * inside the polygon and half the stroke outside the polygon.
   */
  CENTER: 0,
  /**
   * The stroke lies inside the polygon.
   */
  INSIDE: 1,
  /**
   * The stroke lies outside the polygon.
   */
  OUTSIDE: 2,
};

/**
 * Creates a <code>MapType</code> with a custom style.
 *
 * Access by calling `const {StyledMapType} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {Array<google.maps.MapTypeStyle>} styles
 * @param {google.maps.StyledMapTypeOptions=} options
 * @implements {google.maps.MapType}
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.StyledMapType = function(styles, options) {};

/**
 * @type {string}
 */
google.maps.StyledMapType.prototype.alt;

/**
 * @type {number}
 */
google.maps.StyledMapType.prototype.maxZoom;

/**
 * @type {number}
 */
google.maps.StyledMapType.prototype.minZoom;

/**
 * @type {string}
 */
google.maps.StyledMapType.prototype.name;

/**
 * @type {google.maps.Projection}
 */
google.maps.StyledMapType.prototype.projection;

/**
 * @type {number}
 */
google.maps.StyledMapType.prototype.radius;

/**
 * @type {google.maps.Size}
 */
google.maps.StyledMapType.prototype.tileSize;

/**
 * @param {google.maps.Point} tileCoord Tile coordinates.
 * @param {number} zoom Tile zoom.
 * @param {Document} ownerDocument The document which owns this tile.
 * @return {?Element} Resulting tile.
 * @override
 */
google.maps.StyledMapType.prototype.getTile = function(
    tileCoord, zoom, ownerDocument) {};

/**
 * @param {?Element} tile Tile to release.
 * @return {undefined}
 * @override
 */
google.maps.StyledMapType.prototype.releaseTile = function(tile) {};

/**
 * This class is used to specify options when creating a
 * <code>StyledMapType</code>. These options cannot be changed after the
 * <code>StyledMapType</code> is instantiated.
 * @record
 */
google.maps.StyledMapTypeOptions = function() {};

/**
 * Text to display when this <code>MapType</code>&#39;s button is hovered over
 * in the map type control.
 * @type {string|null|undefined}
 */
google.maps.StyledMapTypeOptions.prototype.alt;

/**
 * The maximum zoom level for the map when displaying this <code>MapType</code>.
 * Optional.
 * @type {number|null|undefined}
 */
google.maps.StyledMapTypeOptions.prototype.maxZoom;

/**
 * The minimum zoom level for the map when displaying this <code>MapType</code>.
 * Optional.
 * @type {number|null|undefined}
 */
google.maps.StyledMapTypeOptions.prototype.minZoom;

/**
 * The name to display in the map type control.
 * @type {string|null|undefined}
 */
google.maps.StyledMapTypeOptions.prototype.name;

/**
 * Describes a symbol, which consists of a vector path with styling. A symbol
 * can be used as the icon of a marker, or placed on a polyline.
 * @record
 */
google.maps.Symbol = function() {};

/**
 * The position of the symbol relative to the marker or polyline. The
 * coordinates of the symbol&#39;s path are translated left and up by the
 * anchor&#39;s x and y coordinates respectively. The position is expressed in
 * the same coordinate system as the symbol&#39;s path.
 * @default <code>google.maps.Point(0,0)</code>
 * @type {!google.maps.Point|null|undefined}
 */
google.maps.Symbol.prototype.anchor;

/**
 * The symbol&#39;s fill color. All CSS3 colors are supported except for
 * extended named colors. For symbol markers, this defaults to &#39;black&#39;.
 * For symbols on polylines, this defaults to the stroke color of the
 * corresponding polyline.
 * @type {string|null|undefined}
 */
google.maps.Symbol.prototype.fillColor;

/**
 * The symbol&#39;s fill opacity.
 * @default <code>0</code>
 * @type {number|null|undefined}
 */
google.maps.Symbol.prototype.fillOpacity;

/**
 * The origin of the label relative to the origin of the path, if label is
 * supplied by the marker. The origin is expressed in the same coordinate system
 * as the symbol&#39;s path. This property is unused for symbols on polylines.
 * @default <code>google.maps.Point(0,0)</code>
 * @type {!google.maps.Point|null|undefined}
 */
google.maps.Symbol.prototype.labelOrigin;

/**
 * The symbol&#39;s path, which is a built-in symbol path, or a custom path
 * expressed using <a href="http://www.w3.org/TR/SVG/paths.html#PathData">SVG
 * path notation</a>. Required.
 * @type {!google.maps.SymbolPath|string}
 */
google.maps.Symbol.prototype.path;

/**
 * The angle by which to rotate the symbol, expressed clockwise in degrees. A
 * symbol in an <code>IconSequence</code> where <code>fixedRotation</code> is
 * <code>false</code> is rotated relative to the angle of the edge on which it
 * lies.
 * @default <code>0</code>
 * @type {number|null|undefined}
 */
google.maps.Symbol.prototype.rotation;

/**
 * The amount by which the symbol is scaled in size. For symbol markers, this
 * defaults to 1; after scaling, the symbol may be of any size. For symbols on a
 * polyline, this defaults to the stroke weight of the polyline; after scaling,
 * the symbol must lie inside a square 22 pixels in size centered at the
 * symbol&#39;s anchor.
 * @type {number|null|undefined}
 */
google.maps.Symbol.prototype.scale;

/**
 * The symbol&#39;s stroke color. All CSS3 colors are supported except for
 * extended named colors. For symbol markers, this defaults to &#39;black&#39;.
 * For symbols on a polyline, this defaults to the stroke color of the polyline.
 * @type {string|null|undefined}
 */
google.maps.Symbol.prototype.strokeColor;

/**
 * The symbol&#39;s stroke opacity. For symbol markers, this defaults to 1. For
 * symbols on a polyline, this defaults to the stroke opacity of the polyline.
 * @type {number|null|undefined}
 */
google.maps.Symbol.prototype.strokeOpacity;

/**
 * The symbol&#39;s stroke weight.
 * @default The {@link google.maps.Symbol.scale} of the symbol.
 * @type {number|null|undefined}
 */
google.maps.Symbol.prototype.strokeWeight;

/**
 * Built-in symbol paths.
 *
 * Access by calling `const {SymbolPath} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.SymbolPath = {
  /**
   * A backward-pointing closed arrow.
   */
  BACKWARD_CLOSED_ARROW: 0,
  /**
   * A backward-pointing open arrow.
   */
  BACKWARD_OPEN_ARROW: 1,
  /**
   * A circle.
   */
  CIRCLE: 2,
  /**
   * A forward-pointing closed arrow.
   */
  FORWARD_CLOSED_ARROW: 3,
  /**
   * A forward-pointing open arrow.
   */
  FORWARD_OPEN_ARROW: 4,
};

/**
 * A representation of time as a Date object, a localized string, and a time
 * zone.
 * @record
 */
google.maps.Time = function() {};

/**
 * A string representing the time&#39;s value. The time is displayed in the time
 * zone of the transit stop.
 * @type {string}
 */
google.maps.Time.prototype.text;

/**
 * The time zone in which this stop lies. The value is the name of the time zone
 * as defined in the IANA Time Zone Database, e.g. &quot;America/New_York&quot;.
 * @type {string}
 */
google.maps.Time.prototype.time_zone;

/**
 * The time of this departure or arrival, specified as a JavaScript Date object.
 * @type {!Date}
 */
google.maps.Time.prototype.value;

/**
 * A traffic layer.
 *
 * Access by calling `const {TrafficLayer} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.TrafficLayerOptions=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.TrafficLayer = function(opts) {};

/**
 * Returns the map on which this layer is displayed.
 * @return {!google.maps.Map|null}
 */
google.maps.TrafficLayer.prototype.getMap = function() {};

/**
 * Renders the layer on the specified map. If map is set to <code>null</code>,
 * the layer will be removed.
 * @param {!google.maps.Map|null} map
 * @return {undefined}
 */
google.maps.TrafficLayer.prototype.setMap = function(map) {};

/**
 * @param {!google.maps.TrafficLayerOptions|null} options
 * @return {undefined}
 */
google.maps.TrafficLayer.prototype.setOptions = function(options) {};

/**
 * TrafficLayerOptions object used to define the properties that can be set on a
 * TrafficLayer.
 * @record
 */
google.maps.TrafficLayerOptions = function() {};

/**
 * Whether the traffic layer refreshes with updated information automatically.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.TrafficLayerOptions.prototype.autoRefresh;

/**
 * Map on which to display the traffic layer.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.TrafficLayerOptions.prototype.map;

/**
 * The assumptions to use when predicting duration in traffic. Specified as part
 * of a <code><a href="#DirectionsRequest">DirectionsRequest</a></code> or
 * <code><a href="#DistanceMatrixRequest">DistanceMatrixRequest</a></code>.
 * Specify these by value, or by using the constant&#39;s name. For example,
 * <code>'bestguess'</code> or <code>google.maps.TrafficModel.BEST_GUESS</code>.
 *
 * Access by calling `const {TrafficModel} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.TrafficModel = {
  /**
   * Use historical traffic data to best estimate the time spent in traffic.
   */
  BEST_GUESS: 'bestguess',
  /**
   * Use historical traffic data to make an optimistic estimate of what the
   * duration in traffic will be.
   */
  OPTIMISTIC: 'optimistic',
  /**
   * Use historical traffic data to make a pessimistic estimate of what the
   * duration in traffic will be.
   */
  PESSIMISTIC: 'pessimistic',
};

/**
 * Information about an agency that operates a transit line.
 * @record
 */
google.maps.TransitAgency = function() {};

/**
 * The name of this transit agency.
 * @type {string}
 */
google.maps.TransitAgency.prototype.name;

/**
 * The transit agency&#39;s phone number.
 * @type {string}
 */
google.maps.TransitAgency.prototype.phone;

/**
 * The transit agency&#39;s URL.
 * @type {string}
 */
google.maps.TransitAgency.prototype.url;

/**
 * Details about the departure, arrival, and mode of transit used in this step.
 * @record
 */
google.maps.TransitDetails = function() {};

/**
 * The arrival stop of this transit step.
 * @type {!google.maps.TransitStop}
 */
google.maps.TransitDetails.prototype.arrival_stop;

/**
 * The arrival time of this step, specified as a Time object.
 * @type {!google.maps.Time}
 */
google.maps.TransitDetails.prototype.arrival_time;

/**
 * The departure stop of this transit step.
 * @type {!google.maps.TransitStop}
 */
google.maps.TransitDetails.prototype.departure_stop;

/**
 * The departure time of this step, specified as a Time object.
 * @type {!google.maps.Time}
 */
google.maps.TransitDetails.prototype.departure_time;

/**
 * The direction in which to travel on this line, as it is marked on the vehicle
 * or at the departure stop.
 * @type {string}
 */
google.maps.TransitDetails.prototype.headsign;

/**
 * The expected number of seconds between equivalent vehicles at this stop.
 * @type {number}
 */
google.maps.TransitDetails.prototype.headway;

/**
 * Details about the transit line used in this step.
 * @type {!google.maps.TransitLine}
 */
google.maps.TransitDetails.prototype.line;

/**
 * The number of stops on this step. Includes the arrival stop, but not the
 * departure stop.
 * @type {number}
 */
google.maps.TransitDetails.prototype.num_stops;

/**
 * The text that appears in schedules and sign boards to identify a transit trip
 * to passengers, for example, to identify train numbers for commuter rail
 * trips. The text uniquely identifies a trip within a service day.
 * @type {string}
 */
google.maps.TransitDetails.prototype.trip_short_name;

/**
 * A fare of a <code><a href="#DirectionsResult">DirectionsRoute</a> </code>
 * consisting of value and currency.
 * @record
 */
google.maps.TransitFare = function() {};

/**
 * An <a href="http://en.wikipedia.org/wiki/ISO_4217">ISO 4217 currency code</a>
 * indicating the currency in which the fare is expressed.
 * @type {string}
 */
google.maps.TransitFare.prototype.currency;

/**
 * The value of the fare, expressed in the given <code>currency</code>, as a
 * string.
 * @type {string}
 */
google.maps.TransitFare.prototype.text;

/**
 * The numerical value of the fare, expressed in the given
 * <code>currency</code>.
 * @type {number}
 */
google.maps.TransitFare.prototype.value;

/**
 * A transit layer.
 *
 * Access by calling `const {TransitLayer} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.TransitLayer = function() {};

/**
 * Returns the map on which this layer is displayed.
 * @return {!google.maps.Map|null}
 */
google.maps.TransitLayer.prototype.getMap = function() {};

/**
 * Renders the layer on the specified map. If map is set to <code>null</code>,
 * the layer will be removed.
 * @param {!google.maps.Map|null} map
 * @return {void}
 */
google.maps.TransitLayer.prototype.setMap = function(map) {};

/**
 * Information about the transit line that operates this transit step.
 * @record
 */
google.maps.TransitLine = function() {};

/**
 * The transit agency that operates this transit line.
 * @type {!Array<!google.maps.TransitAgency>}
 */
google.maps.TransitLine.prototype.agencies;

/**
 * The color commonly used in signage for this transit line, represented as a
 * hex string.
 * @type {string}
 */
google.maps.TransitLine.prototype.color;

/**
 * The URL for an icon associated with this line.
 * @type {string}
 */
google.maps.TransitLine.prototype.icon;

/**
 * The full name of this transit line, e.g. &quot;8 Avenue Local&quot;.
 * @type {string}
 */
google.maps.TransitLine.prototype.name;

/**
 * The short name of this transit line, e.g. &quot;E&quot;.
 * @type {string}
 */
google.maps.TransitLine.prototype.short_name;

/**
 * The text color commonly used in signage for this transit line, represented as
 * a hex string.
 * @type {string}
 */
google.maps.TransitLine.prototype.text_color;

/**
 * The agency&#39;s URL which is specific to this transit line.
 * @type {string}
 */
google.maps.TransitLine.prototype.url;

/**
 * The type of vehicle used, e.g. train or bus.
 * @type {!google.maps.TransitVehicle}
 */
google.maps.TransitLine.prototype.vehicle;

/**
 * The valid transit mode e.g. bus that can be specified in a <i><code><a
 * href="#TransitOptions">TransitOptions</a></code></i>. Specify these by value,
 * or by using the constant&#39;s name. For example, <code>'BUS'</code> or
 * <code>google.maps.TransitMode.BUS</code>.
 *
 * Access by calling `const {TransitMode} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.TransitMode = {
  /**
   * Specifies bus as a preferred mode of transit.
   */
  BUS: 'BUS',
  /**
   * Specifies light rail as a preferred mode of transit.
   */
  LIGHT_RAIL: 'LIGHT_RAIL',
  /**
   * Specifies rail as a preferred mode of transit.
   */
  RAIL: 'RAIL',
  /**
   * Specifies subway as a preferred mode of transit.
   */
  SUBWAY: 'SUBWAY',
  /**
   * Specifies train as a preferred mode of transit.
   */
  TRAIN: 'TRAIN',
  /**
   * Specifies tram as a preferred mode of transit.
   */
  TRAM: 'TRAM',
};

/**
 * The TransitOptions object to be included in a <code><a
 * href="#DirectionsRequest">DirectionsRequest</a></code> when the travel mode
 * is set to TRANSIT.
 * @record
 */
google.maps.TransitOptions = function() {};

/**
 * The desired arrival time for the route, specified as a Date object. The Date
 * object measures time in milliseconds since 1 January 1970. If arrival time is
 * specified, departure time is ignored.
 * @type {!Date|null|undefined}
 */
google.maps.TransitOptions.prototype.arrivalTime;

/**
 * The desired departure time for the route, specified as a Date object. The
 * Date object measures time in milliseconds since 1 January 1970. If neither
 * departure time nor arrival time is specified, the time is assumed to be
 * &quot;now&quot;.
 * @type {!Date|null|undefined}
 */
google.maps.TransitOptions.prototype.departureTime;

/**
 * One or more preferred modes of transit, such as bus or train. If no
 * preference is given, the API returns the default best route.
 * @type {!Array<!google.maps.TransitMode>|null|undefined}
 */
google.maps.TransitOptions.prototype.modes;

/**
 * A preference that can bias the choice of transit route, such as less walking.
 * If no preference is given, the API returns the default best route.
 * @type {!google.maps.TransitRoutePreference|null|undefined}
 */
google.maps.TransitOptions.prototype.routingPreference;

/**
 * The valid transit route type that can be specified in a <i><code><a
 * href="#TransitOptions">TransitOptions</a></code></i>. Specify these by value,
 * or by using the constant&#39;s name. For example, <code>'LESS_WALKING'</code>
 * or <code>google.maps.TransitRoutePreference.LESS_WALKING</code>.
 *
 * Access by calling `const {TransitRoutePreference} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.TransitRoutePreference = {
  /**
   * Specifies that the calculated route should prefer a limited number of
   * transfers.
   */
  FEWER_TRANSFERS: 'FEWER_TRANSFERS',
  /**
   * Specifies that the calculated route should prefer limited amounts of
   * walking.
   */
  LESS_WALKING: 'LESS_WALKING',
};

/**
 * Details about a transit stop or station.
 * @record
 */
google.maps.TransitStop = function() {};

/**
 * The location of this stop.
 * @type {!google.maps.LatLng}
 */
google.maps.TransitStop.prototype.location;

/**
 * The name of this transit stop.
 * @type {string}
 */
google.maps.TransitStop.prototype.name;

/**
 * Information about the vehicle that operates on a transit line.
 * @record
 */
google.maps.TransitVehicle = function() {};

/**
 * A URL for an icon that corresponds to the type of vehicle used on this line.
 * @type {string}
 */
google.maps.TransitVehicle.prototype.icon;

/**
 * A URL for an icon that corresponds to the type of vehicle used in this region
 * instead of the more general icon.
 * @type {string}
 */
google.maps.TransitVehicle.prototype.local_icon;

/**
 * A name for this type of TransitVehicle, e.g. &quot;Train&quot; or
 * &quot;Bus&quot;.
 * @type {string}
 */
google.maps.TransitVehicle.prototype.name;

/**
 * The type of vehicle used, e.g. train, bus, or ferry.
 * @type {!google.maps.VehicleType}
 */
google.maps.TransitVehicle.prototype.type;

/**
 * The valid travel modes that can be specified in a
 * <code>DirectionsRequest</code> as well as the travel modes returned in a
 * <code>DirectionsStep</code>. Specify these by value, or by using the
 * constant&#39;s name. For example, <code>'BICYCLING'</code> or
 * <code>google.maps.TravelMode.BICYCLING</code>.
 *
 * Access by calling `const {TravelMode} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.TravelMode = {
  /**
   * Specifies a bicycling directions request.
   */
  BICYCLING: 'BICYCLING',
  /**
   * Specifies a driving directions request.
   */
  DRIVING: 'DRIVING',
  /**
   * Specifies a transit directions request.
   */
  TRANSIT: 'TRANSIT',
  /**
   * Specifies a two-wheeler directions request.
   */
  TWO_WHEELER: 'TWO_WHEELER',
  /**
   * Specifies a walking directions request.
   */
  WALKING: 'WALKING',
};

/**
 * The valid unit systems that can be specified in a <i><code><a
 * href="#DirectionsRequest">DirectionsRequest</a></code></i>.
 *
 * Access by calling `const {UnitSystem} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.UnitSystem = {
  /**
   * Specifies that distances in the <code>DirectionsResult</code> should be
   * expressed in imperial units.
   */
  IMPERIAL: 0,
  /**
   * Specifies that distances in the <code>DirectionsResult</code> should be
   * expressed in metric units.
   */
  METRIC: 1,
};

/**
 * A <code>Vector3D</code> is a three-dimensional vector used for standard
 * mathematical operations such as scaling the bounds of three-dimensional
 * object along local x-, y-, and z-axes.<br> <ul> <li>x is a real number.</li>
 * <li>y is a real number.</li> <li>z is a real number.</li> </ul>
 *
 * Access by calling `const {Vector3D} = await
 * google.maps.importLibrary("core")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.Vector3D|!google.maps.Vector3DLiteral} value The
 *     initializing value.
 * @implements {google.maps.Vector3DLiteral}
 * @constructor
 */
google.maps.Vector3D = function(value) {};

/**
 * X-component of the three-dimensional vector.
 * @type {number}
 */
google.maps.Vector3D.prototype.x;

/**
 * Y-component of the three-dimensional vector.
 * @type {number}
 */
google.maps.Vector3D.prototype.y;

/**
 * Z-component of the three-dimensional vector.
 * @type {number}
 */
google.maps.Vector3D.prototype.z;

/**
 * Comparison function.
 * @param {!google.maps.Vector3D|!google.maps.Vector3DLiteral|null} other
 *     Another Vector3D or Vector3DLiteral object.
 * @return {boolean}
 */
google.maps.Vector3D.prototype.equals = function(other) {};

/**
 * Converts to JSON representation. This function is intended to be used via
 * JSON.stringify.
 * @return {!google.maps.Vector3DLiteral}
 */
google.maps.Vector3D.prototype.toJSON = function() {};

/**
 * Object literals are accepted in place of <code>Vector3D</code> objects, as a
 * convenience, in many places. These are converted to <code>Vector3D</code>
 * objects when the Maps API encounters them.
 * @record
 */
google.maps.Vector3DLiteral = function() {};

/**
 * X-component of the three-dimensional vector.
 * @type {number}
 */
google.maps.Vector3DLiteral.prototype.x;

/**
 * Y-component of the three-dimensional vector.
 * @type {number}
 */
google.maps.Vector3DLiteral.prototype.y;

/**
 * Z-component of the three-dimensional vector.
 * @type {number}
 */
google.maps.Vector3DLiteral.prototype.z;

/**
 * Possible values for vehicle types.
 *
 * Access by calling `const {VehicleType} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.VehicleType = {
  /**
   * Bus.
   */
  BUS: 'BUS',
  /**
   * A vehicle that operates on a cable, usually on the ground. Aerial cable
   * cars may be of the type <code>GONDOLA_LIFT</code>.
   */
  CABLE_CAR: 'CABLE_CAR',
  /**
   * Commuter rail.
   */
  COMMUTER_TRAIN: 'COMMUTER_TRAIN',
  /**
   * Ferry.
   */
  FERRY: 'FERRY',
  /**
   * A vehicle that is pulled up a steep incline by a cable.
   */
  FUNICULAR: 'FUNICULAR',
  /**
   * An aerial cable car.
   */
  GONDOLA_LIFT: 'GONDOLA_LIFT',
  /**
   * Heavy rail.
   */
  HEAVY_RAIL: 'HEAVY_RAIL',
  /**
   * High speed train.
   */
  HIGH_SPEED_TRAIN: 'HIGH_SPEED_TRAIN',
  /**
   * Intercity bus.
   */
  INTERCITY_BUS: 'INTERCITY_BUS',
  /**
   * Light rail.
   */
  METRO_RAIL: 'METRO_RAIL',
  /**
   * Monorail.
   */
  MONORAIL: 'MONORAIL',
  /**
   * Other vehicles.
   */
  OTHER: 'OTHER',
  /**
   * Rail.
   */
  RAIL: 'RAIL',
  /**
   * Share taxi is a sort of bus transport with ability to drop off and pick up
   * passengers anywhere on its route. Generally share taxi uses minibus
   * vehicles.
   */
  SHARE_TAXI: 'SHARE_TAXI',
  /**
   * Underground light rail.
   */
  SUBWAY: 'SUBWAY',
  /**
   * Above ground light rail.
   */
  TRAM: 'TRAM',
  /**
   * Trolleybus.
   */
  TROLLEYBUS: 'TROLLEYBUS',
};

/**
 * Contains the four points defining the four-sided polygon that is the visible
 * region of the map. On a vector map this polygon can be a trapezoid instead of
 * a rectangle, when a vector map has tilt.
 * @record
 */
google.maps.VisibleRegion = function() {};

/**
 * @type {!google.maps.LatLng}
 */
google.maps.VisibleRegion.prototype.farLeft;

/**
 * @type {!google.maps.LatLng}
 */
google.maps.VisibleRegion.prototype.farRight;

/**
 * The smallest bounding box that includes the visible region.
 * @type {!google.maps.LatLngBounds}
 */
google.maps.VisibleRegion.prototype.latLngBounds;

/**
 * @type {!google.maps.LatLng}
 */
google.maps.VisibleRegion.prototype.nearLeft;

/**
 * @type {!google.maps.LatLng}
 */
google.maps.VisibleRegion.prototype.nearRight;

/**
 * @record
 */
google.maps.VisualizationLibrary = function() {};

/**
 * @type {typeof google.maps.visualization.HeatmapLayer}
 */
google.maps.VisualizationLibrary.prototype.HeatmapLayer;

/**
 * Drawing options.
 * @record
 */
google.maps.WebGLDrawOptions = function() {};

/**
 * The WebGLRenderingContext on which to render this WebGLOverlayView.
 * @type {!WebGLRenderingContext}
 */
google.maps.WebGLDrawOptions.prototype.gl;

/**
 * The matrix transformation from camera space to latitude/longitude
 * coordinates.
 * @type {!google.maps.CoordinateTransformer}
 */
google.maps.WebGLDrawOptions.prototype.transformer;

/**
 * The WebGL Overlay View provides direct access to the same WebGL rendering
 * context Google Maps Platform uses to render the vector basemap. This use of a
 * shared rendering context provides benefits such as depth occlusion with 3D
 * building geometry, and the ability to sync 2D/3D content with basemap
 * rendering. <br><br>With WebGL Overlay View you can add content to your maps
 * using WebGL directly, or popular Graphics libraries like Three.js or deck.gl.
 * To use the overlay, you can extend <code>google.maps.WebGLOverlayView</code>
 * and provide an implementation for each of the following lifecycle
 * hooks: {@link google.maps.WebGLOverlayView.onAdd}, {@link
 * google.maps.WebGLOverlayView.onContextRestored}, {@link
 * google.maps.WebGLOverlayView.onDraw}, {@link
 * google.maps.WebGLOverlayView.onContextLost} and {@link
 * google.maps.WebGLOverlayView.onRemove}. <br><br>You must call {@link
 * google.maps.WebGLOverlayView.setMap} with a valid {@link google.maps.Map}
 * object to trigger the call to the <code>onAdd()</code> method and
 * <code>setMap(null)</code> in order to trigger the <code>onRemove()</code>
 * method. The <code>setMap()</code> method can be called at the time of
 * construction or at any point afterward when the overlay should be re-shown
 * after removing. The <code>onDraw()</code> method will then be called whenever
 * a map property changes that could change the position of the element, such as
 * zoom, center, or map type. WebGLOverlayView may only be added to a vector map
 * having a {@link google.maps.MapOptions.mapId} (including maps set to
 * the {@link google.maps.RenderingType.VECTOR} {@link
 * google.maps.MapOptions.renderingType} and using {@link
 * google.maps.Map.DEMO_MAP_ID} as the {@link google.maps.MapOptions.mapId}).
 *
 * Access by calling `const {WebGLOverlayView} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.MVCObject}
 * @constructor
 */
google.maps.WebGLOverlayView = function() {};

/**
 * @return {google.maps.Map|null|undefined}
 */
google.maps.WebGLOverlayView.prototype.getMap = function() {};

/**
 * Implement this method to fetch or create intermediate data structures before
 * the overlay is drawn that don’t require immediate access to the WebGL
 * rendering context. This method must be implemented to render.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.onAdd = function() {};

/**
 * This method is called when the rendering context is lost for any reason, and
 * is where you should clean up any pre-existing GL state, since it is no longer
 * needed.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.onContextLost = function() {};

/**
 * This method is called once the rendering context is available. Use it to
 * initialize or bind any WebGL state such as shaders or buffer objects.
 * @param {!google.maps.WebGLStateOptions} options that allow developers to
 *     restore the GL context.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.onContextRestored = function(options) {};

/**
 * Implement this method to draw WebGL content directly on the map. Note that if
 * the overlay needs a new frame drawn then call {@link
 * google.maps.WebGLOverlayView.requestRedraw}.
 * @param {!google.maps.WebGLDrawOptions} options that allow developers to
 *     render content to an associated Google basemap.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.onDraw = function(options) {};

/**
 * This method is called when the overlay is removed from the map with
 * <code>WebGLOverlayView.setMap(null)</code>, and is where you should remove
 * all intermediate objects. This method must be implemented to render.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.onRemove = function() {};

/**
 * Implement this method to handle any GL state updates outside of the render
 * animation frame.
 * @param {!google.maps.WebGLStateOptions} options that allow developerse to
 *     restore the GL context.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.onStateUpdate = function(options) {};

/**
 * Triggers the map to redraw a frame.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.requestRedraw = function() {};

/**
 * Triggers the map to update GL state.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.requestStateUpdate = function() {};

/**
 * Adds the overlay to the map.
 * @param {?google.maps.Map=} map The map to access the div, model and view
 *     state.
 * @return {undefined}
 */
google.maps.WebGLOverlayView.prototype.setMap = function(map) {};

/**
 * GL state options.
 * @record
 */
google.maps.WebGLStateOptions = function() {};

/**
 * The WebGLRenderingContext on which to render this WebGLOverlayView.
 * @type {!WebGLRenderingContext}
 */
google.maps.WebGLStateOptions.prototype.gl;

/**
 * This event is created from monitoring zoom change.
 *
 * Access by calling `const {ZoomChangeEvent} = await
 * google.maps.importLibrary("maps")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Event}
 * @constructor
 */
google.maps.ZoomChangeEvent = function() {};

/**
 * Options for the rendering of the zoom control.
 * @record
 */
google.maps.ZoomControlOptions = function() {};

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.INLINE_END_BLOCK_END}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.ZoomControlOptions.prototype.position;

/**
 * Namespace for all public event functions
 *
 * Access by calling `const {event} = await google.maps.importLibrary("core")`.
 * See https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.event = function() {};

/**
 * Adds the given listener function to the given event name for the given object
 * instance. Returns an identifier for this listener that can be used with
 * removeListener().
 * @param {!Object} instance
 * @param {string} eventName
 * @param {!Function} handler
 * @return {!google.maps.MapsEventListener}
 */
google.maps.event.addListener = function(instance, eventName, handler) {};

/**
 * Like addListener, but the handler removes itself after handling the first
 * event.
 * @param {!Object} instance
 * @param {string} eventName
 * @param {!Function} handler
 * @return {!google.maps.MapsEventListener}
 */
google.maps.event.addListenerOnce = function(instance, eventName, handler) {};

/**
 * Removes all listeners for all events for the given instance.
 * @param {!Object} instance
 * @return {void}
 */
google.maps.event.clearInstanceListeners = function(instance) {};

/**
 * Removes all listeners for the given event for the given instance.
 * @param {!Object} instance
 * @param {string} eventName
 * @return {void}
 */
google.maps.event.clearListeners = function(instance, eventName) {};

/**
 * Returns if there are listeners for the given event on the given instance. Can
 * be used to save the computation of expensive event details.
 * @param {!Object} instance
 * @param {string} eventName
 * @return {boolean}
 */
google.maps.event.hasListeners = function(instance, eventName) {};

/**
 * Removes the given listener, which should have been returned by addListener
 * above. Equivalent to calling <code>listener.remove()</code>.
 * @param {!google.maps.MapsEventListener} listener
 * @return {void}
 */
google.maps.event.removeListener = function(listener) {};

/**
 * Triggers the given event. All arguments after eventName are passed as
 * arguments to the listeners.
 * @param {!Object} instance
 * @param {string} eventName
 * @param {...?} eventArgs
 * @return {void}
 */
google.maps.event.trigger = function(instance, eventName, eventArgs) {};

/**
 * Cross browser event handler registration. This listener is removed by calling
 * removeListener(handle) for the handle that is returned by this function.
 * @param {!Object} instance
 * @param {string} eventName
 * @param {!Function} handler
 * @param {boolean=} capture
 * @return {!google.maps.MapsEventListener}
 * @deprecated <code>google.maps.event.addDomListener()</code> is deprecated,
 *     use the standard <a
 *     href="https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener">addEventListener()</a>
 *     method instead. The feature will continue to work and there is no plan to
 *     decommission it.
 */
google.maps.event.addDomListener = function(
    instance, eventName, handler, capture) {};

/**
 * Wrapper around addDomListener that removes the listener after the first
 * event.
 * @param {!Object} instance
 * @param {string} eventName
 * @param {!Function} handler
 * @param {boolean=} capture
 * @return {!google.maps.MapsEventListener}
 * @deprecated <code>google.maps.event.addDomListenerOnce()</code> is
 *     deprecated, use the standard <a
 *     href="https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener">addEventListener()</a>
 *     method instead. The feature will continue to work and there is no plan to
 *     decommission it.
 */
google.maps.event.addDomListenerOnce = function(
    instance, eventName, handler, capture) {};

/**
 * @const
 */
google.maps.addressValidation = {};

/**
 * Details of the post-processed address. Post-processing includes correcting
 * misspelled parts of the address, replacing incorrect parts, and inferring
 * missing parts.
 *
 * Access by calling `const {Address} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.Address = function() {};

/**
 * The individual address components of the formatted and corrected address,
 * along with validation information. This provides information on the
 * validation status of the individual components.
 * @type {!Array<!google.maps.addressValidation.AddressComponent>}
 */
google.maps.addressValidation.Address.prototype.components;

/**
 * The post-processed address, formatted as a single-line address following the
 * address-formatting rules of the region where the address is located.
 * @type {string|null}
 */
google.maps.addressValidation.Address.prototype.formattedAddress;

/**
 * The types of components that were expected to be present in a correctly
 * formatted mailing address but were not found in the input AND could not be
 * inferred. Components of this type are not present in
 * <code>formatted_address</code>, <code>postal_address</code>, or
 * <code>address_components</code>. An example might be
 * <code>[&#39;street_number&#39;, &#39;route&#39;]</code> for an input like
 * &quot;Boulder, Colorado, 80301, USA&quot;. The list of possible types can be
 * found <a
 * href="https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types">here</a>.
 * @type {!Array<string>}
 */
google.maps.addressValidation.Address.prototype.missingComponentTypes;

/**
 * The post-processed address represented as a postal address.
 * @type {!google.maps.places.PostalAddress|null}
 */
google.maps.addressValidation.Address.prototype.postalAddress;

/**
 * The types of the components that are present in the
 * <code>address_components</code> but could not be confirmed to be correct.
 * This field is provided for the sake of convenience: its contents are
 * equivalent to iterating through the <code>address_components</code> to find
 * the types of all the components where the {@link
 * google.maps.addressValidation.AddressComponent.confirmationLevel} is
 * not {@link google.maps.addressValidation.ConfirmationLevel.CONFIRMED} or
 * the {@link google.maps.addressValidation.AddressComponent.inferred} flag is
 * not set to <code>true</code>. The list of possible types can be found <a
 * href="https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types">here</a>.
 * @type {!Array<string>}
 */
google.maps.addressValidation.Address.prototype.unconfirmedComponentTypes;

/**
 * Any tokens in the input that could not be resolved. This might be an input
 * that was not recognized as a valid part of an address (for example in an
 * input like &quot;123235253253 Main St, San Francisco, CA, 94105&quot;, the
 * unresolved tokens may look like <code>[&quot;123235253253&quot;]</code> since
 * that does not look like a valid street number.
 * @type {!Array<string>}
 */
google.maps.addressValidation.Address.prototype.unresolvedTokens;

/**
 * Represents a single component of an address (ex. street name, city).
 *
 * Access by calling `const {AddressComponent} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.AddressComponent = function() {};

/**
 * The component name text. For example, &quot;5th Avenue&quot; for a street
 * name or &quot;1253&quot; for a street number,
 * @type {string|null}
 */
google.maps.addressValidation.AddressComponent.prototype.componentName;

/**
 * The BCP-47 language code. This will not be present if the component name is
 * not associated with a language, such as a street number.
 * @type {string|null}
 */
google.maps.addressValidation.AddressComponent.prototype
    .componentNameLanguageCode;

/**
 * The type of the address component. See <a
 * href="https://developers.google.com/places/web-service/supported_types#table2">Table
 * 2: Additional types returned by the Places service</a> for a list of possible
 * types.
 * @type {string|null}
 */
google.maps.addressValidation.AddressComponent.prototype.componentType;

/**
 * Indicates the level of certainty that the component is correct.
 * @type {!google.maps.addressValidation.ConfirmationLevel|null}
 */
google.maps.addressValidation.AddressComponent.prototype.confirmationLevel;

/**
 * If true, this component was not part of the input, but was inferred for the
 * address location. Including this component is recommended for a complete
 * address.
 * @type {boolean}
 */
google.maps.addressValidation.AddressComponent.prototype.inferred;

/**
 * Indicates the name of the component was replaced with a completely different
 * one. For example, replacing a wrong postal code being with one that is
 * correct for the address. This is not a cosmetic change; the input component
 * has been changed to a different one.
 * @type {boolean}
 */
google.maps.addressValidation.AddressComponent.prototype.replaced;

/**
 * Indicates a correction to a misspelling in the component name. The API does
 * not always flag changes from one spelling variant to another, such as
 * &quot;centre&quot; to &quot;center&quot;.
 * @type {boolean}
 */
google.maps.addressValidation.AddressComponent.prototype.spellCorrected;

/**
 * If true, this component is not expected to be present in a postal address for
 * the given region. It has been retained only because it was part of the input.
 * @type {boolean}
 */
google.maps.addressValidation.AddressComponent.prototype.unexpected;

/**
 * The metadata for the address. AddressMetadata is not guaranteed to be fully
 * populated for every address sent to the Address Validation API.
 *
 * Access by calling `const {AddressMetadata} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.AddressMetadata = function() {};

/**
 * @type {boolean}
 */
google.maps.addressValidation.AddressMetadata.prototype.business;

/**
 * @type {boolean}
 */
google.maps.addressValidation.AddressMetadata.prototype.poBox;

/**
 * @type {boolean}
 */
google.maps.addressValidation.AddressMetadata.prototype.residential;

/**
 * Static class for accessing the AddressValidation APIs.
 *
 * Access by calling `const {AddressValidation} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.AddressValidation = function() {};

/**
 * Information about the address itself as opposed to the geocode.
 * @type {!google.maps.addressValidation.Address|null}
 */
google.maps.addressValidation.AddressValidation.prototype.address;

/**
 * Information about the location and place that the address geocoded to.
 * @type {!google.maps.addressValidation.Geocode|null}
 */
google.maps.addressValidation.AddressValidation.prototype.geocode;

/**
 * Other information relevant to deliverability. <code>metadata</code> is not
 * guaranteed to be fully populated for every address sent to the Address
 * Validation API.
 * @type {!google.maps.addressValidation.AddressMetadata|null}
 */
google.maps.addressValidation.AddressValidation.prototype.metadata;

/**
 * The UUID that identifies this response. If the address needs to be
 * re-validated, this UUID <em>must</em> accompany the new request.
 * @type {string|null}
 */
google.maps.addressValidation.AddressValidation.prototype.responseId;

/**
 * Extra deliverability flags provided by USPS. Only provided in region
 * <code>US</code> and <code>PR</code>.
 * @type {!google.maps.addressValidation.USPSData|null}
 */
google.maps.addressValidation.AddressValidation.prototype.uspsData;

/**
 * Overall verdict flags
 * @type {!google.maps.addressValidation.Verdict|null}
 */
google.maps.addressValidation.AddressValidation.prototype.verdict;

/**
 * Validates an address. See <a
 * href="https://developers.google.com/maps/documentation/javascript/address-validation/validate-address">https://developers.google.com/maps/documentation/javascript/address-validation/validate-address</a>.
 * @param {!google.maps.addressValidation.AddressValidationRequest} request
 * @return {!Promise<!google.maps.addressValidation.AddressValidation>}
 */
google.maps.addressValidation.AddressValidation.fetchAddressValidation =
    function(request) {};

/**
 * Converts the AddressValidation class to a JSON object with the same
 * properties.
 * @return {!Object}
 */
google.maps.addressValidation.AddressValidation.prototype.toJSON =
    function() {};

/**
 * Request interface for {@link
 * google.maps.addressValidation.AddressValidation.fetchAddressValidation}.
 * @record
 */
google.maps.addressValidation.AddressValidationRequest = function() {};

/**
 * The address being validated. Unformatted addresses should be submitted
 * via {@link google.maps.places.PostalAddress.addressLines}.
 * @type {!google.maps.places.PostalAddressLiteral}
 */
google.maps.addressValidation.AddressValidationRequest.prototype.address;

/**
 * If using a PlaceAutocompleteElement, include it here to link the
 * AddressValidation API calls with the autocomplete session token.
 * @type {!google.maps.places.PlaceAutocompleteElement|undefined}
 */
google.maps.addressValidation.AddressValidationRequest.prototype
    .placeAutocompleteElement;

/**
 * This field must not be set for the first address validation request. If more
 * requests are necessary to fully validate a single address (for example if the
 * changes the user makes after the initial validation need to be re-validated),
 * then each followup request must populate this field with the {@link
 * google.maps.addressValidation.AddressValidation.responseId} from the very
 * first response in the validation sequence.
 * @type {string|undefined}
 */
google.maps.addressValidation.AddressValidationRequest.prototype
    .previousResponseId;

/**
 * A token which identifies an Autocomplete session for billing purposes.
 * @type {!google.maps.places.AutocompleteSessionToken|undefined}
 */
google.maps.addressValidation.AddressValidationRequest.prototype.sessionToken;

/**
 * Enables USPS CASS compatible mode. This affects <em>only</em> the {@link
 * google.maps.addressValidation.AddressValidation.uspsData} field of {@link
 * google.maps.addressValidation.AddressValidation}. Note: for USPS CASS enabled
 * requests for addresses in Puerto Rico, a {@link
 * google.maps.places.PostalAddress.regionCode} of the <code>address</code> must
 * be provided as &quot;PR&quot;, or an {@link
 * google.maps.places.PostalAddress.administrativeArea} of the
 * <code>address</code> must be provided as &quot;Puerto Rico&quot;
 * (case-insensitive) or &quot;PR&quot;.
 * @type {boolean|undefined}
 */
google.maps.addressValidation.AddressValidationRequest.prototype
    .uspsCASSEnabled;

/**
 * The different possible values indicating the level of certainty that the
 * component is correct.
 *
 * Access by calling `const {ConfirmationLevel} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.addressValidation.ConfirmationLevel = {
  CONFIRMED: 'CONFIRMED',
  UNCONFIRMED_AND_SUSPICIOUS: 'UNCONFIRMED_AND_SUSPICIOUS',
  UNCONFIRMED_BUT_PLAUSIBLE: 'UNCONFIRMED_BUT_PLAUSIBLE',
};

/**
 * Contains information about the place the input was geocoded to.
 *
 * Access by calling `const {Geocode} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.Geocode = function() {};

/**
 * The bounds of the geocoded place.
 * @type {!google.maps.LatLngBounds|null}
 */
google.maps.addressValidation.Geocode.prototype.bounds;

/**
 * The size of the geocoded place, in meters. This is another measure of the
 * coarseness of the geocoded location, but in physical size rather than in
 * semantic meaning.
 * @type {number|null}
 */
google.maps.addressValidation.Geocode.prototype.featureSizeMeters;

/**
 * The geocoded location of the input.
 * @type {!google.maps.LatLngAltitude|null}
 */
google.maps.addressValidation.Geocode.prototype.location;

/**
 * The Place ID of the geocoded place. Using Place is preferred over using
 * addresses, latitude/longitude coordinates, or plus codes. Using coordinates
 * for routing or calculating driving directions will always result in the point
 * being snapped to the road nearest to those coordinates. This may not be a
 * road that will quickly or safely lead to the destination and may not be near
 * an access point to the property. Additionally, when a location is reverse
 * geocoded, there is no guarantee that the returned address will match the
 * original.
 * @type {string|null}
 */
google.maps.addressValidation.Geocode.prototype.placeId;

/**
 * The type(s) of place that the input geocoded to. For example,
 * <code>[&#39;locality&#39;, &#39;political&#39;]</code>. The full list of
 * types can be found in the <a
 * href="https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types">Geocoding
 * API documentation</a>.
 * @type {!Array<string>}
 */
google.maps.addressValidation.Geocode.prototype.placeTypes;

/**
 * The plus code corresponding to the <code>location</code>.
 * @type {!google.maps.places.PlusCode|null}
 */
google.maps.addressValidation.Geocode.prototype.plusCode;

/**
 * Returns a Place representation of this Geocode. To get full place details, a
 * call to place.fetchFields() should be made.
 * @return {undefined}
 */
google.maps.addressValidation.Geocode.prototype.fetchPlace = function() {};

/**
 * The various granularities that an address or a geocode can have. When used to
 * indicate granularity for an <em>address</em>, these values indicate with how
 * fine a granularity the address identifies a mailing destination. For example,
 * an address such as &quot;123 Main Street, Redwood City, CA, 94061&quot;
 * identifies a <code>PREMISE</code> while something like &quot;Redwood City,
 * CA, 94061&quot; identifies a <code>LOCALITY</code>. However, if we are unable
 * to find a geocode for &quot;123 Main Street&quot; in Redwood City, the
 * geocode returned might be of <code>LOCALITY</code> granularity even though
 * the address is more granular.
 *
 * Access by calling `const {Granularity} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.addressValidation.Granularity = {
  /**
   * The address or geocode indicates a block. Only used in regions which have
   * block-level addressing, such as Japan.
   */
  BLOCK: 'BLOCK',
  /**
   * All other granularities, which are bucketed together since they are not
   * deliverable.
   */
  OTHER: 'OTHER',
  /**
   * Building-level result.
   */
  PREMISE: 'PREMISE',
  /**
   * A geocode that approximates the building-level location of the address.
   */
  PREMISE_PROXIMITY: 'PREMISE_PROXIMITY',
  /**
   * The geocode or address is granular to route, such as a street, road, or
   * highway.
   */
  ROUTE: 'ROUTE',
  /**
   * Below-building level result, such as an apartment.
   */
  SUB_PREMISE: 'SUB_PREMISE',
};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 *
 * Offers an interpretive summary of the API response, intended to assist in
 * determining a potential subsequent action to take. This field is derived from
 * other fields in the API response and should not be considered as a guarantee
 * of address accuracy or deliverability.
 *
 * Access by calling `const {PossibleNextAction} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.addressValidation.PossibleNextAction = {
  /**
   * The API response does not contain signals that warrant one of the other
   * PossibleNextAction values. You might consider using the post-processed
   * address without further prompting your customer, though this does not
   * guarantee the address is valid, and the address might still contain
   * corrections. It is your responsibility to determine if and how to prompt
   * your customer, depending on your own risk assessment.
   */
  ACCEPT: 'ACCEPT',
  /**
   * One or more fields of the API response indicate potential minor issues with
   * the post-processed address, for example the <code>postal_code</code>
   * address component was <code>replaced</code>. Prompting your customer to
   * review the address could help improve the quality of the address.
   */
  CONFIRM: 'CONFIRM',
  /**
   * The API response indicates the post-processed address might be missing a
   * subpremises. Prompting your customer to review the address and consider
   * adding a unit number could help improve the quality of the address. The
   * post-processed address might also have other minor issues. Note: this enum
   * value can only be returned for US addresses.
   */
  CONFIRM_ADD_SUBPREMISES: 'CONFIRM_ADD_SUBPREMISES',
  /**
   * One or more fields of the API response indicate a potential issue with the
   * post-processed address, for example the
   * <code>verdict.validation_granularity</code> is <code>OTHER</code>.
   * Prompting your customer to edit the address could help improve the quality
   * of the address.
   */
  FIX: 'FIX',
};

/**
 * USPS representation of a US address.
 *
 * Access by calling `const {USPSAddress} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.USPSAddress = function() {};

/**
 * The city name.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.city;

/**
 * The address line containing the city, state, and zip code.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.cityStateZipAddressLine;

/**
 * The name of the firm.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.firm;

/**
 * The first line of the address.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.firstAddressLine;

/**
 * The second line of the address.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.secondAddressLine;

/**
 * The 2-letter state code.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.state;

/**
 * The Puerto Rican urbanization name.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.urbanization;

/**
 * The Postal code, e.g. &quot;10009&quot;.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.zipCode;

/**
 * The 4-digit postal code extension, e.g. &quot;5023&quot;.
 * @type {string|null}
 */
google.maps.addressValidation.USPSAddress.prototype.zipCodeExtension;

/**
 * The USPS data for the address. USPSData is not guaranteed to be fully
 * populated for every US or PR address sent to the Address Validation API.
 * It&#39;s recommended to integrate the backup address fields in the response
 * if you utilize uspsData as the primary part of the response.
 *
 * Access by calling `const {USPSData} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.USPSData = function() {};

/**
 * Abbreviated city.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.abbreviatedCity;

/**
 * Type of the address record that matches the input address.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.addressRecordType;

/**
 * The carrier route code. A four character code consisting of a one letter
 * prefix and a three digit route designator.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.carrierRoute;

/**
 * Carrier route rate sort indicator.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.carrierRouteIndicator;

/**
 * Indicator that the request has been CASS processed.
 * @type {boolean}
 */
google.maps.addressValidation.USPSData.prototype.cassProcessed;

/**
 * County name.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.county;

/**
 * The delivery point check digit. This number is added to the end of the
 * delivery_point_barcode for mechanically scanned mail. Adding all the digits
 * of the delivery_point_barcode, delivery_point_check_digit, postal code, and
 * ZIP+4 together should yield a number divisible by 10.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.deliveryPointCheckDigit;

/**
 * The 2-digit delivery point code.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.deliveryPointCode;

/**
 * Indicates if the address is a CMRA (Commercial Mail Receiving Agency)--a
 * private business receiving mail for clients. Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvCMRA;

/**
 * The possible values for DPV confirmation. Returns a single character or
 * returns no value.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvConfirmation;

/**
 * Flag indicates addresses where USPS cannot knock on a door to deliver mail.
 * Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvDoorNotAccessible;

/**
 * Flag indicates mail is delivered to a single receptable at a site. Returns a
 * single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvDrop;

/**
 * Indicates that more than one DPV return code is valid for the address.
 * Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvEnhancedDeliveryCode;

/**
 * The footnotes from delivery point validation. Multiple footnotes may be
 * strung together in the same string.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvFootnote;

/**
 * Flag indicates mail delivery is not performed every day of the week. Returns
 * a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvNonDeliveryDays;

/**
 * Integer identifying non-delivery days. It can be interrogated using bit
 * flags: 0x40 – Sunday is a non-delivery day 0x20 – Monday is a non-delivery
 * day 0x10 – Tuesday is a non-delivery day 0x08 – Wednesday is a non-delivery
 * day 0x04 – Thursday is a non-delivery day 0x02 – Friday is a non-delivery day
 * 0x01 – Saturday is a non-delivery day
 * @type {number|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvNonDeliveryDaysValues;

/**
 * Flag indicates door is accessible, but package will not be left due to
 * security concerns. Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvNoSecureLocation;

/**
 * Indicates whether the address is a no stat address or an active address. No
 * stat addresses are ones which are not continuously occupied or addresses that
 * the USPS does not service. Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvNoStat;

/**
 * Indicates the NoStat type. Returns a reason code as int.
 * @type {number|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvNoStatReasonCode;

/**
 * Indicates the address was matched to PBSA record. Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvPBSA;

/**
 * Indicates that mail is not delivered to the street address. Returns a single
 * character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvThrowback;

/**
 * Indicates whether the address is vacant. Returns a single character.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.dpvVacant;

/**
 * eLOT Ascending/Descending Flag (A/D).
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.elotFlag;

/**
 * Enhanced Line of Travel (eLOT) number.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.elotNumber;

/**
 * Error message for USPS data retrieval. This is populated when USPS processing
 * is suspended because of the detection of artificially created addresses.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.errorMessage;

/**
 * FIPS county code.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.fipsCountyCode;

/**
 * Indicator that a default address was found, but more specific addresses
 * exist.
 * @type {boolean}
 */
google.maps.addressValidation.USPSData.prototype.hasDefaultAddress;

/**
 * The delivery address is matchable, but the EWS file indicates that an exact
 * match will be available soon.
 * @type {boolean}
 */
google.maps.addressValidation.USPSData.prototype.hasNoEWSMatch;

/**
 * LACSLink indicator.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.lacsLinkIndicator;

/**
 * LACSLink return code.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.lacsLinkReturnCode;

/**
 * PMB (Private Mail Box) unit designator.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.pmbDesignator;

/**
 * PMB (Private Mail Box) number.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.pmbNumber;

/**
 * PO Box only postal code.
 * @type {boolean}
 */
google.maps.addressValidation.USPSData.prototype.poBoxOnlyPostalCode;

/**
 * Main post office city.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.postOfficeCity;

/**
 * Main post office state.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.postOfficeState;

/**
 * USPS standardized address.
 * @type {!google.maps.addressValidation.USPSAddress|null}
 */
google.maps.addressValidation.USPSData.prototype.standardizedAddress;

/**
 * Footnotes from matching a street or highrise record to suite information. If
 * business name match is found, the secondary number is returned.
 * @type {string|null}
 */
google.maps.addressValidation.USPSData.prototype.suiteLinkFootnote;

/**
 * Represents the post-processed address for the supplied address.
 *
 * Access by calling `const {Verdict} = await
 * google.maps.importLibrary("addressValidation")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.addressValidation.Verdict = function() {};

/**
 * The address is considered complete if there are no unresolved tokens, no
 * unexpected or missing address components. If unset, indicates that the value
 * is <code>false</code>. See {@link
 * google.maps.addressValidation.Address.missingComponentTypes}, {@link
 * google.maps.addressValidation.Address.unresolvedTokens} or {@link
 * google.maps.addressValidation.AddressComponent.unexpected} fields for more
 * details.
 * @type {boolean}
 */
google.maps.addressValidation.Verdict.prototype.addressComplete;

/**
 * Information about the granularity of the {@link
 * google.maps.addressValidation.Geocode}. This can be understood as the
 * semantic meaning of how coarse or fine the geocoded location is.
 * @type {!google.maps.addressValidation.Granularity|null}
 */
google.maps.addressValidation.Verdict.prototype.geocodeGranularity;

/**
 * At least one address component was inferred (i.e. added) that wasn&#39;t in
 * the input, see {@link google.maps.addressValidation.AddressComponent} for
 * details.
 * @type {boolean}
 */
google.maps.addressValidation.Verdict.prototype.hasInferredComponents;

/**
 * At least one address component was replaced - see {@link
 * google.maps.addressValidation.AddressComponent} for details.
 * @type {boolean|null}
 */
google.maps.addressValidation.Verdict.prototype.hasReplacedComponents;

/**
 * At least one address component cannot be categorized or validated, see {@link
 * google.maps.addressValidation.AddressComponent} for details.
 * @type {boolean}
 */
google.maps.addressValidation.Verdict.prototype.hasUnconfirmedComponents;

/**
 * The granularity of the <strong>input</strong> address. This is the result of
 * parsing the input address and does not give any validation signals. For
 * validation signals, refer to <code>validationGranularity</code>.
 * @type {!google.maps.addressValidation.Granularity|null}
 */
google.maps.addressValidation.Verdict.prototype.inputGranularity;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * A possible next action to take based on other fields in the API response.
 * See {@link google.maps.addressValidation.PossibleNextAction} for details.
 * @type {!google.maps.addressValidation.PossibleNextAction|null}
 */
google.maps.addressValidation.Verdict.prototype.possibleNextAction;

/**
 * The granularity level that the API can fully <strong>validate</strong> the
 * address to. For example, a <code>validationGranularity</code> of
 * <code>PREMISE</code> indicates all address components at the level of
 * <code>PREMISE</code> and broader can be validated.
 * @type {!google.maps.addressValidation.Granularity|null}
 */
google.maps.addressValidation.Verdict.prototype.validationGranularity;

/**
 * @const
 */
google.maps.airQuality = {};

/**
 * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
 *
 * Displays air quality information for a given location.
 *
 * Access by calling `const {AirQualityMeterElement} = await
 * google.maps.importLibrary("airQuality")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.airQuality.AirQualityMeterElementOptions=} options
 * @implements {google.maps.airQuality.AirQualityMeterElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.airQuality.AirQualityMeterElement = function(options) {};

/**
 * The location to render the air quality meter for. Normalizes to a
 * <code>LatLngAltitude</code>.
 * @default <code>null</code>
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLng|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngAltitude|null|undefined}
 */
google.maps.airQuality.AirQualityMeterElement.prototype.location;

/**
 * An override for the language to request from the <a
 * href="https://developers.google.com/maps/documentation/air-quality/overview">Air
 * Quality API</a>. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @default <code>null</code>
 * @type {string|null}
 */
google.maps.airQuality.AirQualityMeterElement.prototype.requestedLanguage;



/**
 * AirQualityMeterElement options.
 * @record
 */
google.maps.airQuality.AirQualityMeterElementOptions = function() {};

/**
 * See {@link google.maps.airQuality.AirQualityMeterElement.location}
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLng|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngAltitude|null|undefined}
 */
google.maps.airQuality.AirQualityMeterElementOptions.prototype.location;

/**
 * See {@link google.maps.airQuality.AirQualityMeterElement.requestedLanguage}
 * @type {string|null|undefined}
 */
google.maps.airQuality.AirQualityMeterElementOptions.prototype
    .requestedLanguage;

/**
 * @const
 */
google.maps.drawing = {};

/**
 * Options for the rendering of the drawing control.
 * @record
 */
google.maps.drawing.DrawingControlOptions = function() {};

/**
 * The drawing modes to display in the drawing control, in the order in which
 * they are to be displayed. The hand icon (which corresponds to the
 * <code>null</code> drawing mode) is always available and is not to be
 * specified in this array.
 * @default <code>[{@link google.maps.drawing.OverlayType.MARKER}, {@link
 * google.maps.drawing.OverlayType.POLYLINE}, {@link
 * google.maps.drawing.OverlayType.RECTANGLE}, {@link
 * google.maps.drawing.OverlayType.CIRCLE}, {@link
 * google.maps.drawing.OverlayType.POLYGON}]</code>
 * @type {!Array<!google.maps.drawing.OverlayType>|null|undefined}
 */
google.maps.drawing.DrawingControlOptions.prototype.drawingModes;

/**
 * Position id. Used to specify the position of the control on the map.
 * @default {@link google.maps.ControlPosition.TOP_LEFT}
 * @type {!google.maps.ControlPosition|null|undefined}
 */
google.maps.drawing.DrawingControlOptions.prototype.position;

/**
 * Allows users to draw markers, polygons, polylines, rectangles, and circles on
 * the map. The <code>DrawingManager</code>&#39;s drawing mode defines the type
 * of overlay that will be created by the user. Adds a control to the map,
 * allowing the user to switch drawing mode.
 *
 * Access by calling `const {DrawingManager} = await
 * google.maps.importLibrary("drawing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.drawing.DrawingManagerOptions=} options
 * @extends {google.maps.MVCObject}
 * @constructor
 * @deprecated Drawing library functionality in the Maps JavaScript API is
 *     deprecated. This API was deprecated in August 2025 and will be made
 *     unavailable in a later version of the Maps JavaScript API, releasing in
 *     May 2026. For more info, see <a
 *     href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>
 */
google.maps.drawing.DrawingManager = function(options) {};

/**
 * Returns the <code>DrawingManager</code>&#39;s drawing mode.
 * @return {?google.maps.drawing.OverlayType}
 */
google.maps.drawing.DrawingManager.prototype.getDrawingMode = function() {};

/**
 * Returns the <code>Map</code> to which the <code>DrawingManager</code> is
 * attached, which is the <code>Map</code> on which the overlays created will be
 * placed.
 * @return {google.maps.Map}
 */
google.maps.drawing.DrawingManager.prototype.getMap = function() {};

/**
 * Changes the <code>DrawingManager</code>&#39;s drawing mode, which defines the
 * type of overlay to be added on the map. Accepted values are
 * <code>'marker'</code>, <code>'polygon'</code>, <code>'polyline'</code>,
 * <code>'rectangle'</code>, <code>'circle'</code>, or <code>null</code>. A
 * drawing mode of <code>null</code> means that the user can interact with the
 * map as normal, and clicks do not draw anything.
 * @param {?google.maps.drawing.OverlayType} drawingMode
 * @return {undefined}
 */
google.maps.drawing.DrawingManager.prototype.setDrawingMode = function(
    drawingMode) {};

/**
 * Attaches the <code>DrawingManager</code> object to the specified
 * <code>Map</code>.
 * @param {google.maps.Map} map
 * @return {undefined}
 */
google.maps.drawing.DrawingManager.prototype.setMap = function(map) {};

/**
 * Sets the <code>DrawingManager</code>&#39;s options.
 * @param {google.maps.drawing.DrawingManagerOptions} options
 * @return {undefined}
 */
google.maps.drawing.DrawingManager.prototype.setOptions = function(options) {};

/**
 * Options for the drawing manager.
 * @record
 */
google.maps.drawing.DrawingManagerOptions = function() {};

/**
 * Options to apply to any new circles created with this
 * <code>DrawingManager</code>. The <code>center</code> and <code>radius</code>
 * properties are ignored, and the <code>map</code> property of a new circle is
 * always set to the <code>DrawingManager</code>&#39;s map.
 * @type {!google.maps.CircleOptions|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.circleOptions;

/**
 * The enabled/disabled state of the drawing control.
 * @default <code>true</code>
 * @type {boolean|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.drawingControl;

/**
 * The display options for the drawing control.
 * @type {!google.maps.drawing.DrawingControlOptions|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.drawingControlOptions;

/**
 * The <code>DrawingManager</code>&#39;s drawing mode, which defines the type of
 * overlay to be added on the map. Accepted values are <code>'marker'</code>,
 * <code>'polygon'</code>, <code>'polyline'</code>, <code>'rectangle'</code>,
 * <code>'circle'</code>, or <code>null</code>. A drawing mode of
 * <code>null</code> means that the user can interact with the map as normal,
 * and clicks do not draw anything.
 * @type {!google.maps.drawing.OverlayType|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.drawingMode;

/**
 * The <code>Map</code> to which the <code>DrawingManager</code> is attached,
 * which is the <code>Map</code> on which the overlays created will be placed.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.map;

/**
 * Options to apply to any new markers created with this
 * <code>DrawingManager</code>. The <code>position</code> property is ignored,
 * and the <code>map</code> property of a new marker is always set to the
 * <code>DrawingManager</code>&#39;s map.
 * @type {!google.maps.MarkerOptions|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.markerOptions;

/**
 * Options to apply to any new polygons created with this
 * <code>DrawingManager</code>. The <code>paths</code> property is ignored, and
 * the <code>map</code> property of a new polygon is always set to the
 * <code>DrawingManager</code>&#39;s map.
 * @type {!google.maps.PolygonOptions|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.polygonOptions;

/**
 * Options to apply to any new polylines created with this
 * <code>DrawingManager</code>. The <code>path</code> property is ignored, and
 * the <code>map</code> property of a new polyline is always set to the
 * <code>DrawingManager</code>&#39;s map.
 * @type {!google.maps.PolylineOptions|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.polylineOptions;

/**
 * Options to apply to any new rectangles created with this
 * <code>DrawingManager</code>. The <code>bounds</code> property is ignored, and
 * the <code>map</code> property of a new rectangle is always set to the
 * <code>DrawingManager</code>&#39;s map.
 * @type {!google.maps.RectangleOptions|null|undefined}
 */
google.maps.drawing.DrawingManagerOptions.prototype.rectangleOptions;

/**
 * The properties of an overlaycomplete event on a <code>DrawingManager</code>.
 * @record
 */
google.maps.drawing.OverlayCompleteEvent = function() {};

/**
 * The completed overlay.
 * @type {!google.maps.Marker|!google.maps.Polygon|!google.maps.Polyline|!google.maps.Rectangle|!google.maps.Circle}
 */
google.maps.drawing.OverlayCompleteEvent.prototype.overlay;

/**
 * The completed overlay&#39;s type.
 * @type {!google.maps.drawing.OverlayType}
 */
google.maps.drawing.OverlayCompleteEvent.prototype.type;

/**
 * The types of overlay that may be created by the <code>DrawingManager</code>.
 * Specify these by value, or by using the constant&#39;s name. For example,
 * <code>'polygon'</code> or
 * <code>google.maps.drawing.OverlayType.POLYGON</code>.
 *
 * Access by calling `const {OverlayType} = await
 * google.maps.importLibrary("drawing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.drawing.OverlayType = {
  /**
   * Specifies that the <code>DrawingManager</code> creates circles, and that
   * the overlay given in the <code>overlaycomplete</code> event is a circle.
   */
  CIRCLE: 'circle',
  /**
   * Specifies that the <code>DrawingManager</code> creates markers, and that
   * the overlay given in the <code>overlaycomplete</code> event is a marker.
   */
  MARKER: 'marker',
  /**
   * Specifies that the <code>DrawingManager</code> creates polygons, and that
   * the overlay given in the <code>overlaycomplete</code> event is a polygon.
   */
  POLYGON: 'polygon',
  /**
   * Specifies that the <code>DrawingManager</code> creates polylines, and that
   * the overlay given in the <code>overlaycomplete</code> event is a polyline.
   */
  POLYLINE: 'polyline',
  /**
   * Specifies that the <code>DrawingManager</code> creates rectangles, and that
   * the overlay given in the <code>overlaycomplete</code> event is a rectangle.
   */
  RECTANGLE: 'rectangle',
};

/**
 * @const
 */
google.maps.geometry = {};

/**
 * Utilities for polyline encoding and decoding.
 *
 * Access by calling `const {encoding} = await
 * google.maps.importLibrary("geometry")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.geometry.encoding = function() {};

/**
 * Decodes an encoded path string into a sequence of LatLngs.
 * @param {string} encodedPath
 * @return {!Array<!google.maps.LatLng>}
 */
google.maps.geometry.encoding.decodePath = function(encodedPath) {};

/**
 * Encodes a sequence of LatLngs into an encoded path string.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|!google.maps.MVCArray<!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     path
 * @return {string}
 */
google.maps.geometry.encoding.encodePath = function(path) {};

/**
 * Utility functions for computations involving polygons and polylines.
 *
 * Access by calling `const {poly} = await
 * google.maps.importLibrary("geometry")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.geometry.poly = function() {};

/**
 * Computes whether the given point lies inside the specified polygon.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} point
 * @param {!google.maps.Polygon} polygon
 * @return {boolean}
 */
google.maps.geometry.poly.containsLocation = function(point, polygon) {};

/**
 * Computes whether the given point lies on or near to a polyline, or the edge
 * of a polygon, within a specified tolerance. Returns <code>true</code> when
 * the difference between the latitude and longitude of the supplied point, and
 * the closest point on the edge, is less than the tolerance. The tolerance
 * defaults to 10<sup>-9</sup> degrees.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} point
 * @param {!google.maps.Polygon|!google.maps.Polyline} poly
 * @param {number=} tolerance
 * @return {boolean}
 */
google.maps.geometry.poly.isLocationOnEdge = function(
    point, poly, tolerance) {};

/**
 * Utility functions for computing geodesic angles, distances and areas. The
 * default radius is Earth&#39;s radius of 6378137 meters.
 *
 * Access by calling `const {spherical} = await
 * google.maps.importLibrary("geometry")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.geometry.spherical = function() {};

/**
 * Returns the unsigned area of a closed path, in the range [0, 2×pi×radius²].
 * The computed area uses the same units as the radius. The
 * <code>radiusOfSphere</code> defaults to the Earth&#39;s radius in meters, in
 * which case the area is in square meters. Passing a <code>Circle</code>
 * requires the <code>radius</code> to be set to a non-negative value.
 * Additionally, the Circle must not cover more than 100% of the sphere. And
 * when passing a <code>LatLngBounds</code>, the southern LatLng cannot be more
 * north than the northern LatLng.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|!google.maps.MVCArray<!google.maps.LatLng|!google.maps.LatLngLiteral>|!google.maps.Circle|!google.maps.CircleLiteral|!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral}
 *     path
 * @param {number=} radiusOfSphere
 * @return {number}
 */
google.maps.geometry.spherical.computeArea = function(path, radiusOfSphere) {};

/**
 * Returns the distance, in meters, between two LatLngs. You can optionally
 * specify a custom radius. The radius defaults to the radius of the Earth.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} from
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} to
 * @param {number=} radius
 * @return {number}
 */
google.maps.geometry.spherical.computeDistanceBetween = function(
    from, to, radius) {};

/**
 * Returns the heading from one LatLng to another LatLng. Headings are expressed
 * in degrees clockwise from North within the range [-180,180).
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} from
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} to
 * @return {number}
 */
google.maps.geometry.spherical.computeHeading = function(from, to) {};

/**
 * Returns the length of the given path.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|!google.maps.MVCArray<!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     path
 * @param {number=} radius
 * @return {number}
 */
google.maps.geometry.spherical.computeLength = function(path, radius) {};

/**
 * Returns the LatLng resulting from moving a distance from an origin in the
 * specified heading (expressed in degrees clockwise from north).
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} from
 * @param {number} distance
 * @param {number} heading
 * @param {number=} radius
 * @return {!google.maps.LatLng}
 */
google.maps.geometry.spherical.computeOffset = function(
    from, distance, heading, radius) {};

/**
 * Returns the location of origin when provided with a LatLng destination,
 * meters travelled and original heading. Headings are expressed in degrees
 * clockwise from North. This function returns <code>null</code> when no
 * solution is available.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} to
 * @param {number} distance
 * @param {number} heading
 * @param {number=} radius
 * @return {!google.maps.LatLng|null}
 */
google.maps.geometry.spherical.computeOffsetOrigin = function(
    to, distance, heading, radius) {};

/**
 * Returns the signed area of a closed path, where counterclockwise is positive,
 * in the range [-2×pi×radius², 2×pi×radius²]. The computed area uses the same
 * units as the radius. The radius defaults to the Earth&#39;s radius in meters,
 * in which case the area is in square meters. <br><br> The area is computed
 * using the <a href="https://wikipedia.org/wiki/Parallel_transport">parallel
 * transport</a> method; the parallel transport around a closed path on the unit
 * sphere twists by an angle that is equal to the area enclosed by the path.
 * This is simpler and more accurate and robust than triangulation using Girard,
 * l&#39;Huilier, or Eriksson on each triangle. In particular, since it
 * doesn&#39;t triangulate, it suffers no instability except in the unavoidable
 * case when an <em>edge</em> (not a diagonal) of the polygon spans 180 degrees.
 * @param {!Array<!google.maps.LatLng|!google.maps.LatLngLiteral>|!google.maps.MVCArray<!google.maps.LatLng|!google.maps.LatLngLiteral>}
 *     loop
 * @param {number=} radius
 * @return {number}
 */
google.maps.geometry.spherical.computeSignedArea = function(loop, radius) {};

/**
 * Returns the LatLng which lies the given fraction of the way between the
 * origin LatLng and the destination LatLng.
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} from
 * @param {!google.maps.LatLng|!google.maps.LatLngLiteral} to
 * @param {number} fraction
 * @return {!google.maps.LatLng}
 */
google.maps.geometry.spherical.interpolate = function(from, to, fraction) {};

/**
 * @const
 */
google.maps.journeySharing = {};

/**
 * The auth token returned by the token fetcher.
 * @record
 */
google.maps.journeySharing.AuthToken = function() {};

/**
 * The expiration time in seconds. A token expires in this amount of time after
 * fetching.
 * @type {number}
 */
google.maps.journeySharing.AuthToken.prototype.expiresInSeconds;

/**
 * The token.
 * @type {string}
 */
google.maps.journeySharing.AuthToken.prototype.token;

/**
 * Contains additional information needed to mint JSON Web Tokens.
 * @record
 */
google.maps.journeySharing.AuthTokenContext = function() {};

/**
 * When provided, the minted token should have a private
 * <code>DeliveryVehicleId</code> claim for the provided deliveryVehicleId.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.AuthTokenContext.prototype.deliveryVehicleId;

/**
 * When provided, the minted token should have a private <code>TaskId</code>
 * claim for the provided taskId.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.AuthTokenContext.prototype.taskId;

/**
 * When provided, the minted token should have a private <code>TrackingId</code>
 * claim for the provided trackingId.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.AuthTokenContext.prototype.trackingId;

/**
 * When provided, the minted token should have a private <code>TripId</code>
 * claim for the provided tripId.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.AuthTokenContext.prototype.tripId;

/**
 * When provided, the minted token should have a private <code>VehicleId</code>
 * claim for the provided vehicleId.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.AuthTokenContext.prototype.vehicleId;

/**
 * @typedef {function(!google.maps.journeySharing.AuthTokenFetcherOptions):
 * !Promise<!google.maps.journeySharing.AuthToken>}
 */
google.maps.journeySharing.AuthTokenFetcher;

/**
 * Options for the auth token fetcher.
 * @record
 */
google.maps.journeySharing.AuthTokenFetcherOptions = function() {};

/**
 * The auth token context. IDs specified in the context should be added to the
 * request sent to the JSON Web Token minting endpoint.
 * @type {!google.maps.journeySharing.AuthTokenContext}
 */
google.maps.journeySharing.AuthTokenFetcherOptions.prototype.context;

/**
 * The Fleet Engine service type.
 * @type {!google.maps.journeySharing.FleetEngineServiceType}
 */
google.maps.journeySharing.AuthTokenFetcherOptions.prototype.serviceType;

/**
 * Automatic viewport mode.
 *
 * Access by calling `const {AutomaticViewportMode} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.AutomaticViewportMode = {
  /**
   * Automatically adjust the viewport to fit markers and any visible
   * anticipated route polylines. This is the default.
   */
  FIT_ANTICIPATED_ROUTE: 'FIT_ANTICIPATED_ROUTE',
  /**
   * Do not automatically adjust the viewport.
   */
  NONE: 'NONE',
};

/**
 * MarkerSetup default options.
 * @record
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead.
 */
google.maps.journeySharing.DefaultMarkerSetupOptions = function() {};

/**
 * Default marker options.
 * @type {!google.maps.MarkerOptions}
 */
google.maps.journeySharing.DefaultMarkerSetupOptions.prototype
    .defaultMarkerOptions;

/**
 * PolylineSetup default options.
 * @record
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead.
 */
google.maps.journeySharing.DefaultPolylineSetupOptions = function() {};

/**
 * Default polyline options.
 * @type {!google.maps.PolylineOptions}
 */
google.maps.journeySharing.DefaultPolylineSetupOptions.prototype
    .defaultPolylineOptions;

/**
 * Default polyline visibility.
 * @type {boolean}
 */
google.maps.journeySharing.DefaultPolylineSetupOptions.prototype.defaultVisible;

/**
 * The details for a delivery vehicle returned by Fleet Engine.
 * @record
 */
google.maps.journeySharing.DeliveryVehicle = function() {};

/**
 * Custom delivery vehicle attributes.
 * @type {!Object<string, ?string>}
 */
google.maps.journeySharing.DeliveryVehicle.prototype.attributes;

/**
 * The location where the current route segment ends.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.DeliveryVehicle.prototype
    .currentRouteSegmentEndPoint;

/**
 * The last reported location of the delivery vehicle.
 * @type {?google.maps.journeySharing.VehicleLocationUpdate}
 */
google.maps.journeySharing.DeliveryVehicle.prototype
    .latestVehicleLocationUpdate;

/**
 * In the format
 * &quot;providers/{provider_id}/deliveryVehicles/{delivery_vehicle_id}&quot;.
 * The delivery_vehicle_id must be a unique identifier.
 * @type {string}
 */
google.maps.journeySharing.DeliveryVehicle.prototype.name;

/**
 * The current navigation status of the vehicle.
 * @type {string}
 */
google.maps.journeySharing.DeliveryVehicle.prototype.navigationStatus;

/**
 * The remaining driving distance in the current route segment, in meters.
 * @type {number}
 */
google.maps.journeySharing.DeliveryVehicle.prototype.remainingDistanceMeters;

/**
 * The remaining driving duration in the current route segment, in milliseconds.
 * @type {?number}
 */
google.maps.journeySharing.DeliveryVehicle.prototype.remainingDurationMillis;

/**
 * The journey segments assigned to this delivery vehicle, starting from the
 * vehicle&#39;s most recently reported location. This is only populated when
 * the {@link google.maps.journeySharing.DeliveryVehicle} data object is
 * provided through {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider}.
 * @type {!Array<!google.maps.journeySharing.VehicleJourneySegment>}
 */
google.maps.journeySharing.DeliveryVehicle.prototype
    .remainingVehicleJourneySegments;

/**
 * Parameters specific to marker customization functions that apply options to
 * delivery vehicle markers. Used by {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions.deliveryVehicleMarkerCustomization}
 * and {@link
 * google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions.deliveryVehicleMarkerCustomization}.
 * @extends {google.maps.journeySharing.MarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams =
    function() {};

/**
 * The delivery vehicle represented by this marker.
 * @type {!google.maps.journeySharing.DeliveryVehicle}
 */
google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams
    .prototype.vehicle;

/**
 * Parameters specific to polyline customization functions for {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider}.
 * @extends {google.maps.journeySharing.PolylineCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams =
    function() {};

/**
 * The delivery vehicle traversing through this polyline.
 * @type {!google.maps.journeySharing.DeliveryVehicle}
 */
google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams
    .prototype.deliveryVehicle;

/**
 * DeliveryVehicleStop type
 * @record
 */
google.maps.journeySharing.DeliveryVehicleStop = function() {};

/**
 * The location of the stop.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.DeliveryVehicleStop.prototype.plannedLocation;

/**
 * The state of the stop.
 * @type {?google.maps.journeySharing.DeliveryVehicleStopState}
 */
google.maps.journeySharing.DeliveryVehicleStop.prototype.state;

/**
 * The list of Tasks to be performed at this stop. <ul> <li><code>id</code>: the
 * ID of the task. <li><code>extraDurationMillis</code>: the extra time it takes
 * to perform the task, in milliseconds. </ul>
 * @type {!Array<!google.maps.journeySharing.TaskInfo>}
 */
google.maps.journeySharing.DeliveryVehicleStop.prototype.tasks;

/**
 * The current state of a {@link
 * google.maps.journeySharing.DeliveryVehicleStop}.
 *
 * Access by calling `const {DeliveryVehicleStopState} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.DeliveryVehicleStopState = {
  /**
   * Arrived at stop. Assumes that when the vehicle is routing to the next stop,
   * that all previous stops have been completed.
   */
  ARRIVED: 'ARRIVED',
  /**
   * Assigned and actively routing.
   */
  ENROUTE: 'ENROUTE',
  /**
   * Created, but not actively routing.
   */
  NEW: 'NEW',
  /**
   * Unknown.
   */
  UNSPECIFIED: 'UNSPECIFIED',
};

/**
 * Delivery Fleet Location Provider.
 *
 * Access by calling `const {FleetEngineDeliveryFleetLocationProvider} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions}
 *     options Options to pass to the location provider.
 * @extends {google.maps.journeySharing.PollingLocationProvider}
 * @constructor
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider = function(
    options) {};

/**
 * The filter applied when fetching the delivery vehicles.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider.prototype
    .deliveryVehicleFilter;

/**
 * The bounds within which to track delivery vehicles. If no bounds are set, no
 * delivery vehicles will be tracked. To track all delivery vehicles regardless
 * of location, set bounds equivalent to the entire earth.
 * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider.prototype
    .locationRestriction;

/**
 * This Field is read-only. Threshold for stale vehicle location. If the last
 * updated location for the vehicle is older than this threshold, the vehicle
 * will not be displayed.
 * @type {number}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider.prototype
    .staleLocationThresholdMillis;

/**
 * Options for delivery fleet location provider.
 * @record
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions =
    function() {};

/**
 * Provides JSON Web Tokens for authenticating the client to Fleet Engine.
 * @type {!google.maps.journeySharing.AuthTokenFetcher}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions
    .prototype.authTokenFetcher;

/**
 * A filter query to apply when fetching delivery vehicles. This filter is
 * passed directly to Fleet Engine. <br><br>See <a
 * href="https://goo.gle/3wT0Dlt">ListDeliveryVehiclesRequest.filter</a> for
 * supported formats.<br><br>Note that valid filters for attributes must have
 * the &quot;attributes&quot; prefix. For example, <code>attributes.x =
 * &quot;y&quot;</code> or <code>attributes.&quot;x y&quot; =
 * &quot;z&quot;</code>.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions
    .prototype.deliveryVehicleFilter;

/**
 * Customization applied to a delivery vehicle marker. <br><br>Use this field to
 * specify custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li> If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams):
 *     void)|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions
    .prototype.deliveryVehicleMarkerCustomization;

/**
 * The latitude/longitude bounds within which to track vehicles immediately
 * after the location provider is instantiated. If not set, the location
 * provider does not start tracking any vehicles; use {@link
 * google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider.locationRestriction}
 * to set the bounds and begin tracking. To track all delivery vehicles
 * regardless of location, set bounds equivalent to the entire earth.
 * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions
    .prototype.locationRestriction;

/**
 * The consumer&#39;s project ID from Google Cloud Console.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions
    .prototype.projectId;

/**
 * Threshold for stale vehicle location. If the last updated location for the
 * vehicle is older this threshold, the vehicle will not be displayed. Defaults
 * to 24 hours in milliseconds. If the threshold is less than zero, or
 * <i>Infinity</i>, the threshold will be ignored and the vehicle location will
 * not be considered stale.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderOptions
    .prototype.staleLocationThresholdMillis;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.FleetEngineDeliveryFleetLocationProvider.update}
 * event is triggered.
 * @record
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderUpdateEvent =
    function() {};

/**
 * The list of delivery vehicles returned by the query. Unmodifiable.
 * @type {?Array<!google.maps.journeySharing.DeliveryVehicle>}
 */
google.maps.journeySharing.FleetEngineDeliveryFleetLocationProviderUpdateEvent
    .prototype.deliveryVehicles;

/**
 * Delivery Vehicle Location Provider.
 *
 * Access by calling `const {FleetEngineDeliveryVehicleLocationProvider} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions}
 *     options Options to pass to the location provider.
 * @extends {google.maps.journeySharing.PollingLocationProvider}
 * @constructor
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider =
    function(options) {};

/**
 * ID for the vehicle that this location provider observes. Set this field to
 * track a vehicle.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.prototype
    .deliveryVehicleId;

/**
 * Optionally allow users to display the task&#39;s outcome location.
 * @type {?boolean}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.prototype
    .shouldShowOutcomeLocations;

/**
 * Optionally allow users to display fetched tasks.
 * @type {?boolean}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.prototype
    .shouldShowTasks;

/**
 * This Field is read-only. Threshold for stale vehicle location. If the last
 * updated location for the vehicle is older than this threshold, the vehicle
 * will not be displayed.
 * @type {number}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.prototype
    .staleLocationThresholdMillis;

/**
 * Returns the filter options to apply when fetching tasks.
 * @type {!google.maps.journeySharing.FleetEngineTaskFilterOptions}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.prototype
    .taskFilterOptions;

/**
 * Options for delivery vehicle location provider.
 * @record
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions =
    function() {};

/**
 * Customization applied to the active polyline. An active polyline corresponds
 * to a portion of the route the vehicle is currently traversing through.
 * <br><br>Use this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.activePolylineCustomization;

/**
 * Provides JSON Web Tokens for authenticating the client to Fleet Engine.
 * @type {!google.maps.journeySharing.AuthTokenFetcher}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.authTokenFetcher;

/**
 * The delivery vehicle ID to track immediately after the location provider is
 * instantiated. If not specified, the location provider does not start tracking
 * any vehicle; use {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.deliveryVehicleId}
 * to set the ID and begin tracking.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.deliveryVehicleId;

/**
 * Customization applied to the delivery vehicle marker. <br><br>Use this field
 * to specify custom styling (such as marker icon) and interactivity (such as
 * click handling).<ul><li>If a {@link google.maps.MarkerOptions} object is
 * specified, the changes specified in it are applied to the marker after the
 * marker has been created, overwriting its default options if they
 * exist.</li><li>If a function is specified, it is invoked once when the marker
 * is created, before it is added to the map view. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the location
 * provider receives data from Fleet Engine, regardless of whether the data
 * corresponding to this marker have changed.<br><br>See {@link
 * google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.deliveryVehicleMarkerCustomization;

/**
 * Customization applied to a planned stop marker. <br><br>Use this field to
 * specify custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li>If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.PlannedStopMarkerCustomizationFunctionParams} for
 * a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.PlannedStopMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.plannedStopMarkerCustomization;

/**
 * Minimum time between fetching location updates in milliseconds. If it takes
 * longer than <code>pollingIntervalMillis</code> to fetch a location update,
 * the next location update is not started until the current one finishes.
 * <br><br>Setting this value to 0 disables recurring location updates. A new
 * location update is fetched if any of the parameters observed by the location
 * provider changes. <br><br>The default polling interval is 5000 milliseconds,
 * the minimum interval. If you set the polling interval to a lower non-zero
 * value, 5000 is used.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.pollingIntervalMillis;

/**
 * The consumer&#39;s project ID from Google Cloud Console.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.projectId;

/**
 * Customization applied to the remaining polyline. A remaining polyline
 * corresponds to a portion of the route the vehicle has not yet started
 * traversing through. <br><br>Use this field to specify custom styling (such as
 * polyline color) and interactivity (such as click handling).<ul><li> If
 * a {@link google.maps.PolylineOptions} object is specified, the changes
 * specified in it are applied to the polyline after the polyline has been
 * created, overwriting its default options if they exist. </li><li>If a
 * function is specified, it is invoked once when the polyline is created. (On
 * this invocation, the <code>isNew</code> parameter in the function parameters
 * object is set to <code>true</code>.) Additionally, this function is invoked
 * when the polyline&#39;s coordinates change, or when the location provider
 * receives data from Fleet Engine, regardless of whether the data corresponding
 * to this polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.remainingPolylineCustomization;

/**
 * Boolean to show or hide outcome locations for the fetched tasks.
 * @type {?boolean}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.shouldShowOutcomeLocations;

/**
 * Boolean to show or hide tasks. Setting this to false will prevent the
 * ListTasks endpoint from being called to fetch the tasks. Only the upcoming
 * vehicle stops will be displayed.
 * @type {?boolean}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.shouldShowTasks;

/**
 * Threshold for stale vehicle location. If the last updated location for the
 * vehicle is older this threshold, the vehicle will not be displayed. Defaults
 * to 24 hours in milliseconds. If the threshold is less than 0, or
 * <i>Infinity</i>, the threshold will be ignored and the vehicle location will
 * not be considered stale.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.staleLocationThresholdMillis;

/**
 * Customization applied to the taken polyline. A taken polyline corresponds to
 * a portion of the route the vehicle has already traversed through. <br><br>Use
 * this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.DeliveryVehiclePolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.takenPolylineCustomization;

/**
 * Filter options to apply when fetching tasks. The options can include specific
 * vehicle, time, and task status.
 * @type {?google.maps.journeySharing.FleetEngineTaskFilterOptions}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.taskFilterOptions;

/**
 * Customization applied to a task marker. A task marker is rendered at the
 * planned location of each task assigned to the delivery vehicle. <br><br>Use
 * this field to specify custom styling (such as marker icon) and interactivity
 * (such as click handling).<ul><li>If a {@link google.maps.MarkerOptions}
 * object is specified, the changes specified in it are applied to the marker
 * after the marker has been created, overwriting its default options if they
 * exist.</li><li>If a function is specified, it is invoked once when the marker
 * is created, before it is added to the map view. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the location
 * provider receives data from Fleet Engine, regardless of whether the data
 * corresponding to this marker have changed.<br><br>See {@link
 * google.maps.journeySharing.TaskMarkerCustomizationFunctionParams} for a list
 * of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TaskMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.taskMarkerCustomization;

/**
 * Customization applied to a task outcome marker. A task outcome marker is
 * rendered at the actual outcome location of each task assigned to the delivery
 * vehicle. <br><br>Use this field to specify custom styling (such as marker
 * icon) and interactivity (such as click handling).<ul><li>If a {@link
 * google.maps.MarkerOptions} object is specified, the changes specified in it
 * are applied to the marker after the marker has been created, overwriting its
 * default options if they exist.</li><li>If a function is specified, it is
 * invoked once when the marker is created, before it is added to the map view.
 * (On this invocation, the <code>isNew</code> parameter in the function
 * parameters object is set to <code>true</code>.) Additionally, this function
 * is invoked when the location provider receives data from Fleet Engine,
 * regardless of whether the data corresponding to this marker have
 * changed.<br><br>See {@link
 * google.maps.journeySharing.TaskMarkerCustomizationFunctionParams} for a list
 * of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TaskMarkerCustomizationFunctionParams):
 *     void)|null|undefined}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions
    .prototype.taskOutcomeMarkerCustomization;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProvider.update}
 * event is triggered.
 * @record
 */
google.maps.journeySharing
    .FleetEngineDeliveryVehicleLocationProviderUpdateEvent = function() {};

/**
 * The journey segments that have been completed by this vehicle. Unmodifiable.
 * @type {?Array<!google.maps.journeySharing.VehicleJourneySegment>}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderUpdateEvent
    .prototype.completedVehicleJourneySegments;

/**
 * The delivery vehicle data structure returned by the update. Unmodifiable.
 * @type {?google.maps.journeySharing.DeliveryVehicle}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderUpdateEvent
    .prototype.deliveryVehicle;

/**
 * The list of tasks served by this delivery vehicle. Unmodifiable.
 * @type {?Array<!google.maps.journeySharing.Task>}
 */
google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderUpdateEvent
    .prototype.tasks;

/**
 * Fleet Location Provider.
 *
 * Access by calling `const {FleetEngineFleetLocationProvider} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.FleetEngineFleetLocationProviderOptions}
 *     options Options to pass to the location provider.
 * @extends {google.maps.journeySharing.PollingLocationProvider}
 * @constructor
 */
google.maps.journeySharing.FleetEngineFleetLocationProvider = function(
    options) {};

/**
 * The bounds within which to track vehicles. If no bounds are set, no vehicles
 * will be tracked. To track all vehicles regardless of location, set bounds
 * equivalent to the entire earth.
 * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.journeySharing.FleetEngineFleetLocationProvider.prototype
    .locationRestriction;

/**
 * This Field is read-only. Threshold for stale vehicle location. If the last
 * updated location for the vehicle is older than this threshold, the vehicle
 * will not be displayed.
 * @type {number}
 */
google.maps.journeySharing.FleetEngineFleetLocationProvider.prototype
    .staleLocationThresholdMillis;

/**
 * The filter applied when fetching the vehicles.
 * @type {string|null|undefined}
 */
google.maps.journeySharing.FleetEngineFleetLocationProvider.prototype
    .vehicleFilter;

/**
 * Options for fleet location provider.
 * @record
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions =
    function() {};

/**
 * Provides JSON Web Tokens for authenticating the client to Fleet Engine.
 * @type {!google.maps.journeySharing.AuthTokenFetcher}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
    .authTokenFetcher;

/**
 * The latitude/longitude bounds within which to track vehicles immediately
 * after the location provider is instantiated. If not set, the location
 * provider does not start tracking any vehicles; use {@link
 * google.maps.journeySharing.FleetEngineFleetLocationProvider.locationRestriction}
 * to set the bounds and begin tracking. To track all vehicles regardless of
 * location, set bounds equivalent to the entire earth.
 * @type {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
    .locationRestriction;

/**
 * The consumer&#39;s project ID from Google Cloud Console.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
    .projectId;

/**
 * Threshold for stale vehicle location. If the last updated location for the
 * vehicle is older than this threshold, the vehicle will not be displayed.
 * Defaults to 24 hours in milliseconds. If the threshold is less than zero, or
 * <i>Infinity</i>, the threshold will be ignored and the vehicle location will
 * not be considered stale.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
    .staleLocationThresholdMillis;

/**
 * A filter query to apply when fetching vehicles. This filter is passed
 * directly to Fleet Engine. <br><br>See <a
 * href="https://goo.gle/ListVehiclesRequest-filter">ListVehiclesRequest.filter</a>
 * for supported formats.<br><br>Note that valid filters for attributes must
 * have the &quot;attributes&quot; prefix. For example, <code>attributes.x =
 * &quot;y&quot;</code> or <code>attributes.&quot;x y&quot; =
 * &quot;z&quot;</code>.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
    .vehicleFilter;

/**
 * Customization applied to a vehicle marker. <br><br>Use this field to specify
 * custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li> If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams):
 *     void)|null|undefined}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.prototype
    .vehicleMarkerCustomization;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.FleetEngineFleetLocationProvider.update} event is
 * triggered.
 * @record
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderUpdateEvent =
    function() {};

/**
 * The list of vehicles returned by the query. Unmodifiable.
 * @type {?Array<!google.maps.journeySharing.Vehicle>}
 */
google.maps.journeySharing.FleetEngineFleetLocationProviderUpdateEvent.prototype
    .vehicles;

/**
 * Types of Fleet Engine services.
 *
 * Access by calling `const {FleetEngineServiceType} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.FleetEngineServiceType = {
  /**
   * Fleet Engine service used to access delivery vehicles.
   */
  DELIVERY_VEHICLE_SERVICE: 'DELIVERY_VEHICLE_SERVICE',
  /**
   * Fleet Engine service used to access task information.
   */
  TASK_SERVICE: 'TASK_SERVICE',
  /**
   * Fleet Engine service used to access trip information.
   */
  TRIP_SERVICE: 'TRIP_SERVICE',
  /**
   * Unknown Fleet Engine service.
   */
  UNKNOWN_SERVICE: 'UNKNOWN_SERVICE',
};

/**
 * Shipment location provider.
 *
 * Access by calling `const {FleetEngineShipmentLocationProvider} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions}
 *     options Options for the location provider.
 * @extends {google.maps.journeySharing.PollingLocationProvider}
 * @constructor
 */
google.maps.journeySharing.FleetEngineShipmentLocationProvider = function(
    options) {};

/**
 * The tracking ID for the task that this location provider observes. Set this
 * field to begin tracking.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProvider.prototype
    .trackingId;

/**
 * Explicitly refreshes the tracked location.
 * @return {void}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProvider.prototype
    .refresh = function() {};

/**
 * Options for shipment location provider.
 * @record
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions =
    function() {};

/**
 * Customization applied to the active polyline. An active polyline corresponds
 * to a portion of the route the vehicle is currently traversing through.
 * <br><br>Use this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .activePolylineCustomization;

/**
 * Provides JSON Web Tokens for authenticating the client to Fleet Engine.
 * @type {!google.maps.journeySharing.AuthTokenFetcher}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .authTokenFetcher;

/**
 * Customization applied to the delivery vehicle marker. <br><br>Use this field
 * to specify custom styling (such as marker icon) and interactivity (such as
 * click handling).<ul><li> If a {@link google.maps.MarkerOptions} object is
 * specified, the changes specified in it are applied to the marker after the
 * marker has been created, overwriting its default options if they
 * exist.</li><li>If a function is specified, it is invoked once when the marker
 * is created, before it is added to the map view. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the location
 * provider receives data from Fleet Engine, regardless of whether the data
 * corresponding to this marker have changed.<br><br>See {@link
 * google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .deliveryVehicleMarkerCustomization;

/**
 * Customization applied to the destination marker. <br><br>Use this field to
 * specify custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li> If a {@link google.maps.MarkerOptions} object is
 * specified, the changes specified in it are applied to the marker after the
 * marker has been created, overwriting its default options if they
 * exist.</li><li>If a function is specified, it is invoked once when the marker
 * is created, before it is added to the map view. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the location
 * provider receives data from Fleet Engine, regardless of whether the data
 * corresponding to this marker have changed.<br><br>See {@link
 * google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .destinationMarkerCustomization;

/**
 * Minimum time between fetching location updates in milliseconds. If it takes
 * longer than <code>pollingIntervalMillis</code> to fetch a location update,
 * the next location update is not started until the current one finishes.
 * <br><br>Setting this value to 0, Infinity, or a negative value disables
 * automatic location updates. A new location update is fetched once if the
 * tracking ID parameter (for example, the shipment tracking ID of the shipment
 * location provider), or a filtering option (for example, viewport bounds or
 * attribute filters for fleet location providers) changes. <br><br>The default,
 * and minimum, polling interval is 5000 milliseconds. If you set the polling
 * interval to a lower positive value, 5000 is stored and used.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .pollingIntervalMillis;

/**
 * The consumer&#39;s project ID from Google Cloud Console.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .projectId;

/**
 * Customization applied to the remaining polyline. A remaining polyline
 * corresponds to a portion of the route the vehicle has not yet started
 * traversing through. <br><br>Use this field to specify custom styling (such as
 * polyline color) and interactivity (such as click handling).<ul><li> If
 * a {@link google.maps.PolylineOptions} object is specified, the changes
 * specified in it are applied to the polyline after the polyline has been
 * created, overwriting its default options if they exist. </li><li>If a
 * function is specified, it is invoked once when the polyline is created. (On
 * this invocation, the <code>isNew</code> parameter in the function parameters
 * object is set to <code>true</code>.) Additionally, this function is invoked
 * when the polyline&#39;s coordinates change, or when the location provider
 * receives data from Fleet Engine, regardless of whether the data corresponding
 * to this polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .remainingPolylineCustomization;

/**
 * Customization applied to the taken polyline. A taken polyline corresponds to
 * a portion of the route the vehicle has already traversed through. <br><br>Use
 * this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .takenPolylineCustomization;

/**
 * The tracking ID of the task to track immediately after the location provider
 * is instantiated. If not specified, the location provider does not start
 * tracking any task; use {@link
 * google.maps.journeySharing.FleetEngineShipmentLocationProvider.trackingId} to
 * set the tracking ID and begin tracking.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.prototype
    .trackingId;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.FleetEngineShipmentLocationProvider.update} event
 * is triggered.
 * @record
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderUpdateEvent =
    function() {};

/**
 * The task tracking info structure returned by the update. Unmodifiable.
 * @type {?google.maps.journeySharing.TaskTrackingInfo}
 */
google.maps.journeySharing.FleetEngineShipmentLocationProviderUpdateEvent
    .prototype.taskTrackingInfo;

/**
 * Filtering options for tasks in the Delivery Vehicle Location Provider.
 * @record
 */
google.maps.journeySharing.FleetEngineTaskFilterOptions = function() {};

/**
 * Exclusive lower bound for the completion time of the task. Used to filter for
 * tasks that were completed after the specified time.
 * @type {?Date}
 */
google.maps.journeySharing.FleetEngineTaskFilterOptions.prototype
    .completionTimeFrom;

/**
 * Exclusive upper bound for the completion time of the task. Used to filter for
 * tasks that were completed before the specified time.
 * @type {?Date}
 */
google.maps.journeySharing.FleetEngineTaskFilterOptions.prototype
    .completionTimeTo;

/**
 * The state of the task. Valid values are OPEN or CLOSED.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineTaskFilterOptions.prototype.state;

/**
 * Trip location provider.
 *
 * Access by calling `const {FleetEngineTripLocationProvider} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.FleetEngineTripLocationProviderOptions}
 *     options Options for the location provider.
 * @extends {google.maps.journeySharing.PollingLocationProvider}
 * @constructor
 */
google.maps.journeySharing.FleetEngineTripLocationProvider = function(
    options) {};

/**
 * The ID for the trip that this location provider observes. Set this field to
 * begin tracking.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineTripLocationProvider.prototype.tripId;

/**
 * Polyline customization function that colors the active polyline according to
 * its speed reading. Specify this function as the {@link
 * google.maps.journeySharing.FleetEngineTripLocationProviderOptions.activePolylineCustomization}
 * to render a traffic-aware polyline for the active polyline.
 * @param {!google.maps.journeySharing.TripPolylineCustomizationFunctionParams}
 *     params The parameters provided to the polyline customization function.
 * @return {undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProvider
    .TRAFFIC_AWARE_ACTIVE_POLYLINE_CUSTOMIZATION_FUNCTION = function(params) {};

/**
 * Polyline customization function that colors the remaining polyline according
 * to its speed reading. Specify this function as the {@link
 * google.maps.journeySharing.FleetEngineTripLocationProviderOptions.remainingPolylineCustomization}
 * to render a traffic-aware polyline for the remaining polyline.
 * @param {!google.maps.journeySharing.TripPolylineCustomizationFunctionParams}
 *     params The parameters provided to the polyline customization function.
 * @return {undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProvider
    .TRAFFIC_AWARE_REMAINING_POLYLINE_CUSTOMIZATION_FUNCTION = function(
    params) {};

/**
 * Explicitly refreshes the tracked location.
 * @return {void}
 */
google.maps.journeySharing.FleetEngineTripLocationProvider.prototype.refresh =
    function() {};

/**
 * Options for trip location provider.
 * @record
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions =
    function() {};

/**
 * Customization applied to the active polyline. An active polyline corresponds
 * to a portion of the route the vehicle is currently traversing through.
 * <br><br>Use this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.TripPolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripPolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .activePolylineCustomization;

/**
 * Provides JSON Web Tokens for authenticating the client to Fleet Engine.
 * @type {!google.maps.journeySharing.AuthTokenFetcher}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .authTokenFetcher;

/**
 * Customization applied to the destination marker. <br><br>Use this field to
 * specify custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li>If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.TripMarkerCustomizationFunctionParams} for a list
 * of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .destinationMarkerCustomization;

/**
 * Customization applied to the origin marker. <br><br>Use this field to specify
 * custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li>If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.TripMarkerCustomizationFunctionParams} for a list
 * of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .originMarkerCustomization;

/**
 * Minimum time between fetching location updates in milliseconds. If it takes
 * longer than <code>pollingIntervalMillis</code> to fetch a location update,
 * the next location update is not started until the current one finishes.
 * <br><br>Setting this value to 0 disables recurring location updates. A new
 * location update is fetched if any of the parameters observed by the location
 * provider changes. <br><br>The default polling interval is 5000 milliseconds,
 * the minimum interval. If you set the polling interval to a lower non-zero
 * value, 5000 is used.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .pollingIntervalMillis;

/**
 * The consumer&#39;s project ID from Google Cloud Console.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .projectId;

/**
 * Customization applied to the remaining polyline. A remaining polyline
 * corresponds to a portion of the route the vehicle has not yet started
 * traversing through. <br><br>Use this field to specify custom styling (such as
 * polyline color) and interactivity (such as click handling).<ul><li> If
 * a {@link google.maps.PolylineOptions} object is specified, the changes
 * specified in it are applied to the polyline after the polyline has been
 * created, overwriting its default options if they exist. </li><li>If a
 * function is specified, it is invoked once when the polyline is created. (On
 * this invocation, the <code>isNew</code> parameter in the function parameters
 * object is set to <code>true</code>.) Additionally, this function is invoked
 * when the polyline&#39;s coordinates change, or when the location provider
 * receives data from Fleet Engine, regardless of whether the data corresponding
 * to this polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.TripPolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripPolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .remainingPolylineCustomization;

/**
 * Customization applied to the taken polyline. A taken polyline corresponds to
 * a portion of the route the vehicle has already traversed through. <br><br>Use
 * this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.TripPolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripPolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .takenPolylineCustomization;

/**
 * The trip ID to track immediately after the location provider is instantiated.
 * If not specified, the location provider does not start tracking any trip;
 * use {@link google.maps.journeySharing.FleetEngineTripLocationProvider.tripId}
 * to set the ID and begin tracking.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .tripId;

/**
 * Customization applied to the vehicle marker. <br><br>Use this field to
 * specify custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li>If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.TripMarkerCustomizationFunctionParams} for a list
 * of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .vehicleMarkerCustomization;

/**
 * Customization applied to a waypoint marker. <br><br>Use this field to specify
 * custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li>If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.TripWaypointMarkerCustomizationFunctionParams} for
 * a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.TripWaypointMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderOptions.prototype
    .waypointMarkerCustomization;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.FleetEngineTripLocationProvider.update} event is
 * triggered.
 * @record
 */
google.maps.journeySharing.FleetEngineTripLocationProviderUpdateEvent =
    function() {};

/**
 * The trip structure returned by the update. Unmodifiable.
 * @type {?google.maps.journeySharing.Trip}
 */
google.maps.journeySharing.FleetEngineTripLocationProviderUpdateEvent.prototype
    .trip;

/**
 * Vehicle Location Provider.
 *
 * Access by calling `const {FleetEngineVehicleLocationProvider} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions}
 *     options Options to pass to the location provider.
 * @extends {google.maps.journeySharing.PollingLocationProvider}
 * @constructor
 */
google.maps.journeySharing.FleetEngineVehicleLocationProvider = function(
    options) {};

/**
 * This Field is read-only. Threshold for stale vehicle location. If the last
 * updated location for the vehicle is older than this threshold, the vehicle
 * will not be displayed.
 * @type {number}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProvider.prototype
    .staleLocationThresholdMillis;

/**
 * ID for the vehicle that this location provider observes. Set this field to
 * track a vehicle.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProvider.prototype
    .vehicleId;

/**
 * Polyline customization function that colors the active polyline according to
 * its speed reading. Specify this function as the {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.activePolylineCustomization}
 * to render a traffic-aware polyline for the active polyline.
 * @param {!google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams}
 *     params The parameters provided to the polyline customization function.
 * @return {undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProvider
    .TRAFFIC_AWARE_ACTIVE_POLYLINE_CUSTOMIZATION_FUNCTION = function(params) {};

/**
 * Polyline customization function that colors the remaining polyline according
 * to its speed reading. Specify this function as the {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.remainingPolylineCustomization}
 * to render a traffic-aware polyline for the remaining polyline.
 * @param {!google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams}
 *     params The parameters provided to the polyline customization function.
 * @return {undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProvider
    .TRAFFIC_AWARE_REMAINING_POLYLINE_CUSTOMIZATION_FUNCTION = function(
    params) {};

/**
 * Options for vehicle location provider.
 * @record
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions =
    function() {};

/**
 * Customization applied to the active polyline. An active polyline corresponds
 * to a portion of the route the vehicle is currently traversing through.
 * <br><br>Use this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .activePolylineCustomization;

/**
 * Provides JSON Web Tokens for authenticating the client to Fleet Engine.
 * @type {!google.maps.journeySharing.AuthTokenFetcher}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .authTokenFetcher;

/**
 * Customization applied to the vehicle trip destination marker. <br><br>Use
 * this field to specify custom styling (such as marker icon) and interactivity
 * (such as click handling).<ul><li>If a {@link google.maps.MarkerOptions}
 * object is specified, the changes specified in it are applied to the marker
 * after the marker has been created, overwriting its default options if they
 * exist.</li><li>If a function is specified, it is invoked once when the marker
 * is created, before it is added to the map view. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the location
 * provider receives data from Fleet Engine, regardless of whether the data
 * corresponding to this marker have changed.<br><br>See {@link
 * google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .destinationMarkerCustomization;

/**
 * Customization applied to the vehicle trip intermediate destination markers.
 * <br><br>Use this field to specify custom styling (such as marker icon) and
 * interactivity (such as click handling).<ul><li>If a {@link
 * google.maps.MarkerOptions} object is specified, the changes specified in it
 * are applied to the marker after the marker has been created, overwriting its
 * default options if they exist.</li><li>If a function is specified, it is
 * invoked once when the marker is created, before it is added to the map view.
 * (On this invocation, the <code>isNew</code> parameter in the function
 * parameters object is set to <code>true</code>.) Additionally, this function
 * is invoked when the location provider receives data from Fleet Engine,
 * regardless of whether the data corresponding to this marker have
 * changed.<br><br>See {@link
 * google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .intermediateDestinationMarkerCustomization;

/**
 * Customization applied to the vehicle trip origin marker. <br><br>Use this
 * field to specify custom styling (such as marker icon) and interactivity (such
 * as click handling).<ul><li>If a {@link google.maps.MarkerOptions} object is
 * specified, the changes specified in it are applied to the marker after the
 * marker has been created, overwriting its default options if they
 * exist.</li><li>If a function is specified, it is invoked once when the marker
 * is created, before it is added to the map view. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the location
 * provider receives data from Fleet Engine, regardless of whether the data
 * corresponding to this marker have changed.<br><br>See {@link
 * google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams}
 * for a list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .originMarkerCustomization;

/**
 * Minimum time between fetching location updates in milliseconds. If it takes
 * longer than <code>pollingIntervalMillis</code> to fetch a location update,
 * the next location update is not started until the current one finishes.
 * <br><br>Setting this value to 0 disables recurring location updates. A new
 * location update is fetched if any of the parameters observed by the location
 * provider changes. <br><br>The default polling interval is 5000 milliseconds,
 * the minimum interval. If you set the polling interval to a lower non-zero
 * value, 5000 is used.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .pollingIntervalMillis;

/**
 * The consumer&#39;s project ID from Google Cloud Console.
 * @type {string}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .projectId;

/**
 * Customization applied to the remaining polyline. A remaining polyline
 * corresponds to a portion of the route the vehicle has not yet started
 * traversing through. <br><br>Use this field to specify custom styling (such as
 * polyline color) and interactivity (such as click handling).<ul><li> If
 * a {@link google.maps.PolylineOptions} object is specified, the changes
 * specified in it are applied to the polyline after the polyline has been
 * created, overwriting its default options if they exist. </li><li>If a
 * function is specified, it is invoked once when the polyline is created. (On
 * this invocation, the <code>isNew</code> parameter in the function parameters
 * object is set to <code>true</code>.) Additionally, this function is invoked
 * when the polyline&#39;s coordinates change, or when the location provider
 * receives data from Fleet Engine, regardless of whether the data corresponding
 * to this polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .remainingPolylineCustomization;

/**
 * Threshold for stale vehicle location. If the last updated location for the
 * vehicle is older this threshold, the vehicle will not be displayed. Defaults
 * to 24 hours in milliseconds. If the threshold is less than 0, or
 * <i>Infinity</i>, the threshold will be ignored and the vehicle location will
 * not be considered stale.
 * @type {?number}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .staleLocationThresholdMillis;

/**
 * Customization applied to the taken polyline. A taken polyline corresponds to
 * a portion of the route the vehicle has already traversed through. <br><br>Use
 * this field to specify custom styling (such as polyline color) and
 * interactivity (such as click handling).<ul><li> If a {@link
 * google.maps.PolylineOptions} object is specified, the changes specified in it
 * are applied to the polyline after the polyline has been created, overwriting
 * its default options if they exist. </li><li>If a function is specified, it is
 * invoked once when the polyline is created. (On this invocation, the
 * <code>isNew</code> parameter in the function parameters object is set to
 * <code>true</code>.) Additionally, this function is invoked when the
 * polyline&#39;s coordinates change, or when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * polyline have changed.<br><br>See {@link
 * google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams):
 *     void)|google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .takenPolylineCustomization;

/**
 * The vehicle ID to track immediately after the location provider is
 * instantiated. If not specified, the location provider does not start tracking
 * any vehicle; use {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProvider.vehicleId} to
 * set the ID and begin tracking.
 * @type {?string}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .vehicleId;

/**
 * Customization applied to the vehicle marker. <br><br>Use this field to
 * specify custom styling (such as marker icon) and interactivity (such as click
 * handling).<ul><li>If a {@link google.maps.MarkerOptions} object is specified,
 * the changes specified in it are applied to the marker after the marker has
 * been created, overwriting its default options if they exist.</li><li>If a
 * function is specified, it is invoked once when the marker is created, before
 * it is added to the map view. (On this invocation, the <code>isNew</code>
 * parameter in the function parameters object is set to <code>true</code>.)
 * Additionally, this function is invoked when the location provider receives
 * data from Fleet Engine, regardless of whether the data corresponding to this
 * marker have changed.<br><br>See {@link
 * google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams} for a
 * list of supplied parameters and their uses.</li></ul>
 * @type {(function(!google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams):
 *     void)|google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.prototype
    .vehicleMarkerCustomization;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProvider.update} event
 * is triggered.
 * @record
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderUpdateEvent =
    function() {};

/**
 * The list of trips completed by this vehicle. Unmodifiable.
 * @type {?Array<!google.maps.journeySharing.Trip>}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderUpdateEvent
    .prototype.trips;

/**
 * The vehicle data structure returned by the update. Unmodifiable.
 * @type {?google.maps.journeySharing.Vehicle}
 */
google.maps.journeySharing.FleetEngineVehicleLocationProviderUpdateEvent
    .prototype.vehicle;

/**
 * The map view.
 *
 * Access by calling `const {JourneySharingMapView} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.journeySharing.JourneySharingMapViewOptions} options
 *     Options for the map view.
 * @constructor
 */
google.maps.journeySharing.JourneySharingMapView = function(options) {};

/**
 * This Field is read-only. Automatic viewport mode.
 * @type {!google.maps.journeySharing.AutomaticViewportMode}
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .automaticViewportMode;

/**
 * This Field is read-only. The DOM element backing the view.
 * @type {!Element}
 */
google.maps.journeySharing.JourneySharingMapView.prototype.element;

/**
 * Enables or disables the traffic layer.
 * @type {boolean}
 */
google.maps.journeySharing.JourneySharingMapView.prototype.enableTraffic;

/**
 * This field is read-only. Sources of tracked locations to be shown in the
 * tracking map view. To add or remove location providers, use the {@link
 * google.maps.journeySharing.JourneySharingMapView.addLocationProvider}
 * and {@link
 * google.maps.journeySharing.JourneySharingMapView.removeLocationProvider}
 * methods.
 * @type {?Array<!google.maps.journeySharing.LocationProvider>}
 */
google.maps.journeySharing.JourneySharingMapView.prototype.locationProviders;

/**
 * This Field is read-only. The map object contained in the map view.
 * @type {!google.maps.Map}
 */
google.maps.journeySharing.JourneySharingMapView.prototype.map;

/**
 * This Field is read-only. The map options passed into the map via the map
 * view.
 * @type {!google.maps.MapOptions}
 */
google.maps.journeySharing.JourneySharingMapView.prototype.mapOptions;

/**
 * This Field is read-only. A source of tracked locations to be shown in the
 * tracking map view.
 * @type {?google.maps.journeySharing.LocationProvider}
 * @deprecated Use {@link
 *     google.maps.journeySharing.JourneySharingMapView.locationProviders}
 *     instead.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.locationProvider;

/**
 * Configures options for a destination location marker. Invoked whenever a new
 * destination marker is rendered. <br><br>If specifying a function, the
 * function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .destinationMarkerSetup;

/**
 * Configures options for an origin location marker. Invoked whenever a new
 * origin marker is rendered. <br><br>If specifying a function, the function can
 * and should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.originMarkerSetup;

/**
 * Configures options for a task outcome location marker. Invoked whenever a new
 * task outcome location marker is rendered. <br><br>If specifying a function,
 * the function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .taskOutcomeMarkerSetup;

/**
 * Configures options for an unsuccessful task location marker. Invoked whenever
 * a new unsuccessful task marker is rendered. <br><br>If specifying a function,
 * the function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .unsuccessfulTaskMarkerSetup;

/**
 * Configures options for a vehicle location marker. Invoked whenever a new
 * vehicle marker is rendered. <br><br>If specifying a function, the function
 * can and should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.vehicleMarkerSetup;

/**
 * Configures options for a waypoint location marker. Invoked whenever a new
 * waypoint marker is rendered. <br><br>If specifying a function, the function
 * can and should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.waypointMarkerSetup;

/**
 * Configures options for an anticipated route polyline. Invoked whenever a new
 * anticipated route polyline is rendered. <br><br>If specifying a function, the
 * function can and should modify the input&#39;s defaultPolylineOptions field
 * containing a google.maps.PolylineOptions object, and return it as
 * polylineOptions in the output PolylineSetupOptions object. <br><br>Specifying
 * a PolylineSetupOptions object has the same effect as specifying a function
 * that returns that static object. <br><br>Do not reuse the same
 * PolylineSetupOptions object in different PolylineSetup functions or static
 * values, and do not reuse the same google.maps.PolylineOptions object for the
 * polylineOptions key in different PolylineSetupOptions objects. If
 * polylineOptions or visible is unset or null, it will be overwritten with the
 * default. Any values set for polylineOptions.map or polylineOptions.path will
 * be ignored.
 * @type {!google.maps.journeySharing.PolylineSetup}
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .anticipatedRoutePolylineSetup;

/**
 * Configures options for a taken route polyline. Invoked whenever a new taken
 * route polyline is rendered. <br><br>If specifying a function, the function
 * can and should modify the input&#39;s defaultPolylineOptions field containing
 * a google.maps.PolylineOptions object, and return it as polylineOptions in the
 * output PolylineSetupOptions object. <br><br>Specifying a PolylineSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same PolylineSetupOptions object in
 * different PolylineSetup functions or static values, and do not reuse the same
 * google.maps.PolylineOptions object for the polylineOptions key in different
 * PolylineSetupOptions objects. <br><br>Any values set for polylineOptions.map
 * or polylineOptions.path will be ignored. Any unset or null value will be
 * overwritten with the default.
 * @type {!google.maps.journeySharing.PolylineSetup}
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .takenRoutePolylineSetup;

/**
 * Configures options for a ping location marker. Invoked whenever a new ping
 * marker is rendered. <br><br>If specifying a function, the function can and
 * should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.pingMarkerSetup;

/**
 * Configures options for a successful task location marker. Invoked whenever a
 * new successful task marker is rendered. <br><br>If specifying a function, the
 * function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {!google.maps.journeySharing.MarkerSetup}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .successfulTaskMarkerSetup;

/**
 * Returns the destination markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.destinationMarkers;

/**
 * Returns the origin markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.originMarkers;

/**
 * Returns the successful task markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .successfulTaskMarkers;

/**
 * Returns the task outcome markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.taskOutcomeMarkers;

/**
 * Returns the unsuccessful task markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .unsuccessfulTaskMarkers;

/**
 * Returns the vehicle markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.vehicleMarkers;

/**
 * Returns the waypoint markers, if any.
 * @type {!Array<!google.maps.Marker>}
 * @deprecated getting a list of markers via the <code>MapView</code> is
 *     deprecated. Use the <code>MarkerCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a marker is added to the map
 *     or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.waypointMarkers;

/**
 * Returns the anticipated route polylines, if any.
 * @type {!Array<!google.maps.Polyline>}
 * @deprecated getting a list of polylines via the <code>MapView</code> is
 *     deprecated. Use the <code>PolylineCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a polyline is added to the
 *     map or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .anticipatedRoutePolylines;

/**
 * Returns the taken route polylines, if any.
 * @type {!Array<!google.maps.Polyline>}
 * @deprecated getting a list of polylines via the <code>MapView</code> is
 *     deprecated. Use the <code>PolylineCustomizationFunction</code>s for your
 *     location provider to receive callbacks when a polyline is added to the
 *     map or updated.
 */
google.maps.journeySharing.JourneySharingMapView.prototype.takenRoutePolylines;

/**
 * Adds a location provider to the map view. If the location provider is already
 * added, no action is performed.
 * @param {!google.maps.journeySharing.LocationProvider} locationProvider the
 *     location provider to add.
 * @return {undefined}
 */
google.maps.journeySharing.JourneySharingMapView.prototype.addLocationProvider =
    function(locationProvider) {};

/**
 * Removes a location provider from the map view. If the location provider is
 * not already added to the map view, no action is performed.
 * @param {!google.maps.journeySharing.LocationProvider} locationProvider the
 *     location provider to remove.
 * @return {undefined}
 */
google.maps.journeySharing.JourneySharingMapView.prototype
    .removeLocationProvider = function(locationProvider) {};

/**
 * Options for the map view.
 * @record
 */
google.maps.journeySharing.JourneySharingMapViewOptions = function() {};

/**
 * Automatic viewport mode. Default value is FIT_ANTICIPATED_ROUTE, which
 * enables the map view to automatically adjust the viewport to fit vehicle
 * markers, location markers, and any visible anticipated route polylines. Set
 * this to NONE to turn off automatic fitting.
 * @type {google.maps.journeySharing.AutomaticViewportMode|null|undefined}
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .automaticViewportMode;

/**
 * The DOM element backing the view. Required.
 * @type {!Element}
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype.element;

/**
 * Sources of tracked locations to be shown in the tracking map view. Optional.
 * @type {?Array<!google.maps.journeySharing.LocationProvider>}
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .locationProviders;

/**
 * Map options passed into the google.maps.Map constructor.
 * @type {google.maps.MapOptions|null|undefined}
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype.mapOptions;

/**
 * A source of tracked locations to be shown in the tracking map view. Optional.
 * @type {?google.maps.journeySharing.LocationProvider}
 * @deprecated Use {@link
 *     google.maps.journeySharing.JourneySharingMapViewOptions.locationProviders}
 *     instead.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .locationProvider;

/**
 * Configures options for a destination location marker. Invoked whenever a new
 * destination marker is rendered. <br><br>If specifying a function, the
 * function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .destinationMarkerSetup;

/**
 * Configures options for an origin location marker. Invoked whenever a new
 * origin marker is rendered. <br><br>If specifying a function, the function can
 * and should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .originMarkerSetup;

/**
 * Configures options for a task outcome location marker. Invoked whenever a new
 * task outcome location marker is rendered. <br><br>If specifying a function,
 * the function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .taskOutcomeMarkerSetup;

/**
 * Configures options for an unsuccessful task location marker. Invoked whenever
 * a new unsuccessful task marker is rendered. <br><br>If specifying a function,
 * the function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .unsuccessfulTaskMarkerSetup;

/**
 * Configures options for a vehicle location marker. Invoked whenever a new
 * vehicle marker is rendered. <br><br>If specifying a function, the function
 * can and should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .vehicleMarkerSetup;

/**
 * Configures options for a waypoint location marker. Invoked whenever a new
 * waypoint marker is rendered. <br><br>If specifying a function, the function
 * can and should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .waypointMarkerSetup;

/**
 * Configures options for an anticipated route polyline. Invoked whenever a new
 * anticipated route polyline is rendered. <br><br>If specifying a function, the
 * function can and should modify the input&#39;s defaultPolylineOptions field
 * containing a google.maps.PolylineOptions object, and return it as
 * polylineOptions in the output PolylineSetupOptions object. <br><br>Specifying
 * a PolylineSetupOptions object has the same effect as specifying a function
 * that returns that static object. <br><br>Do not reuse the same
 * PolylineSetupOptions object in different PolylineSetup functions or static
 * values, and do not reuse the same google.maps.PolylineOptions object for the
 * polylineOptions key in different PolylineSetupOptions objects. If
 * polylineOptions or visible is unset or null, it will be overwritten with the
 * default. Any values set for polylineOptions.map or polylineOptions.path will
 * be ignored.
 * @type {google.maps.journeySharing.PolylineSetup|null|undefined}
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .anticipatedRoutePolylineSetup;

/**
 * Configures options for a taken route polyline. Invoked whenever a new taken
 * route polyline is rendered. <br><br>If specifying a function, the function
 * can and should modify the input&#39;s defaultPolylineOptions field containing
 * a google.maps.PolylineOptions object, and return it as polylineOptions in the
 * output PolylineSetupOptions object. <br><br>Specifying a PolylineSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same PolylineSetupOptions object in
 * different PolylineSetup functions or static values, and do not reuse the same
 * google.maps.PolylineOptions object for the polylineOptions key in different
 * PolylineSetupOptions objects. <br><br>Any values set for polylineOptions.map
 * or polylineOptions.path will be ignored. Any unset or null value will be
 * overwritten with the default.
 * @type {google.maps.journeySharing.PolylineSetup|null|undefined}
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .takenRoutePolylineSetup;

/**
 * Configures options for a ping location marker. Invoked whenever a new ping
 * marker is rendered. <br><br>If specifying a function, the function can and
 * should modify the input&#39;s defaultMarkerOptions field containing a
 * google.maps.MarkerOptions object, and return it as markerOptions in the
 * output MarkerSetupOptions object. <br><br>Specifying a MarkerSetupOptions
 * object has the same effect as specifying a function that returns that static
 * object. <br><br>Do not reuse the same MarkerSetupOptions object in different
 * MarkerSetup functions or static values, and do not reuse the same
 * google.maps.MarkerOptions object for the markerOptions key in different
 * MarkerSetupOptions objects. If markerOptions is unset or null, it will be
 * overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .pingMarkerSetup;

/**
 * Configures options for a successful task location marker. Invoked whenever a
 * new successful task marker is rendered. <br><br>If specifying a function, the
 * function can and should modify the input&#39;s defaultMarkerOptions field
 * containing a google.maps.MarkerOptions object, and return it as markerOptions
 * in the output MarkerSetupOptions object. <br><br>Specifying a
 * MarkerSetupOptions object has the same effect as specifying a function that
 * returns that static object. <br><br>Do not reuse the same MarkerSetupOptions
 * object in different MarkerSetup functions or static values, and do not reuse
 * the same google.maps.MarkerOptions object for the markerOptions key in
 * different MarkerSetupOptions objects. If markerOptions is unset or null, it
 * will be overwritten with the default. Any value set for markerOptions.map or
 * markerOptions.position will be ignored.
 * @type {google.maps.journeySharing.MarkerSetup|null|undefined}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead. This field will be removed in the future.
 */
google.maps.journeySharing.JourneySharingMapViewOptions.prototype
    .successfulTaskMarkerSetup;

/**
 * Parent class of all location providers.
 * @abstract
 * @constructor
 */
google.maps.journeySharing.LocationProvider = function() {};

/**
 * Adds a {@link google.maps.MapsEventListener} for an event fired by this
 * location provider. Returns an identifier for this listener that can be used
 * with {@link google.maps.event.removeListener}.
 * @param {string} eventName The name of the event to listen for.
 * @param {!Function} handler The event handler.
 * @return {!google.maps.MapsEventListener}
 */
google.maps.journeySharing.LocationProvider.prototype.addListener = function(
    eventName, handler) {};

/**
 * Parameters that are common to all marker customization functions. No object
 * of this class is provided directly to any marker customization function; an
 * object of one of its descendent classes is provided instead.
 * @record
 */
google.maps.journeySharing.MarkerCustomizationFunctionParams = function() {};

/**
 * The default options used to create this marker.
 * @type {!google.maps.MarkerOptions}
 */
google.maps.journeySharing.MarkerCustomizationFunctionParams.prototype
    .defaultOptions;

/**
 * If true, the marker was newly created, and the marker customization function
 * is being called for the first time, before the marker has been added to the
 * map view. False otherwise.
 * @type {boolean}
 */
google.maps.journeySharing.MarkerCustomizationFunctionParams.prototype.isNew;

/**
 * The marker. Any customizations should be made to this object directly.
 * @type {!google.maps.Marker}
 */
google.maps.journeySharing.MarkerCustomizationFunctionParams.prototype.marker;

/**
 * @typedef {!google.maps.journeySharing.MarkerSetupOptions|(function(!google.maps.journeySharing.DefaultMarkerSetupOptions):
 * !google.maps.journeySharing.MarkerSetupOptions)}
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead.
 */
google.maps.journeySharing.MarkerSetup;

/**
 * MarkerSetup options.
 * @record
 * @deprecated Marker setup is deprecated. Use the
 *     <code>MarkerCustomizationFunction</code> methods for your location
 *     provider instead.
 */
google.maps.journeySharing.MarkerSetupOptions = function() {};

/**
 * Marker options.
 * @type {google.maps.MarkerOptions|null|undefined}
 */
google.maps.journeySharing.MarkerSetupOptions.prototype.markerOptions;

/**
 * Parameters specific to marker customization functions that apply options to
 * markers representing planned stops. Used by {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions.plannedStopMarkerCustomization}.
 * @extends {google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.PlannedStopMarkerCustomizationFunctionParams =
    function() {};

/**
 * The 0-based index of this stop in the list of remaining stops.
 * @type {number}
 */
google.maps.journeySharing.PlannedStopMarkerCustomizationFunctionParams
    .prototype.stopIndex;

/**
 * Parent class of polling location providers.
 * @extends {google.maps.journeySharing.LocationProvider}
 * @abstract
 * @constructor
 */
google.maps.journeySharing.PollingLocationProvider = function() {};

/**
 * True if this location provider is polling. Read only.
 * @type {boolean}
 */
google.maps.journeySharing.PollingLocationProvider.prototype.isPolling;

/**
 * Minimum time between fetching location updates in milliseconds. If it takes
 * longer than <code>pollingIntervalMillis</code> to fetch a location update,
 * the next location update is not started until the current one finishes.
 * <br><br>Setting this value to 0, Infinity, or a negative value disables
 * automatic location updates. A new location update is fetched once if the
 * tracking ID parameter (for example, the shipment tracking ID of the shipment
 * location provider), or a filtering option (for example, viewport bounds or
 * attribute filters for fleet location providers) changes. <br><br>The default,
 * and minimum, polling interval is 5000 milliseconds. If you set the polling
 * interval to a lower positive value, 5000 is stored and used.
 * @type {number}
 */
google.maps.journeySharing.PollingLocationProvider.prototype
    .pollingIntervalMillis;

/**
 * The event object passed to the event handler when the {@link
 * google.maps.journeySharing.PollingLocationProvider.ispollingchange} event is
 * triggered.
 * @record
 */
google.maps.journeySharing.PollingLocationProviderIsPollingChangeEvent =
    function() {};

/**
 * The error that caused the polling state to change, if the state change was
 * caused by an error. Undefined if the state change was due to normal
 * operations.
 * @type {?Error}
 */
google.maps.journeySharing.PollingLocationProviderIsPollingChangeEvent.prototype
    .error;

/**
 * Parameters that are common to all polyline customization functions. No object
 * of this class is provided directly to any polyline customization function; an
 * object of one of its descendent classes is provided instead.
 * @record
 */
google.maps.journeySharing.PolylineCustomizationFunctionParams = function() {};

/**
 * The default options used to create this set of polylines.
 * @type {!google.maps.PolylineOptions}
 */
google.maps.journeySharing.PolylineCustomizationFunctionParams.prototype
    .defaultOptions;

/**
 * If true, the list of polylines was newly created, and the polyline
 * customization function is being called for the first time. False otherwise.
 * @type {boolean}
 */
google.maps.journeySharing.PolylineCustomizationFunctionParams.prototype.isNew;

/**
 * The list of polylines created. They are arranged sequentially to form the
 * rendered route.
 * @type {!Array<!google.maps.Polyline>}
 */
google.maps.journeySharing.PolylineCustomizationFunctionParams.prototype
    .polylines;

/**
 * @typedef {!google.maps.journeySharing.PolylineSetupOptions|(function(!google.maps.journeySharing.DefaultPolylineSetupOptions):
 * !google.maps.journeySharing.PolylineSetupOptions)}
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead.
 */
google.maps.journeySharing.PolylineSetup;

/**
 * PolylineSetup options.
 * @record
 * @deprecated Polyline setup is deprecated. Use the
 *     <code>PolylineCustomizationFunction</code> methods for your location
 *     provider instead.
 */
google.maps.journeySharing.PolylineSetupOptions = function() {};

/**
 * Polyline options.
 * @type {google.maps.PolylineOptions|null|undefined}
 */
google.maps.journeySharing.PolylineSetupOptions.prototype.polylineOptions;

/**
 * Polyline visibility.
 * @type {boolean|null|undefined}
 */
google.maps.journeySharing.PolylineSetupOptions.prototype.visible;

/**
 * Parameters specific to marker customization functions that apply options to
 * markers representing shipment delivery vehicle and destination locations.
 * Used by {@link
 * google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.deliveryVehicleMarkerCustomization}
 * and {@link
 * google.maps.journeySharing.FleetEngineShipmentLocationProviderOptions.destinationMarkerCustomization}.
 * @extends {google.maps.journeySharing.MarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams =
    function() {};

/**
 * Information for the task associated with this marker.
 * @type {!google.maps.journeySharing.TaskTrackingInfo}
 */
google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams.prototype
    .taskTrackingInfo;

/**
 * Parameters specific to polyline customization functions for {@link
 * google.maps.journeySharing.FleetEngineShipmentLocationProvider}.
 * @extends {google.maps.journeySharing.PolylineCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams =
    function() {};

/**
 * Information for the task associated with this polyline.
 * @type {!google.maps.journeySharing.TaskTrackingInfo}
 */
google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams.prototype
    .taskTrackingInfo;

/**
 * The classification of polyline speed based on traffic data.
 *
 * Access by calling `const {Speed} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.Speed = {
  /**
   * Normal speed, no slowdown is detected.
   */
  NORMAL: 'NORMAL',
  /**
   * Slowdown detected, but no traffic jam formed.
   */
  SLOW: 'SLOW',
  /**
   * Traffic jam detected.
   */
  TRAFFIC_JAM: 'TRAFFIC_JAM',
};

/**
 * Traffic density indicator on a contiguous path segment. The interval defines
 * the starting and ending points of the segment via their indices.
 * @record
 */
google.maps.journeySharing.SpeedReadingInterval = function() {};

/**
 * The zero-based index of the ending point of the interval in the path.
 * @type {number}
 */
google.maps.journeySharing.SpeedReadingInterval.prototype.endPolylinePointIndex;

/**
 * Traffic speed in this interval.
 * @type {!google.maps.journeySharing.Speed}
 */
google.maps.journeySharing.SpeedReadingInterval.prototype.speed;

/**
 * The zero-based index of the starting point of the interval in the path.
 * @type {number}
 */
google.maps.journeySharing.SpeedReadingInterval.prototype
    .startPolylinePointIndex;

/**
 * The details for a task returned by Fleet Engine.
 * @record
 */
google.maps.journeySharing.Task = function() {};

/**
 * Attributes assigned to the task.
 * @type {!Object<string, *>}
 */
google.maps.journeySharing.Task.prototype.attributes;

/**
 * The timestamp of the estimated completion time of the task.
 * @type {?Date}
 */
google.maps.journeySharing.Task.prototype.estimatedCompletionTime;

/**
 * Information specific to the last location update.
 * @type {?google.maps.journeySharing.VehicleLocationUpdate}
 */
google.maps.journeySharing.Task.prototype.latestVehicleLocationUpdate;

/**
 * The task name in the format
 * &quot;providers/{provider_id}/tasks/{task_id}&quot;. The task_id must be a
 * unique identifier and not a tracking ID. To store a tracking ID of a
 * shipment, use the tracking_id field. Multiple tasks can have the same
 * tracking_id.
 * @type {string}
 */
google.maps.journeySharing.Task.prototype.name;

/**
 * The outcome of the task.
 * @type {?string}
 */
google.maps.journeySharing.Task.prototype.outcome;

/**
 * The location where the task was completed (from provider).
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.Task.prototype.outcomeLocation;

/**
 * The setter of the task outcome location (&#39;PROVIDER&#39; or
 * &#39;LAST_VEHICLE_LOCATION&#39;).
 * @type {?string}
 */
google.maps.journeySharing.Task.prototype.outcomeLocationSource;

/**
 * The timestamp of when the task&#39;s outcome was set (from provider).
 * @type {?Date}
 */
google.maps.journeySharing.Task.prototype.outcomeTime;

/**
 * The location where the task is to be completed.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.Task.prototype.plannedLocation;

/**
 * Information about the segments left to be completed for this task.
 * @type {!Array<!google.maps.journeySharing.VehicleJourneySegment>}
 */
google.maps.journeySharing.Task.prototype.remainingVehicleJourneySegments;

/**
 * The current execution state of the task.
 * @type {string}
 */
google.maps.journeySharing.Task.prototype.status;

/**
 * The time window during which the task should be completed.
 * @type {?google.maps.journeySharing.TimeWindow}
 */
google.maps.journeySharing.Task.prototype.targetTimeWindow;

/**
 * The tracking ID of the shipment.
 * @type {?string}
 */
google.maps.journeySharing.Task.prototype.trackingId;

/**
 * The task type; for example, a break or shipment.
 * @type {string}
 */
google.maps.journeySharing.Task.prototype.type;

/**
 * The ID of the vehicle performing this task.
 * @type {?string}
 */
google.maps.journeySharing.Task.prototype.vehicleId;

/**
 * TaskInfo type, used by {@link
 * google.maps.journeySharing.DeliveryVehicleStop}.
 * @record
 */
google.maps.journeySharing.TaskInfo = function() {};

/**
 * The extra time it takes to perform the task, in milliseconds.
 * @type {?number}
 */
google.maps.journeySharing.TaskInfo.prototype.extraDurationMillis;

/**
 * The ID of the task.
 * @type {?string}
 */
google.maps.journeySharing.TaskInfo.prototype.id;

/**
 * The time window during which the task should be completed.
 * @type {?google.maps.journeySharing.TimeWindow}
 */
google.maps.journeySharing.TaskInfo.prototype.targetTimeWindow;

/**
 * Parameters specific to marker customization functions that apply options to
 * markers representing planned or actual task locations. Used by {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions.taskMarkerCustomization}
 * and {@link
 * google.maps.journeySharing.FleetEngineDeliveryVehicleLocationProviderOptions.taskOutcomeMarkerCustomization}.
 * @extends {google.maps.journeySharing.DeliveryVehicleMarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.TaskMarkerCustomizationFunctionParams =
    function() {};

/**
 * The task location represented by this marker.
 * @type {!google.maps.journeySharing.Task}
 */
google.maps.journeySharing.TaskMarkerCustomizationFunctionParams.prototype.task;

/**
 * The details for a task tracking info object returned by Fleet Engine.
 * @record
 */
google.maps.journeySharing.TaskTrackingInfo = function() {};

/**
 * Attributes assigned to the task.
 * @type {!Object<string, *>}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.attributes;

/**
 * The estimated arrival time to the stop location.
 * @type {?Date}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.estimatedArrivalTime;

/**
 * The estimated completion time of a Task.
 * @type {?Date}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype
    .estimatedTaskCompletionTime;

/**
 * Information specific to the last location update.
 * @type {?google.maps.journeySharing.VehicleLocationUpdate}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype
    .latestVehicleLocationUpdate;

/**
 * The name in the format
 * &quot;providers/{provider_id}/taskTrackingInfo/{tracking_id}&quot;, where
 * <code>tracking_id</code> represents the tracking ID.
 * @type {string}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.name;

/**
 * The location where the Task will be completed.
 * @type {?google.maps.LatLng}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.plannedLocation;

/**
 * The total remaining distance in meters to the <code>VehicleStop</code> of
 * interest.
 * @type {?number}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype
    .remainingDrivingDistanceMeters;

/**
 * Indicates the number of stops the vehicle remaining until the task stop is
 * reached, including the task stop. For example, if the vehicle&#39;s next stop
 * is the task stop, the value will be 1.
 * @type {?number}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.remainingStopCount;

/**
 * A list of points which when connected forms a polyline of the vehicle&#39;s
 * expected route to the location of this task.
 * @type {?Array<!google.maps.LatLng>}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.routePolylinePoints;

/**
 * The current execution state of the Task.
 * @type {?string}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.state;

/**
 * The time window during which the task should be completed.
 * @type {?google.maps.journeySharing.TimeWindow}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.targetTimeWindow;

/**
 * The outcome of attempting to execute a Task.
 * @type {?string}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.taskOutcome;

/**
 * The time when the Task&#39;s outcome was set by the provider.
 * @type {?Date}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.taskOutcomeTime;

/**
 * The tracking ID of a Task.<br> <ul> <li>Must be a valid Unicode string.</li>
 * <li>Limited to a maximum length of 64 characters.</li> <li>Normalized
 * according to <a href="http://www.unicode.org/reports/tr15/">Unicode
 * Normalization Form C</a>.</li> <li>May not contain any of the following ASCII
 * characters: &#39;/&#39;, &#39;:&#39;, &#39;?&#39;, &#39;,&#39;, or
 * &#39;#&#39;.</li> </ul>
 * @type {string}
 */
google.maps.journeySharing.TaskTrackingInfo.prototype.trackingId;

/**
 * A time range.
 * @record
 */
google.maps.journeySharing.TimeWindow = function() {};

/**
 * The end time of the time window (inclusive).
 * @type {!Date}
 */
google.maps.journeySharing.TimeWindow.prototype.endTime;

/**
 * The start time of the time window (inclusive).
 * @type {!Date}
 */
google.maps.journeySharing.TimeWindow.prototype.startTime;

/**
 * The details for a trip returned by Fleet Engine.
 * @record
 */
google.maps.journeySharing.Trip = function() {};

/**
 * Location where the customer was dropped off.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.Trip.prototype.actualDropOffLocation;

/**
 * Location where the customer was picked up.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.Trip.prototype.actualPickupLocation;

/**
 * The estimated future time when the passengers will be dropped off, or the
 * actual time when they were dropped off.
 * @type {?Date}
 */
google.maps.journeySharing.Trip.prototype.dropOffTime;

/**
 * Information specific to the last location update.
 * @type {?google.maps.journeySharing.VehicleLocationUpdate}
 */
google.maps.journeySharing.Trip.prototype.latestVehicleLocationUpdate;

/**
 * In the format &quot;providers/{provider_id}/trips/{trip_id}&quot;. The
 * trip_id must be a unique identifier.
 * @type {string}
 */
google.maps.journeySharing.Trip.prototype.name;

/**
 * Number of passengers on this trip; does not include the driver.
 * @type {number}
 */
google.maps.journeySharing.Trip.prototype.passengerCount;

/**
 * The estimated future time when the passengers will be picked up, or the
 * actual time when they were picked up.
 * @type {?Date}
 */
google.maps.journeySharing.Trip.prototype.pickupTime;

/**
 * Location where the customer indicates they will be dropped off.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.Trip.prototype.plannedDropOffLocation;

/**
 * Location where customer indicates they will be picked up.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.Trip.prototype.plannedPickupLocation;

/**
 * An array of waypoints indicating the path from the current location to the
 * drop-off point.
 * @type {!Array<!google.maps.journeySharing.VehicleWaypoint>}
 */
google.maps.journeySharing.Trip.prototype.remainingWaypoints;

/**
 * Current status of the trip. Possible values are UNKNOWN_TRIP_STATUS, NEW,
 * ENROUTE_TO_PICKUP, ARRIVED_AT_PICKUP, ARRIVED_AT_INTERMEDIATE_DESTINATION,
 * ENROUTE_TO_INTERMEDIATE_DESTINATION, ENROUTE_TO_DROPOFF, COMPLETE, or
 * CANCELED.
 * @type {string}
 */
google.maps.journeySharing.Trip.prototype.status;

/**
 * The type of the trip. Possible values are UNKNOWN_TRIP_TYPE, SHARED or
 * EXCLUSIVE.
 * @type {string}
 */
google.maps.journeySharing.Trip.prototype.type;

/**
 * ID of the vehicle making this trip.
 * @type {string}
 */
google.maps.journeySharing.Trip.prototype.vehicleId;

/**
 * Parameters specific to marker customization functions that apply options to
 * markers representing trip vehicle, origin and destination locations. Used
 * by {@link
 * google.maps.journeySharing.FleetEngineTripLocationProviderOptions.vehicleMarkerCustomization}, {@link
 * google.maps.journeySharing.FleetEngineTripLocationProviderOptions.originMarkerCustomization},
 * and {@link
 * google.maps.journeySharing.FleetEngineTripLocationProviderOptions.destinationMarkerCustomization}.
 * @extends {google.maps.journeySharing.MarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.TripMarkerCustomizationFunctionParams =
    function() {};

/**
 * The trip associated with this marker. <br><br>For information about the
 * vehicle servicing this trip, use {@link
 * google.maps.journeySharing.Trip.latestVehicleLocationUpdate} and {@link
 * google.maps.journeySharing.Trip.remainingWaypoints}.
 * @type {!google.maps.journeySharing.Trip}
 */
google.maps.journeySharing.TripMarkerCustomizationFunctionParams.prototype.trip;

/**
 * Parameters specific to polyline customization functions for {@link
 * google.maps.journeySharing.FleetEngineTripLocationProvider}.
 * @extends {google.maps.journeySharing.PolylineCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.TripPolylineCustomizationFunctionParams =
    function() {};

/**
 * The trip associated with this polyline.
 * @type {!google.maps.journeySharing.Trip}
 */
google.maps.journeySharing.TripPolylineCustomizationFunctionParams.prototype
    .trip;

/**
 * Trip types supported by a {@link google.maps.journeySharing.Vehicle}.
 *
 * Access by calling `const {TripType} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.TripType = {
  /**
   * The trip is exclusive to a vehicle.
   */
  EXCLUSIVE: 'EXCLUSIVE',
  /**
   * The trip may share a vehicle with other trips.
   */
  SHARED: 'SHARED',
  /**
   * Unknown trip type.
   */
  UNKNOWN_TRIP_TYPE: 'UNKNOWN_TRIP_TYPE',
};

/**
 * TripWaypoint type.
 * @record
 */
google.maps.journeySharing.TripWaypoint = function() {};

/**
 * The path distance between the previous waypoint (or the vehicle&#39;s current
 * location, if this waypoint is the first in the list of waypoints) to this
 * waypoint in meters.
 * @type {?number}
 */
google.maps.journeySharing.TripWaypoint.prototype.distanceMeters;

/**
 * Travel time between the previous waypoint (or the vehicle&#39;s current
 * location, if this waypoint is the first in the list of waypoints) to this
 * waypoint in milliseconds.
 * @type {?number}
 */
google.maps.journeySharing.TripWaypoint.prototype.durationMillis;

/**
 * The location of the waypoint.
 * @type {?google.maps.LatLng}
 */
google.maps.journeySharing.TripWaypoint.prototype.location;

/**
 * The path from the previous stop (or the vehicle&#39;s current location, if
 * this stop is the first in the list of stops) to this stop.
 * @type {?Array<!google.maps.LatLng>}
 */
google.maps.journeySharing.TripWaypoint.prototype.path;

/**
 * The list of traffic speeds along the path from the previous waypoint (or
 * vehicle location) to the current waypoint. Each interval in the list
 * describes the traffic on a contiguous segment on the path; the interval
 * defines the starting and ending points of the segment via their indices. See
 * the definition of {@link google.maps.journeySharing.SpeedReadingInterval} for
 * more details.
 * @type {?Array<!google.maps.journeySharing.SpeedReadingInterval>}
 */
google.maps.journeySharing.TripWaypoint.prototype.speedReadingIntervals;

/**
 * The trip associated with this waypoint.
 * @type {?string}
 */
google.maps.journeySharing.TripWaypoint.prototype.tripId;

/**
 * The role this waypoint plays in this trip, such as pickup or dropoff.
 * @type {?google.maps.journeySharing.WaypointType}
 */
google.maps.journeySharing.TripWaypoint.prototype.waypointType;

/**
 * Parameters specific to marker customization functions that apply options to
 * markers representing trip waypoint locations. Used by {@link
 * google.maps.journeySharing.FleetEngineTripLocationProviderOptions.waypointMarkerCustomization}.
 * @extends {google.maps.journeySharing.TripMarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.TripWaypointMarkerCustomizationFunctionParams =
    function() {};

/**
 * The 0-based waypoint index associated with this marker. Use this index
 * on {@link google.maps.journeySharing.Trip.remainingWaypoints} to retrieve
 * information about the waypoint.
 * @type {number}
 */
google.maps.journeySharing.TripWaypointMarkerCustomizationFunctionParams
    .prototype.waypointIndex;

/**
 * The details for a vehicle returned by Fleet Engine.
 * @record
 */
google.maps.journeySharing.Vehicle = function() {};

/**
 * Custom vehicle attributes.
 * @type {!Object<string, *>}
 */
google.maps.journeySharing.Vehicle.prototype.attributes;

/**
 * The waypoint where current route segment ends.
 * @type {?google.maps.journeySharing.TripWaypoint}
 */
google.maps.journeySharing.Vehicle.prototype.currentRouteSegmentEndPoint;

/**
 * Time when the current route segment was set.
 * @type {?Date}
 */
google.maps.journeySharing.Vehicle.prototype.currentRouteSegmentVersion;

/**
 * List of trip IDs for trips currently assigned to this vehicle.
 * @type {?Array<string>}
 */
google.maps.journeySharing.Vehicle.prototype.currentTrips;

/**
 * The ETA to the first entry in the waypoints field.
 * @type {?Date}
 */
google.maps.journeySharing.Vehicle.prototype.etaToFirstWaypoint;

/**
 * The last reported location of the vehicle.
 * @type {?google.maps.journeySharing.VehicleLocationUpdate}
 */
google.maps.journeySharing.Vehicle.prototype.latestLocation;

/**
 * The total numbers of riders this vehicle can carry. The driver is not
 * considered in this value.
 * @type {?number}
 */
google.maps.journeySharing.Vehicle.prototype.maximumCapacity;

/**
 * In the format &quot;providers/{provider_id}/vehicles/{vehicle_id}&quot;. The
 * vehicle_id must be a unique identifier.
 * @type {string}
 */
google.maps.journeySharing.Vehicle.prototype.name;

/**
 * The current navigation status of the vehicle.
 * @type {!google.maps.journeySharing.VehicleNavigationStatus}
 */
google.maps.journeySharing.Vehicle.prototype.navigationStatus;

/**
 * The remaining driving distance in the current route segment, in meters.
 * @type {number}
 */
google.maps.journeySharing.Vehicle.prototype.remainingDistanceMeters;

/**
 * Trip types supported by this vehicle.
 * @type {?Array<!google.maps.journeySharing.TripType>}
 */
google.maps.journeySharing.Vehicle.prototype.supportedTripTypes;

/**
 * The vehicle state.
 * @type {!google.maps.journeySharing.VehicleState}
 */
google.maps.journeySharing.Vehicle.prototype.vehicleState;

/**
 * The type of this vehicle.
 * @type {!google.maps.journeySharing.VehicleType}
 */
google.maps.journeySharing.Vehicle.prototype.vehicleType;

/**
 * The remaining waypoints assigned to this Vehicle.
 * @type {?Array<!google.maps.journeySharing.TripWaypoint>}
 */
google.maps.journeySharing.Vehicle.prototype.waypoints;

/**
 * Last time the waypoints field was updated.
 * @type {?Date}
 */
google.maps.journeySharing.Vehicle.prototype.waypointsVersion;

/**
 * VehicleJourneySegment type
 * @record
 */
google.maps.journeySharing.VehicleJourneySegment = function() {};

/**
 * The travel distance from the previous stop to this stop, in meters.
 * @type {?number}
 */
google.maps.journeySharing.VehicleJourneySegment.prototype
    .drivingDistanceMeters;

/**
 * The travel time from the previous stop this stop, in milliseconds.
 * @type {?number}
 */
google.maps.journeySharing.VehicleJourneySegment.prototype
    .drivingDurationMillis;

/**
 * The path from the previous stop (or the vehicle&#39;s current location, if
 * this stop is the first in the list of stops) to this stop.
 * @type {?Array<!google.maps.LatLngLiteral>}
 */
google.maps.journeySharing.VehicleJourneySegment.prototype.path;

/**
 * Information about the stop.
 * @type {?google.maps.journeySharing.DeliveryVehicleStop}
 */
google.maps.journeySharing.VehicleJourneySegment.prototype.stop;

/**
 * VehicleLocationUpdate type
 * @record
 */
google.maps.journeySharing.VehicleLocationUpdate = function() {};

/**
 * The heading of the update. 0 corresponds to north, 180 to south.
 * @type {?number}
 */
google.maps.journeySharing.VehicleLocationUpdate.prototype.heading;

/**
 * The location of the update.
 * @type {google.maps.LatLngLiteral|google.maps.LatLng|null}
 */
google.maps.journeySharing.VehicleLocationUpdate.prototype.location;

/**
 * The speed in kilometers per hour.
 * @type {?number}
 */
google.maps.journeySharing.VehicleLocationUpdate.prototype
    .speedKilometersPerHour;

/**
 * The time this update was received from the vehicle.
 * @type {?Date}
 */
google.maps.journeySharing.VehicleLocationUpdate.prototype.time;

/**
 * Parameters specific to marker customization functions that apply options to
 * vehicle markers. Used by {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.vehicleMarkerCustomization}
 * and {@link
 * google.maps.journeySharing.FleetEngineFleetLocationProviderOptions.vehicleMarkerCustomization}.
 * @extends {google.maps.journeySharing.MarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams =
    function() {};

/**
 * The vehicle represented by this marker.
 * @type {!google.maps.journeySharing.Vehicle}
 */
google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams.prototype
    .vehicle;

/**
 * The current navigation status of a {@link
 * google.maps.journeySharing.Vehicle}.
 *
 * Access by calling `const {VehicleNavigationStatus} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.VehicleNavigationStatus = {
  /**
   * The vehicle is within approximately 50m of the destination.
   */
  ARRIVED_AT_DESTINATION: 'ARRIVED_AT_DESTINATION',
  /**
   * Turn-by-turn navigation is available and the Driver app navigation has
   * entered GUIDED_NAV mode.
   */
  ENROUTE_TO_DESTINATION: 'ENROUTE_TO_DESTINATION',
  /**
   * The Driver app&#39;s navigation is in FREE_NAV mode.
   */
  NO_GUIDANCE: 'NO_GUIDANCE',
  /**
   * The vehicle has gone off the suggested route.
   */
  OFF_ROUTE: 'OFF_ROUTE',
  /**
   * Unspecified navigation status.
   */
  UNKNOWN_NAVIGATION_STATUS: 'UNKNOWN_NAVIGATION_STATUS',
};

/**
 * Parameters specific to polyline customization functions for {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProvider}.
 * @extends {google.maps.journeySharing.PolylineCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams =
    function() {};

/**
 * The vehicle traversing through this polyline.
 * @type {!google.maps.journeySharing.Vehicle}
 */
google.maps.journeySharing.VehiclePolylineCustomizationFunctionParams.prototype
    .vehicle;

/**
 * The current state of a {@link google.maps.journeySharing.Vehicle}.
 *
 * Access by calling `const {VehicleState} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.VehicleState = {
  /**
   * The vehicle is not accepting new trips.
   */
  OFFLINE: 'OFFLINE',
  /**
   * The vehicle is accepting new trips.
   */
  ONLINE: 'ONLINE',
  /**
   * Unknown vehicle state.
   */
  UNKNOWN_VEHICLE_STATE: 'UNKNOWN_VEHICLE_STATE',
};

/**
 * The type of {@link google.maps.journeySharing.Vehicle}.
 *
 * Access by calling `const {VehicleType} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.VehicleType = {
  /**
   * An automobile.
   */
  AUTO: 'AUTO',
  /**
   * Any vehicle that acts as a taxi (typically licensed or regulated).
   */
  TAXI: 'TAXI',
  /**
   * A vehicle with a large storage capacity.
   */
  TRUCK: 'TRUCK',
  /**
   * A motorcycle, moped, or other two-wheeled vehicle.
   */
  TWO_WHEELER: 'TWO_WHEELER',
  /**
   * Unknown vehicle type.
   */
  UNKNOWN: 'UNKNOWN',
};

/**
 * VehicleWaypoint type.
 * @record
 */
google.maps.journeySharing.VehicleWaypoint = function() {};

/**
 * The path distance between the previous waypoint (or the vehicle&#39;s current
 * location, if this waypoint is the first in the list of waypoints) to this
 * waypoint in meters.
 * @type {?number}
 */
google.maps.journeySharing.VehicleWaypoint.prototype.distanceMeters;

/**
 * Travel time between the previous waypoint (or the vehicle&#39;s current
 * location, if this waypoint is the first in the list of waypoints) to this
 * waypoint in milliseconds.
 * @type {?number}
 */
google.maps.journeySharing.VehicleWaypoint.prototype.durationMillis;

/**
 * The location of the waypoint.
 * @type {?google.maps.LatLngLiteral}
 */
google.maps.journeySharing.VehicleWaypoint.prototype.location;

/**
 * The path from the previous waypoint (or the vehicle&#39;s current location,
 * if this waypoint is the first in the list of waypoints) to this waypoint.
 * @type {?Array<!google.maps.LatLngLiteral>}
 */
google.maps.journeySharing.VehicleWaypoint.prototype.path;

/**
 * The list of traffic speeds along the path from the previous waypoint (or
 * vehicle location) to the current waypoint. Each interval in the list
 * describes the traffic on a contiguous segment on the path; the interval
 * defines the starting and ending points of the segment via their indices. See
 * the definition of {@link google.maps.journeySharing.SpeedReadingInterval} for
 * more details.
 * @type {?Array<!google.maps.journeySharing.SpeedReadingInterval>}
 */
google.maps.journeySharing.VehicleWaypoint.prototype.speedReadingIntervals;

/**
 * Parameters specific to marker customization functions that apply options to
 * vehicle waypoint markers. Used by {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.originMarkerCustomization}, {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.destinationMarkerCustomization}
 * and {@link
 * google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.intermediateDestinationMarkerCustomization}
 * @extends {google.maps.journeySharing.VehicleMarkerCustomizationFunctionParams}
 * @record
 */
google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams =
    function() {};

/**
 * The 0-based waypoint index associated with this marker. Use this index
 * on {@link google.maps.journeySharing.Vehicle.waypoints} to retrieve
 * information about the waypoint.
 * @type {number}
 */
google.maps.journeySharing.VehicleWaypointMarkerCustomizationFunctionParams
    .prototype.waypointIndex;

/**
 * Waypoint types supported by {@link google.maps.journeySharing.Vehicle}.
 *
 * Access by calling `const {WaypointType} = await
 * google.maps.importLibrary("journeySharing")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.journeySharing.WaypointType = {
  /**
   * Waypoints for dropping off riders.
   */
  DROP_OFF_WAYPOINT_TYPE: 'DROP_OFF_WAYPOINT_TYPE',
  /**
   * Waypoints for intermediate destinations in a multi-destination trip.
   */
  INTERMEDIATE_DESTINATION_WAYPOINT_TYPE:
      'INTERMEDIATE_DESTINATION_WAYPOINT_TYPE',
  /**
   * Waypoints for picking up riders.
   */
  PICKUP_WAYPOINT_TYPE: 'PICKUP_WAYPOINT_TYPE',
  /**
   * Unknown waypoint type.
   */
  UNKNOWN_WAYPOINT_TYPE: 'UNKNOWN_WAYPOINT_TYPE',
};

/**
 * @const
 */
google.maps.maps3d = {};

/**
 * Specifies how altitude components in the coordinates are interpreted.
 *
 * Access by calling `const {AltitudeMode} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.maps3d.AltitudeMode = {
  /**
   * Allows to express objects relative to the average mean sea level. That also
   * means that if the terrain level of detail changes underneath the object,
   * its absolute position will remain the same.
   */
  ABSOLUTE: 'ABSOLUTE',
  /**
   * Allows to express objects placed on the ground. They will remain at ground
   * level following the terrain regardless of what altitude is provided. If the
   * object is positioned over a major body of water, it will be placed at sea
   * level.
   */
  CLAMP_TO_GROUND: 'CLAMP_TO_GROUND',
  /**
   * Allows to express objects relative to the ground surface. If the terrain
   * level of detail changes, the position of the object will remain constant
   * relative to the ground. When over water, the altitude will be interpreted
   * as a value in meters above sea level.
   */
  RELATIVE_TO_GROUND: 'RELATIVE_TO_GROUND',
  /**
   * Allows to express objects relative to the highest of ground+building+water
   * surface. When over water, this will be water surface; when over terrain,
   * this will be the building surface (if present) or ground surface (if no
   * buildings).
   */
  RELATIVE_TO_MESH: 'RELATIVE_TO_MESH',
};

/**
 * CameraOptions object used to define the properties that can be set on a
 * camera object. The camera object can be anything that has a camera position,
 * e.g. a current map state, or a future requested animation state.
 * @record
 */
google.maps.maps3d.CameraOptions = function() {};

/**
 * See {@link google.maps.maps3d.Map3DElement.center}.
 * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.CameraOptions.prototype.center;

/**
 * See {@link google.maps.maps3d.Map3DElement.heading}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.CameraOptions.prototype.heading;

/**
 * See {@link google.maps.maps3d.Map3DElement.range}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.CameraOptions.prototype.range;

/**
 * See {@link google.maps.maps3d.Map3DElement.roll}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.CameraOptions.prototype.roll;

/**
 * See {@link google.maps.maps3d.Map3DElement.tilt}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.CameraOptions.prototype.tilt;

/**
 * Customization options for the FlyCameraAround Animation.
 * @record
 */
google.maps.maps3d.FlyAroundAnimationOptions = function() {};

/**
 * The central point at which the camera should look at during the orbit
 * animation. Note that the map heading will change as the camera orbits around
 * this center point.
 * @type {!google.maps.maps3d.CameraOptions}
 */
google.maps.maps3d.FlyAroundAnimationOptions.prototype.camera;

/**
 * The duration of one animation cycle in milliseconds.
 * @type {number|undefined}
 */
google.maps.maps3d.FlyAroundAnimationOptions.prototype.durationMillis;

/**
 * Specifies the number of times an animation should repeat. If the number is
 * zero, the animation will complete immediately after it starts.
 * @type {number|undefined}
 */
google.maps.maps3d.FlyAroundAnimationOptions.prototype.repeatCount;

/**
 * The number of rounds to rotate around the center in the given duration. This
 * controls the overall speed of rotation. Passing a negative number to rounds
 * will cause the camera to rotate in a counter-clockwise direction instead of
 * the default clockwise direction.
 * @type {number|undefined}
 * @deprecated Please use {@link
 *     google.maps.maps3d.FlyAroundAnimationOptions.repeatCount} instead.
 */
google.maps.maps3d.FlyAroundAnimationOptions.prototype.rounds;

/**
 * Customization options for the FlyCameraTo Animation.
 * @record
 */
google.maps.maps3d.FlyToAnimationOptions = function() {};

/**
 * The duration of the animation in milliseconds. A duration of 0 will teleport
 * the camera straight to the end position.
 * @type {number|undefined}
 */
google.maps.maps3d.FlyToAnimationOptions.prototype.durationMillis;

/**
 * The location at which the camera should point at the end of the animation.
 * @type {!google.maps.maps3d.CameraOptions}
 */
google.maps.maps3d.FlyToAnimationOptions.prototype.endCamera;

/**
 * Specifies how gesture events should be handled on the map element.
 *
 * Access by calling `const {GestureHandling} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.maps3d.GestureHandling = {
  /**
   * This lets the map choose whether to use cooperative or greedy gesture
   * handling. This is the default behavior if not specified.<br /><br />This
   * will cause the map to enter cooperative mode if the map is dominating its
   * scroll parent (usually the host page) to where the user cannot scroll away
   * from the map to other content.
   */
  AUTO: 'AUTO',
  /**
   * This forces cooperative mode, where modifier keys or two-finger gestures
   * are required to scroll the map.
   */
  COOPERATIVE: 'COOPERATIVE',
  /**
   * This forces greedy mode, where the host page cannot be scrolled from user
   * events on the map element.
   */
  GREEDY: 'GREEDY',
};

/**
 * This event is created from clicking a Map3DElement.
 *
 * Access by calling `const {LocationClickEvent} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Event}
 * @constructor
 */
google.maps.maps3d.LocationClickEvent = function() {};

/**
 * The latitude/longitude/altitude that was below the cursor when the event
 * occurred. Please note, that at coarser levels, less accurate data will be
 * returned. Also, sea floor elevation may be returned for the altitude value
 * when clicking at the water surface from higher camera positions. This event
 * bubbles up through the DOM tree.
 * @type {!google.maps.LatLngAltitude|null}
 */
google.maps.maps3d.LocationClickEvent.prototype.position;

/**
 * Map3DElement is an HTML interface for the 3D Map view. Note that the
 * <code>mode</code> must be set for the 3D Map to start rendering.
 *
 * Access by calling `const {Map3DElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Map3DElementOptions=} options
 * @implements {google.maps.maps3d.Map3DElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.maps3d.Map3DElement = function(options) {};

/**
 * When set, restricts the position of the camera within the specified lat/lng
 * bounds. Note that objects outside the bounds are still rendered. Bounds can
 * restrict both longitude and latitude, or can restrict either latitude or
 * longitude only. For latitude-only bounds use west and east longitudes of
 * <code>-180</code> and <code>180</code>, respectively. For longitude-only
 * bounds use north and south latitudes of <code>90</code> and <code>-90</code>,
 * respectively.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.bounds;

/**
 * The center of the map given as a LatLngAltitude, where altitude is in meters
 * above ground level. Note that this is not necessarily where the camera is
 * located, as the <code>range</code> field affects the camera&#39;s distance
 * from the map center. If not set, defaults to <code>{lat: 0, lng: 0, altitude:
 * 63170000}</code>. 63170000 meters is a maximum allowed altitude (Earth radius
 * multiplied by 10).
 * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.center;

/**
 * When <code>true</code>, all default UI buttons are hidden.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.defaultUIHidden;

/**
 * If provided, an accessibility description (e.g. for use with screen readers)
 * will be added to the map with the provided value.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.description;

/**
 * Controls cooperative gesture handling. When set to <code>COOPERATIVE</code>,
 * modifier keys or two-finger gestures are required to scroll the map. When set
 * to <code>GREEDY</code>, the host page cannot be scrolled from user events on
 * the map element. When set to <code>AUTO</code>, the gesture handling is
 * determined by the scrollability of the host page.
 * @default {@link google.maps.maps3d.GestureHandling.GREEDY}
 * @type {!google.maps.maps3d.GestureHandling|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.gestureHandling;

/**
 * The compass heading of the map, in degrees, where due north is zero. When
 * there is no tilt, any roll will be interpreted as heading.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.heading;

/**
 * Adds a usage attribution ID to the initializer, which helps Google understand
 * which libraries and samples are helpful to developers, such as usage of a
 * marker clustering library. To opt out of sending the usage attribution ID, it
 * is safe to delete this property. Only unique values will be sent. Changes to
 * this value after instantiation may be ignored.
 * @type {!Iterable<string>|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.internalUsageAttributionIds;

/**
 * Language in which to attempt to render the base map&#39;s language. Will
 * default to the language requested by the developer when loading the Maps JS
 * API.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.language;

/**
 * Specifies a map ID which will be used to fetch cloud-based map style for the
 * map. This should not be set after the map has been initialized. Therefore we
 * ensure the mapId is only set during initialization and do not publish this
 * attribute to public-facing channels.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.mapId;

/**
 * The maximum altitude above the ground which will be displayed on the map. A
 * valid value is between <code>0</code> and <code>63170000</code> meters (Earth
 * radius multiplied by 10).
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.maxAltitude;

/**
 * The maximum angle of heading (rotation) of the map. A valid value is between
 * <code>0</code> and <code>360</code> degrees. <code>minHeading</code> and
 * <code>maxHeading</code> represent an interval of &lt;= <code>360</code>
 * degrees in which heading gestures will be allowed. <code>minHeading =
 * 180</code> and <code>maxHeading = 90</code> will allow heading in <code>[0,
 * 90]</code> and heading in <code>[180, 360]</code>. <code>minHeading =
 * 90</code> and <code>maxHeading = 180</code> will allow heading in <code>[90,
 * 180]</code>.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.maxHeading;

/**
 * The maximum angle of incidence of the map. A valid value is between
 * <code>0</code> and <code>90</code> degrees.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.maxTilt;

/**
 * The minimum altitude above the ground which will be displayed on the map. A
 * valid value is between <code>0</code> and <code>63170000</code> meters (Earth
 * radius multiplied by 10).
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.minAltitude;

/**
 * The minimum angle of heading (rotation) of the map. A valid value is between
 * <code>0</code> and <code>360</code> degrees. <code>minHeading</code> and
 * <code>maxHeading</code> represent an interval of &lt;= <code>360</code>
 * degrees in which heading gestures will be allowed. <code>minHeading =
 * 180</code> and <code>maxHeading = 90</code> will allow heading in <code>[0,
 * 90]</code> and heading in <code>[180, 360]</code>. <code>minHeading =
 * 90</code> and <code>maxHeading = 180</code> will allow heading in <code>[90,
 * 180]</code>.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.minHeading;

/**
 * The minimum angle of incidence of the map. A valid value is between
 * <code>0</code> and <code>90</code> degrees.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.minTilt;

/**
 * Specifies a mode the map should be rendered in. If not set, the map won&#39;t
 * be rendered.
 * @type {!google.maps.maps3d.MapMode|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.mode;

/**
 * The distance from camera to the center of the map, in meters.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.range;

/**
 * Region with which to attempt to render the base map&#39;s POIs. Will default
 * to the region requested by the developer when loading the Maps JS API.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.region;

/**
 * The roll of the camera around the view vector in degrees. To resolve
 * ambiguities, when there is no tilt, any roll will be interpreted as heading.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.roll;

/**
 * The tilt of the camera&#39;s view vector in degrees. A view vector looking
 * directly down at the earth would have a tilt of zero degrees. A view vector
 * pointing away from the earth would have a tilt of <code>180</code> degrees.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElement.prototype.tilt;

/**
 * When <code>true</code>, all default UI buttons are disabled. Does not disable
 * the keyboard and gesture controls.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 * @deprecated Please use {@link
 *     google.maps.maps3d.Map3DElement.defaultUIHidden} instead. This property
 *     will be removed in a future release.
 */
google.maps.maps3d.Map3DElement.prototype.defaultUIDisabled;



/**
 * This method orbits the camera around a given location for a given duration.
 * The animation can be repeated by the given number of {@link
 * google.maps.maps3d.FlyAroundAnimationOptions.repeatCount} times. <br /><br />
 * The camera will move in a clockwise direction. <br /><br /> The method is
 * asynchronous because animations can only start after the map has loaded a
 * minimum amount. The method returns once the animation has been started. <br
 * /><br /> If the number of {@link
 * google.maps.maps3d.FlyAroundAnimationOptions.repeatCount} times is zero, no
 * spin will occur, and the animation will complete immediately after it starts.
 * @param {!google.maps.maps3d.FlyAroundAnimationOptions} options
 * @return {undefined}
 */
google.maps.maps3d.Map3DElement.prototype.flyCameraAround = function(
    options) {};

/**
 * This method moves the camera parabolically from the current location to a
 * given end location over a given duration. <br /><br /> The method is
 * asynchronous because animations can only start after the map has loaded a
 * minimum amount. The method returns once the animation has been started.
 * @param {!google.maps.maps3d.FlyToAnimationOptions} options
 * @return {undefined}
 */
google.maps.maps3d.Map3DElement.prototype.flyCameraTo = function(options) {};



/**
 * This method stops any fly animation that might happen to be running. The
 * camera stays wherever it is mid-animation; it does not teleport to the end
 * point. <br /><br /> The method is asynchronous because animations can only
 * start or stop after the map has loaded a minimum amount. The method returns
 * once the animation has stopped.
 * @return {undefined}
 */
google.maps.maps3d.Map3DElement.prototype.stopCameraAnimation = function() {};

/**
 * Map3DElementOptions object used to define the properties that can be set on a
 * Map3DElement.
 * @record
 */
google.maps.maps3d.Map3DElementOptions = function() {};

/**
 * See {@link google.maps.maps3d.Map3DElement.bounds}.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.bounds;

/**
 * See {@link google.maps.maps3d.Map3DElement.center}.
 * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.center;

/**
 * See {@link google.maps.maps3d.Map3DElement.defaultUIHidden}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.defaultUIHidden;

/**
 * See {@link google.maps.maps3d.Map3DElement.description}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.description;

/**
 * See {@link google.maps.maps3d.Map3DElement.gestureHandling}.
 * @type {!google.maps.maps3d.GestureHandling|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.gestureHandling;

/**
 * See {@link google.maps.maps3d.Map3DElement.heading}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.heading;

/**
 * See {@link google.maps.maps3d.Map3DElement.internalUsageAttributionIds}.
 * @type {!Iterable<string>|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.internalUsageAttributionIds;

/**
 * See {@link google.maps.maps3d.Map3DElement.language}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.language;

/**
 * See {@link google.maps.maps3d.Map3DElement.mapId}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.mapId;

/**
 * See {@link google.maps.maps3d.Map3DElement.maxAltitude}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.maxAltitude;

/**
 * See {@link google.maps.maps3d.Map3DElement.maxHeading}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.maxHeading;

/**
 * See {@link google.maps.maps3d.Map3DElement.maxTilt}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.maxTilt;

/**
 * See {@link google.maps.maps3d.Map3DElement.minAltitude}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.minAltitude;

/**
 * See {@link google.maps.maps3d.Map3DElement.minHeading}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.minHeading;

/**
 * See {@link google.maps.maps3d.Map3DElement.minTilt}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.minTilt;

/**
 * See {@link google.maps.maps3d.Map3DElement.mode}.
 * @type {!google.maps.maps3d.MapMode|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.mode;

/**
 * See {@link google.maps.maps3d.Map3DElement.range}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.range;

/**
 * See {@link google.maps.maps3d.Map3DElement.region}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.region;

/**
 * See {@link google.maps.maps3d.Map3DElement.roll}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.roll;

/**
 * See {@link google.maps.maps3d.Map3DElement.tilt}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Map3DElementOptions.prototype.tilt;

/**
 * See {@link google.maps.maps3d.Map3DElement.defaultUIDisabled}.
 * @type {boolean|null|undefined}
 * @deprecated Please use {@link
 *     google.maps.maps3d.Map3DElement.defaultUIHidden} instead. This property
 *     will be removed in a future release.
 */
google.maps.maps3d.Map3DElementOptions.prototype.defaultUIDisabled;

/**
 * Specifies a mode the map should be rendered in.
 *
 * Access by calling `const {MapMode} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.maps3d.MapMode = {
  /**
   * This map mode displays a transparent layer of major streets on satellite,
   * or photorealistic imagery.
   */
  HYBRID: 'HYBRID',
  /**
   * This map mode displays satellite, or photorealistic imagery where
   * available.
   */
  SATELLITE: 'SATELLITE',
};

/**
 * Shows a position on a 3D map. Note that the <code>position</code> must be set
 * for the <code>Marker3DElement</code> to display.
 *
 * Access by calling `const {Marker3DElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Marker3DElementOptions=} options
 * @implements {google.maps.maps3d.Marker3DElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.maps3d.Marker3DElement = function(options) {};

/**
 * Specifies how the altitude component of the position is interpreted.
 * @default {@link google.maps.maps3d.AltitudeMode.CLAMP_TO_GROUND}
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.altitudeMode;

/**
 * An enumeration specifying how a Marker3DElement should behave when it
 * collides with another Marker3DElement or with the basemap labels.
 * @default {@link google.maps.CollisionBehavior.REQUIRED}
 * @type {!google.maps.CollisionBehavior|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.collisionBehavior;

/**
 * Specifies whether this marker should be drawn or not when it&#39;s occluded.
 * The marker can be occluded by map geometry (e.g. buildings).
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.drawsWhenOccluded;

/**
 * Specifies whether to connect the marker to the ground. To extrude a marker,
 * the <code>altitudeMode</code> must be either <code>RELATIVE_TO_GROUND</code>
 * or <code>ABSOLUTE</code>.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.extruded;

/**
 * Text to be displayed by this marker.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.label;

/**
 * The location of the tip of the marker. Altitude is ignored in certain modes
 * and thus optional.
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.position;

/**
 * Specifies whether this marker should preserve its size or not regardless of
 * distance from camera. By default, the marker is scaled based on distance from
 * camera/tilt.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.sizePreserved;

/**
 * The zIndex compared to other markers.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Marker3DElement.prototype.zIndex;



/**
 * Marker3DElementOptions object used to define the properties that can be set
 * on a Marker3DElement.
 * @record
 */
google.maps.maps3d.Marker3DElementOptions = function() {};

/**
 * See {@link google.maps.maps3d.Marker3DElement.altitudeMode}.
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.altitudeMode;

/**
 * See {@link google.maps.maps3d.Marker3DElement.collisionBehavior}.
 * @type {!google.maps.CollisionBehavior|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.collisionBehavior;

/**
 * See {@link google.maps.maps3d.Marker3DElement.drawsWhenOccluded}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.drawsWhenOccluded;

/**
 * See {@link google.maps.maps3d.Marker3DElement.extruded}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.extruded;

/**
 * See {@link google.maps.maps3d.Marker3DElement.label}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.label;

/**
 * See {@link google.maps.maps3d.Marker3DElement.position}.
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.position;

/**
 * See {@link google.maps.maps3d.Marker3DElement.sizePreserved}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.sizePreserved;

/**
 * See {@link google.maps.maps3d.Marker3DElement.zIndex}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Marker3DElementOptions.prototype.zIndex;

/**
 * Shows a position on a 3D map. Note that the <code>position</code> must be set
 * for the <code>Marker3DInteractiveElement</code> to display. Unlike
 * <code>Marker3DElement</code>, <code>Marker3DInteractiveElement</code>
 * receives a <code>gmp-click</code> event.
 *
 * Access by calling `const {Marker3DInteractiveElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Marker3DInteractiveElementOptions=} options
 * @implements {google.maps.maps3d.Marker3DInteractiveElementOptions}
 * @extends {google.maps.maps3d.Marker3DElement}
 * @constructor
 */
google.maps.maps3d.Marker3DInteractiveElement = function(options) {};

/**
 * When set, the popover element will be open on this marker&#39;s click.
 * @type {!google.maps.maps3d.PopoverElement|null|undefined}
 */
google.maps.maps3d.Marker3DInteractiveElement.prototype.gmpPopoverTargetElement;

/**
 * Rollover text. If provided, an accessibility text (e.g. for use with screen
 * readers) will be added to the <code>Marker3DInteractiveElement</code> with
 * the provided value.
 * @type {string}
 */
google.maps.maps3d.Marker3DInteractiveElement.prototype.title;



/**
 * Marker3DInteractiveElementOptions object used to define the properties that
 * can be set on a Marker3DInteractiveElement.
 * @extends {google.maps.maps3d.Marker3DElementOptions}
 * @record
 */
google.maps.maps3d.Marker3DInteractiveElementOptions = function() {};

/**
 * See {@link
 * google.maps.maps3d.Marker3DInteractiveElement.gmpPopoverTargetElement}.
 * @type {!google.maps.maps3d.PopoverElement|null|undefined}
 */
google.maps.maps3d.Marker3DInteractiveElementOptions.prototype
    .gmpPopoverTargetElement;

/**
 * See {@link google.maps.maps3d.Marker3DInteractiveElement.title}.
 * @type {string|undefined}
 */
google.maps.maps3d.Marker3DInteractiveElementOptions.prototype.title;

/**
 * A 3D model which allows the rendering of gLTF models. Note that the
 * <code>position</code> and the <code>src</code> must be set for the
 * <code>Model3DElement</code> to display. <br /><br /> Core properties of the
 * <a href="https://www.khronos.org/gltf/pbr">gLTF PBR</a> should be supported.
 * No extensions or extension properties are currently supported.
 *
 * Access by calling `const {Model3DElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Model3DElementOptions=} options
 * @implements {google.maps.maps3d.Model3DElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.maps3d.Model3DElement = function(options) {};

/**
 * Specifies how altitude in the position is interpreted.
 * @default {@link google.maps.maps3d.AltitudeMode.CLAMP_TO_GROUND}
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Model3DElement.prototype.altitudeMode;

/**
 * Describes rotation of a 3D model&#39;s coordinate system to position the
 * model on the 3D Map. <br /><br /> Rotations are applied to the model in the
 * following order: roll, tilt and then heading.
 * @type {!google.maps.Orientation3D|!google.maps.Orientation3DLiteral|null|undefined}
 */
google.maps.maps3d.Model3DElement.prototype.orientation;

/**
 * Sets the <code>Model3DElement</code>&#39;s position. Altitude is ignored in
 * certain modes and thus optional.
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.Model3DElement.prototype.position;

/**
 * Scales the model along the x, y, and z axes in the model&#39;s coordinate
 * space.
 * @default <code>1</code>
 * @type {number|!google.maps.Vector3D|!google.maps.Vector3DLiteral|null|undefined}
 */
google.maps.maps3d.Model3DElement.prototype.scale;

/**
 * Specifies the url of the 3D model. At this time, only models in the
 * <code>.glb</code> format are supported. <br /><br /> Any relative HTTP urls
 * will be resolved to their corresponding absolute ones. <br /><br /> Please
 * note that If you&#39;re hosting your <code>.glb</code> model files on a
 * different website or server than your main application, make sure to set up
 * the correct CORS HTTP headers. This allows your application to securely
 * access the model files from the other domain.
 * @type {string|!URL|null|undefined}
 */
google.maps.maps3d.Model3DElement.prototype.src;



/**
 * Model3DElementOptions object used to define the properties that can be set on
 * a Model3DElement.
 * @record
 */
google.maps.maps3d.Model3DElementOptions = function() {};

/**
 * See {@link google.maps.maps3d.Model3DElement.altitudeMode}.
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Model3DElementOptions.prototype.altitudeMode;

/**
 * See {@link google.maps.maps3d.Model3DElement.orientation}.
 * @type {!google.maps.Orientation3D|!google.maps.Orientation3DLiteral|null|undefined}
 */
google.maps.maps3d.Model3DElementOptions.prototype.orientation;

/**
 * See {@link google.maps.maps3d.Model3DElement.position}.
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.maps3d.Model3DElementOptions.prototype.position;

/**
 * See {@link google.maps.maps3d.Model3DElement.scale}.
 * @type {number|!google.maps.Vector3D|!google.maps.Vector3DLiteral|null|undefined}
 */
google.maps.maps3d.Model3DElementOptions.prototype.scale;

/**
 * See {@link google.maps.maps3d.Model3DElement.src}.
 * @type {string|!URL|null|undefined}
 */
google.maps.maps3d.Model3DElementOptions.prototype.src;

/**
 * A 3D model which allows the rendering of gLTF models. Note that the
 * <code>position</code> and the <code>src</code> must be set for the
 * <code>Model3DElement</code> to display. <br /><br /> Core properties of the
 * <a href="https://www.khronos.org/gltf/pbr">gLTF PBR</a> should be supported.
 * No extensions or extension properties are currently supported. <br /><br />
 * Unlike <code>Model3DElement</code>, <code>Model3DInteractiveElement</code>
 * receives a <code>gmp-click</code> event.
 *
 * Access by calling `const {Model3DInteractiveElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Model3DElementOptions=} options
 * @implements {google.maps.maps3d.Model3DInteractiveElementOptions}
 * @extends {google.maps.maps3d.Model3DElement}
 * @constructor
 */
google.maps.maps3d.Model3DInteractiveElement = function(options) {};



/**
 * Model3DInteractiveElementOptions object used to define the properties that
 * can be set on a Model3DInteractiveElement.
 * @extends {google.maps.maps3d.Model3DElementOptions}
 * @record
 */
google.maps.maps3d.Model3DInteractiveElementOptions = function() {};

/**
 * This event is created from clicking on a place icon on a
 * <code>Map3DElement</code>. To prevent the default popover from showing up,
 * call the <code>preventDefault()</code> method on this event to prevent it
 * being handled by the <code>Map3DElement</code>.
 *
 * Access by calling `const {PlaceClickEvent} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {google.maps.maps3d.LocationClickEvent}
 * @constructor
 */
google.maps.maps3d.PlaceClickEvent = function() {};

/**
 * The place id of the map feature.
 * @type {string}
 */
google.maps.maps3d.PlaceClickEvent.prototype.placeId;

/**
 * Fetches a <code>Place</code> for this place id. In the resulting
 * <code>Place</code> object, the id property will be populated. Additional
 * fields can be subsequently requested via <code>Place.fetchFields()</code>
 * subject to normal Places API enablement and billing. The promise is rejected
 * if there was an error fetching the <code>Place</code>.
 * @return {!Promise<!google.maps.places.Place>}
 */
google.maps.maps3d.PlaceClickEvent.prototype.fetchPlace = function() {};

/**
 * A 3D polygon (like a 3D polyline) defines a series of connected coordinates
 * in an ordered sequence. Additionally, polygons form a closed loop and define
 * a filled region.
 *
 * Access by calling `const {Polygon3DElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Polygon3DElementOptions=} options
 * @implements {google.maps.maps3d.Polygon3DElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.maps3d.Polygon3DElement = function(options) {};

/**
 * Specifies how altitude components in the coordinates are interpreted.
 * @default {@link google.maps.maps3d.AltitudeMode.CLAMP_TO_GROUND}
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.altitudeMode;

/**
 * Specifies whether parts of the polygon which could be occluded are drawn or
 * not. Polygons can be occluded by map geometry (e.g. buildings).
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.drawsOccludedSegments;

/**
 * Specifies whether to connect the polygon to the ground. To extrude a polygon,
 * the <code>altitudeMode</code> must be either <code>RELATIVE_TO_GROUND</code>
 * or <code>ABSOLUTE</code>.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.extruded;

/**
 * The fill color. All CSS3 colors are supported.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.fillColor;

/**
 * When <code>true</code>, edges of the polygon are interpreted as geodesic and
 * will follow the curvature of the Earth. When <code>false</code>, edges of the
 * polygon are rendered as straight lines in screen space.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.geodesic;

/**
 * The ordered sequence of coordinates that designates a closed loop. Unlike
 * polylines, a polygon may consist of one or more paths, which create multiple
 * cut-outs inside the polygon.
 * @type {!Iterable<!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>>|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.innerPaths;

/**
 * The ordered sequence of coordinates that designates a closed loop. Altitude
 * is ignored in certain modes and thus optional.
 * @type {!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.path;

/**
 * The stroke color. All CSS3 colors are supported.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.strokeColor;

/**
 * The stroke width in pixels.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.strokeWidth;

/**
 * The zIndex compared to other polys.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polygon3DElement.prototype.zIndex;

/**
 * The ordered sequence of coordinates that designates a closed loop. Altitude
 * is ignored in certain modes and thus optional.
 * @type {!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>|null|undefined}
 * @deprecated Use <code>path</code> instead. This property will be removed in a
 *     future release.
 */
google.maps.maps3d.Polygon3DElement.prototype.outerCoordinates;

/**
 * The ordered sequence of coordinates that designates a closed loop. Unlike
 * polylines, a polygon may consist of one or more paths, which create multiple
 * cut-outs inside the polygon.
 * @type {!Iterable<!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>>|null|undefined}
 * @deprecated Use <code>innerPaths</code> instead. This property will be
 *     removed in a future release.
 */
google.maps.maps3d.Polygon3DElement.prototype.innerCoordinates;



/**
 * Polygon3DElementOptions object used to define the properties that can be set
 * on a Polygon3DElement.
 * @record
 */
google.maps.maps3d.Polygon3DElementOptions = function() {};

/**
 * See {@link google.maps.maps3d.Polygon3DElement.altitudeMode}.
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.altitudeMode;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.drawsOccludedSegments}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.drawsOccludedSegments;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.extruded}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.extruded;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.fillColor}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.fillColor;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.geodesic}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.geodesic;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.innerCoordinates}.
 * @type {!Iterable<!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral>|!Iterable<!google.maps.LatLngLiteral>>|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.innerCoordinates;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.outerCoordinates}.
 * @type {!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.outerCoordinates;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.strokeColor}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.strokeColor;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.strokeWidth}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.strokeWidth;

/**
 * See {@link google.maps.maps3d.Polygon3DElement.zIndex}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polygon3DElementOptions.prototype.zIndex;

/**
 * A 3D polygon (like a 3D polyline) defines a series of connected coordinates
 * in an ordered sequence. Additionally, polygons form a closed loop and define
 * a filled region. Unlike <code>Polygon3DElement</code>,
 * <code>Polygon3DInteractiveElement</code> receives a <code>gmp-click</code>
 * event.
 *
 * Access by calling `const {Polygon3DInteractiveElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Polygon3DElementOptions=} options
 * @implements {google.maps.maps3d.Polygon3DInteractiveElementOptions}
 * @extends {google.maps.maps3d.Polygon3DElement}
 * @constructor
 */
google.maps.maps3d.Polygon3DInteractiveElement = function(options) {};



/**
 * Polygon3DInteractiveElementOptions object used to define the properties that
 * can be set on a Polygon3DInteractiveElement.
 * @extends {google.maps.maps3d.Polygon3DElementOptions}
 * @record
 */
google.maps.maps3d.Polygon3DInteractiveElementOptions = function() {};

/**
 * A 3D polyline is a linear overlay of connected line segments on a 3D map.
 *
 * Access by calling `const {Polyline3DElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Polyline3DElementOptions=} options
 * @implements {google.maps.maps3d.Polyline3DElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.maps3d.Polyline3DElement = function(options) {};

/**
 * Specifies how altitude components in the coordinates are interpreted.
 * @default {@link google.maps.maps3d.AltitudeMode.CLAMP_TO_GROUND}
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.altitudeMode;

/**
 * Specifies whether parts of the polyline which could be occluded are drawn or
 * not. Polylines can be occluded by map geometry (e.g. buildings).
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.drawsOccludedSegments;

/**
 * Specifies whether to connect the polyline to the ground. To extrude a
 * polyline, the <code>altitudeMode</code> must be either
 * <code>RELATIVE_TO_GROUND</code> or <code>ABSOLUTE</code>.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.extruded;

/**
 * When <code>true</code>, edges of the polyline are interpreted as geodesic and
 * will follow the curvature of the Earth. When <code>false</code>, edges of the
 * polyline are rendered as straight lines in screen space.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.geodesic;

/**
 * The outer color. All CSS3 colors are supported.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.outerColor;

/**
 * The outer width is between <code>0.0</code> and <code>1.0</code>. This is a
 * percentage of the <code>strokeWidth</code>.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.outerWidth;

/**
 * The ordered sequence of coordinates of the Polyline. Altitude is ignored in
 * certain modes and thus optional.
 * @type {!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.path;

/**
 * The stroke color. All CSS3 colors are supported.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.strokeColor;

/**
 * The stroke width in pixels.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.strokeWidth;

/**
 * The zIndex compared to other polys.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polyline3DElement.prototype.zIndex;

/**
 * The ordered sequence of coordinates of the Polyline. Altitude is ignored in
 * certain modes and thus optional.
 * @type {!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>|null|undefined}
 * @deprecated Use <code>path</code> instead. This property will be removed in a
 *     future release.
 */
google.maps.maps3d.Polyline3DElement.prototype.coordinates;



/**
 * Polyline3DElementOptions object used to define the properties that can be set
 * on a Polyline3DElement.
 * @record
 */
google.maps.maps3d.Polyline3DElementOptions = function() {};

/**
 * See {@link google.maps.maps3d.Polyline3DElement.altitudeMode}.
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.altitudeMode;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.coordinates}.
 * @type {!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.coordinates;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.drawsOccludedSegments}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.drawsOccludedSegments;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.extruded}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.extruded;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.geodesic}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.geodesic;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.outerColor}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.outerColor;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.outerWidth}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.outerWidth;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.strokeColor}.
 * @type {string|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.strokeColor;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.strokeWidth}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.strokeWidth;

/**
 * See {@link google.maps.maps3d.Polyline3DElement.zIndex}.
 * @type {number|null|undefined}
 */
google.maps.maps3d.Polyline3DElementOptions.prototype.zIndex;

/**
 * A 3D polyline is a linear overlay of connected line segments on a 3D map.
 * Unlike <code>Polyline3DElement</code>,
 * <code>Polyline3DInteractiveElement</code> receives a <code>gmp-click</code>
 * event.
 *
 * Access by calling `const {Polyline3DInteractiveElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.Polyline3DElementOptions=} options
 * @implements {google.maps.maps3d.Polyline3DInteractiveElementOptions}
 * @extends {google.maps.maps3d.Polyline3DElement}
 * @constructor
 */
google.maps.maps3d.Polyline3DInteractiveElement = function(options) {};



/**
 * Polyline3DInteractiveElementOptions object used to define the properties that
 * can be set on a Polyline3DInteractiveElement.
 * @extends {google.maps.maps3d.Polyline3DElementOptions}
 * @record
 */
google.maps.maps3d.Polyline3DInteractiveElementOptions = function() {};

/**
 * A custom HTML element that renders a popover. It looks like a bubble and is
 * often connected to a marker.
 *
 * Access by calling `const {PopoverElement} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.maps3d.PopoverElementOptions=} options
 * @implements {google.maps.maps3d.PopoverElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.maps3d.PopoverElement = function(options) {};

/**
 * Specifies how the altitude component of the position is interpreted.
 * @default {@link google.maps.maps3d.AltitudeMode.CLAMP_TO_GROUND}
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.PopoverElement.prototype.altitudeMode;

/**
 * If set to true, disables panning the map to make the popover fully visible
 * when it opens.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.PopoverElement.prototype.autoPanDisabled;

/**
 * Specifies whether this popover should be &quot;light dismissed&quot; or not.
 * The &quot;light dismiss&quot; behavior is similar to setting the
 * <code>popover=&quot;auto&quot;</code> attribute which is part of the browser
 * <a
 * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/popover">Popover
 * API</a>.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.PopoverElement.prototype.lightDismissDisabled;

/**
 * Specifies whether this popover should be open or not.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.PopoverElement.prototype.open;

/**
 * The position at which to display this popover. If the popover is anchored to
 * an interactive marker, the marker&#39;s position will be used instead.
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLngAltitudeLiteral|!google.maps.maps3d.Marker3DInteractiveElement|string|null|undefined}
 */
google.maps.maps3d.PopoverElement.prototype.positionAnchor;



/**
 * PopoverElementOptions object used to define the properties that can be set on
 * a PopoverElement.
 * @record
 */
google.maps.maps3d.PopoverElementOptions = function() {};

/**
 * See {@link google.maps.maps3d.PopoverElement.altitudeMode}.
 * @type {!google.maps.maps3d.AltitudeMode|null|undefined}
 */
google.maps.maps3d.PopoverElementOptions.prototype.altitudeMode;

/**
 * See {@link google.maps.maps3d.PopoverElement.autoPanDisabled}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.PopoverElementOptions.prototype.autoPanDisabled;

/**
 * See {@link google.maps.maps3d.PopoverElement.lightDismissDisabled}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.PopoverElementOptions.prototype.lightDismissDisabled;

/**
 * See {@link google.maps.maps3d.PopoverElement.open}.
 * @type {boolean|null|undefined}
 */
google.maps.maps3d.PopoverElementOptions.prototype.open;

/**
 * See {@link google.maps.maps3d.PopoverElement.positionAnchor}.
 * @type {!google.maps.LatLngLiteral|!google.maps.LatLngAltitudeLiteral|string|!google.maps.maps3d.Marker3DInteractiveElement|null|undefined}
 */
google.maps.maps3d.PopoverElementOptions.prototype.positionAnchor;

/**
 * This event is created from monitoring a steady state of
 * <code>Map3DElement</code>. This event bubbles up through the DOM tree.
 *
 * Access by calling `const {SteadyChangeEvent} = await
 * google.maps.importLibrary("maps3d")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Event}
 * @constructor
 */
google.maps.maps3d.SteadyChangeEvent = function() {};

/**
 * Indicates whether Map3DElement is steady (i.e. all rendering for the current
 * scene has completed) or not.
 * @type {boolean}
 */
google.maps.maps3d.SteadyChangeEvent.prototype.isSteady;

/**
 * @const
 */
google.maps.marker = {};

/**
 * This event is created from clicking an Advanced Marker. Access the
 * marker&#39;s position with <code>event.target.position</code>.
 *
 * Access by calling `const {AdvancedMarkerClickEvent} = await
 * google.maps.importLibrary("marker")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Event}
 * @constructor
 */
google.maps.marker.AdvancedMarkerClickEvent = function() {};

/**
 * Shows a position on a map. Note that the <code>position</code> must be set
 * for the <code>AdvancedMarkerElement</code> to display.
 *
 * Access by calling `const {AdvancedMarkerElement} = await
 * google.maps.importLibrary("marker")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.marker.AdvancedMarkerElementOptions=} options
 * @implements {google.maps.marker.AdvancedMarkerElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.marker.AdvancedMarkerElement = function(options) {};

/**
 * A <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/length-percentage">CSS
 * length-percentage</a> value which is used to offset the anchor point of the
 * marker from the top left corner of the marker. This is useful when using a
 * visual which has an anchor point that is different than the typical bottom
 * center point of the default marker.
 * @default &quot;-50%&quot;
 * @type {string|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.anchorLeft;

/**
 * A <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/length-percentage">CSS
 * length-percentage</a> value which is used to offset the anchor point of the
 * marker from the top left corner of the marker. This is useful when using a
 * visual which has an anchor point that is different than the typical bottom
 * center point of the default marker.
 * @default &quot;-100%&quot;
 * @type {string|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.anchorTop;

/**
 * See {@link
 * google.maps.marker.AdvancedMarkerElementOptions.collisionBehavior}.
 * @type {!google.maps.CollisionBehavior|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.collisionBehavior;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.gmpClickable}.
 * @type {boolean|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.gmpClickable;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.gmpDraggable}.
 * @type {boolean|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.gmpDraggable;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.map}.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.map;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.position}.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.position;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.title}.
 * @type {string}
 */
google.maps.marker.AdvancedMarkerElement.prototype.title;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.zIndex}.
 * @type {number|null|undefined}
 */
google.maps.marker.AdvancedMarkerElement.prototype.zIndex;

/**
 * This field is read-only. The DOM Element backing the view.
 * @type {!HTMLElement}
 * @deprecated Use the AdvancedMarkerElement directly.
 */
google.maps.marker.AdvancedMarkerElement.prototype.element;

/**
 * See {@link google.maps.marker.AdvancedMarkerElementOptions.content}.
 * @type {!Node|null|undefined}
 * @deprecated Use <a
 *     href="https://developer.mozilla.org/docs/Web/API/Element/children">.children</a>
 *     instead.
 */
google.maps.marker.AdvancedMarkerElement.prototype.content;



/**
 * Adds the given listener function to the given event name in the Maps Eventing
 * system.
 * @param {string} eventName Observed event.
 * @param {!Function} handler Function to handle events.
 * @return {!google.maps.MapsEventListener} Resulting event listener.
 */
google.maps.marker.AdvancedMarkerElement.prototype.addListener = function(
    eventName, handler) {};



/**
 * Options for constructing an {@link google.maps.marker.AdvancedMarkerElement}.
 * @record
 */
google.maps.marker.AdvancedMarkerElementOptions = function() {};

/**
 * A <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/length-percentage">CSS
 * length-percentage</a> value which is used to offset the anchor point of the
 * marker from the top left corner of the marker. This is useful when using a
 * visual which has an anchor point that is different than the typical bottom
 * center point of the default marker.
 * @default &quot;-50%&quot;
 * @type {string|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.anchorLeft;

/**
 * A <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/length-percentage">CSS
 * length-percentage</a> value which is used to offset the anchor point of the
 * marker from the top left corner of the marker. This is useful when using a
 * visual which has an anchor point that is different than the typical bottom
 * center point of the default marker.
 * @default &quot;-100%&quot;
 * @type {string|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.anchorTop;

/**
 * An enumeration specifying how an <code>AdvancedMarkerElement</code> should
 * behave when it collides with another <code>AdvancedMarkerElement</code> or
 * with the basemap labels on a vector map. <p><strong>Note</strong>:
 * <code>AdvancedMarkerElement</code> to <code>AdvancedMarkerElement</code>
 * collision works on both raster and vector maps, however,
 * <code>AdvancedMarkerElement</code> to base map&#39;s label collision only
 * works on vector maps.
 * @type {!google.maps.CollisionBehavior|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.collisionBehavior;

/**
 * The DOM Element backing the visual of an <code>AdvancedMarkerElement</code>.
 * <p><strong>Note</strong>: <code>AdvancedMarkerElement</code> does not clone
 * the passed-in DOM element. Once the DOM element is passed to an
 * <code>AdvancedMarkerElement</code>, passing the same DOM element to another
 * <code>AdvancedMarkerElement</code> will move the DOM element and cause the
 * previous <code>AdvancedMarkerElement</code> to look empty.
 * @default {@link google.maps.marker.PinElement}
 * @type {!Node|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.content;

/**
 * If <code>true</code>, the <code>AdvancedMarkerElement</code> will be
 * clickable and trigger the <code>gmp-click</code> event, and will be
 * interactive for accessibility purposes (e.g. allowing keyboard navigation via
 * arrow keys).
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.gmpClickable;

/**
 * If <code>true</code>, the <code>AdvancedMarkerElement</code> can be dragged.
 * <p><strong>Note</strong>: <code>AdvancedMarkerElement</code> with altitude is
 * not draggable.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.gmpDraggable;

/**
 * Map on which to display the <code>AdvancedMarkerElement</code>. The map is
 * required to display the <code>AdvancedMarkerElement</code> and can be
 * provided by setting {@link google.maps.marker.AdvancedMarkerElement.map} if
 * not provided at the construction.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.map;

/**
 * Sets the <code>AdvancedMarkerElement</code>&#39;s position. An
 * <code>AdvancedMarkerElement</code> may be constructed without a position, but
 * will not be displayed until its position is provided - for example, by a
 * user&#39;s actions or choices. An <code>AdvancedMarkerElement</code>&#39;s
 * position can be provided by setting {@link
 * google.maps.marker.AdvancedMarkerElement.position} if not provided at the
 * construction. <p><strong>Note</strong>: <code>AdvancedMarkerElement</code>
 * with altitude is only supported on vector maps.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.position;

/**
 * Rollover text. If provided, an accessibility text (e.g. for use with screen
 * readers) will be added to the <code>AdvancedMarkerElement</code> with the
 * provided value.
 * @type {string|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.title;

/**
 * All <code>AdvancedMarkerElement</code>s are displayed on the map in order of
 * their zIndex, with higher values displaying in front of
 * <code>AdvancedMarkerElement</code>s with lower values. By default,
 * <code>AdvancedMarkerElement</code>s are displayed according to their vertical
 * position on screen, with lower <code>AdvancedMarkerElement</code>s appearing
 * in front of <code>AdvancedMarkerElement</code>s farther up the screen. Note
 * that <code>zIndex</code> is also used to help determine relative priority
 * between {@link
 * google.maps.CollisionBehavior.OPTIONAL_AND_HIDES_LOWER_PRIORITY} Advanced
 * Markers. A higher <code>zIndex</code> value indicates higher priority.
 * @type {number|null|undefined}
 */
google.maps.marker.AdvancedMarkerElementOptions.prototype.zIndex;

/**
 * A <code>PinElement</code> represents a DOM element that consists of a shape
 * and a glyph. The shape has the same balloon style as seen in the
 * default {@link google.maps.marker.AdvancedMarkerElement} or {@link
 * google.maps.maps3d.Marker3DElement}. The glyph is an optional DOM element
 * displayed in the balloon shape. A <code>PinElement</code> may have a
 * different aspect ratio depending on its {@link
 * google.maps.marker.PinElement.scale}.<br> <br>
 *
 * Access by calling `const {PinElement} = await
 * google.maps.importLibrary("marker")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.marker.PinElementOptions=} options
 * @implements {google.maps.marker.PinElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.marker.PinElement = function(options) {};

/**
 * See {@link google.maps.marker.PinElementOptions.background}.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElement.prototype.background;

/**
 * See {@link google.maps.marker.PinElementOptions.borderColor}.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElement.prototype.borderColor;

/**
 * See {@link google.maps.marker.PinElementOptions.glyphColor}.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElement.prototype.glyphColor;

/**
 * See {@link google.maps.marker.PinElementOptions.glyphSrc}.
 * @type {!URL|string|null|undefined}
 */
google.maps.marker.PinElement.prototype.glyphSrc;

/**
 * See {@link google.maps.marker.PinElementOptions.glyphText}.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElement.prototype.glyphText;

/**
 * See {@link google.maps.marker.PinElementOptions.scale}.
 * @type {number|null|undefined}
 */
google.maps.marker.PinElement.prototype.scale;

/**
 * This field is read-only. The DOM Element backing the view.
 * @type {!HTMLElement}
 * @deprecated Use the PinElement directly.
 */
google.maps.marker.PinElement.prototype.element;

/**
 * See {@link google.maps.marker.PinElementOptions.glyph}.
 * @type {string|!Element|!URL|null|undefined}
 * @deprecated Use {@link google.maps.marker.PinElementOptions.glyphText}
 *     or {@link google.maps.marker.PinElementOptions.glyphSrc} instead.
 */
google.maps.marker.PinElement.prototype.glyph;



/**
 * Options for creating a {@link google.maps.marker.PinElement}.
 * @record
 */
google.maps.marker.PinElementOptions = function() {};

/**
 * The background color of the pin shape. Supports any CSS <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value">color
 * value</a>.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElementOptions.prototype.background;

/**
 * The border color of the pin shape. Supports any CSS <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value">color
 * value</a>.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElementOptions.prototype.borderColor;

/**
 * The color of the glyph. Supports any CSS <a
 * href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value">color
 * value</a>.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElementOptions.prototype.glyphColor;

/**
 * The source of the glyph image to be displayed in the pin.
 * @type {!URL|string|null|undefined}
 */
google.maps.marker.PinElementOptions.prototype.glyphSrc;

/**
 * The text displayed in the pin.
 * @type {string|null|undefined}
 */
google.maps.marker.PinElementOptions.prototype.glyphText;

/**
 * The scale of the pin.
 * @default <code>1</code>
 * @type {number|null|undefined}
 */
google.maps.marker.PinElementOptions.prototype.scale;

/**
 * The DOM element displayed in the pin.
 * @type {string|!Element|!URL|null|undefined}
 * @deprecated Use {@link google.maps.marker.PinElementOptions.glyphText}
 *     or {@link google.maps.marker.PinElementOptions.glyphSrc} instead.
 */
google.maps.marker.PinElementOptions.prototype.glyph;

/**
 * @const
 */
google.maps.places = {};

/**
 *
 * Access by calling `const {AccessibilityOptions} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.AccessibilityOptions = function() {};

/**
 * Whether a place has a wheelchair accessible entrance. Returns &#39;true&#39;
 * or &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value
 * is unknown.
 * @type {boolean|null}
 */
google.maps.places.AccessibilityOptions.prototype
    .hasWheelchairAccessibleEntrance;

/**
 * Whether a place has wheelchair accessible parking. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.AccessibilityOptions.prototype
    .hasWheelchairAccessibleParking;

/**
 * Whether a place has a wheelchair accessible restroom. Returns &#39;true&#39;
 * or &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value
 * is unknown.
 * @type {boolean|null}
 */
google.maps.places.AccessibilityOptions.prototype
    .hasWheelchairAccessibleRestroom;

/**
 * Whether a place offers wheelchair accessible seating. Returns &#39;true&#39;
 * or &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value
 * is unknown.
 * @type {boolean|null}
 */
google.maps.places.AccessibilityOptions.prototype
    .hasWheelchairAccessibleSeating;

/**
 * Address component for the Place&#39;s location.
 *
 * Access by calling `const {AddressComponent} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.AddressComponent = function() {};

/**
 * The full text of the address component.
 * @type {string|null}
 */
google.maps.places.AddressComponent.prototype.longText;

/**
 * The abbreviated, short text of the given address component.
 * @type {string|null}
 */
google.maps.places.AddressComponent.prototype.shortText;

/**
 * An array of strings denoting the type of this address component. A list of
 * valid types can be found <a
 * href="https://developers.google.com/maps/documentation/javascript/geocoding#GeocodingAddressTypes">here</a>.
 * @type {!Array<string>}
 */
google.maps.places.AddressComponent.prototype.types;

/**
 * Information about a data provider for a Place.
 *
 * Access by calling `const {Attribution} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.Attribution = function() {};

/**
 * Name of the Place&#39;s data provider.
 * @type {string|null}
 */
google.maps.places.Attribution.prototype.provider;

/**
 * URI to the Place&#39;s data provider.
 * @type {string|null}
 */
google.maps.places.Attribution.prototype.providerURI;

/**
 * Color options for Google Maps attribution text. Attribution may be customized
 * to use any of these colors.
 *
 * Access by calling `const {AttributionColor} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.AttributionColor = {
  /**
   * Black attribution text.
   */
  BLACK: 'BLACK',
  /**
   * Gray attribution text.
   */
  GRAY: 'GRAY',
  /**
   * White attribution text.
   */
  WHITE: 'WHITE',
};

/**
 * Information about the author of user-generated content.
 *
 * Access by calling `const {AuthorAttribution} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.AuthorAttribution = function() {};

/**
 * Author&#39;s name for this result.
 * @type {string}
 */
google.maps.places.AuthorAttribution.prototype.displayName;

/**
 * Author&#39;s photo URI for this result. This may not always be available.
 * @type {string|null}
 */
google.maps.places.AuthorAttribution.prototype.photoURI;

/**
 * Author&#39;s profile URI for this result.
 * @type {string|null}
 */
google.maps.places.AuthorAttribution.prototype.uri;

/**
 * A widget that provides Place predictions based on a user&#39;s text input. It
 * attaches to an input element of type <code>text</code>, and listens for text
 * entry in that field. The list of predictions is presented as a drop-down
 * list, and is updated as text is entered.
 *
 * Access by calling `const {Autocomplete} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!HTMLInputElement} inputField The <code>&lt;input&gt;</code> text
 *     field to which the <code>Autocomplete</code> should be attached.
 * @param {?google.maps.places.AutocompleteOptions=} opts Options.
 * @extends {google.maps.MVCObject}
 * @constructor
 * @deprecated As of March 1st, 2025, google.maps.places.Autocomplete is not
 *     available to new customers. Please use {@link
 *     google.maps.places.PlaceAutocompleteElement} instead. At this time,
 *     google.maps.places.Autocomplete is not scheduled to be discontinued,
 *     but {@link google.maps.places.PlaceAutocompleteElement} is recommended
 *     over google.maps.places.Autocomplete. While
 *     google.maps.places.Autocomplete will continue to receive bug fixes for
 *     any major regressions, existing bugs in google.maps.places.Autocomplete
 *     will not be addressed. At least 12 months notice will be given before
 *     support is discontinued. Please see <a
 *     href="https://developers.google.com/maps/legacy">https://developers.google.com/maps/legacy</a>
 *     for additional details and <a
 *     href="https://developers.google.com/maps/documentation/javascript/places-migration-overview">https://developers.google.com/maps/documentation/javascript/places-migration-overview</a>
 *     for the migration guide.
 */
google.maps.places.Autocomplete = function(inputField, opts) {};

/**
 * Returns the bounds to which predictions are biased.
 * @return {!google.maps.LatLngBounds|undefined} The biasing bounds.
 */
google.maps.places.Autocomplete.prototype.getBounds = function() {};

/**
 * Returns the fields to be included for the Place in the details response when
 * the details are successfully retrieved. For a list of fields see {@link
 * google.maps.places.PlaceResult}.
 * @return {!Array<string>|undefined}
 */
google.maps.places.Autocomplete.prototype.getFields = function() {};

/**
 * Returns the details of the Place selected by user if the details were
 * successfully retrieved. Otherwise returns a stub Place object, with the
 * <code>name</code> property set to the current value of the input field.
 * @return {!google.maps.places.PlaceResult} The Place selected by the user.
 */
google.maps.places.Autocomplete.prototype.getPlace = function() {};

/**
 * Sets the preferred area within which to return Place results. Results are
 * biased towards, but not restricted to, this area.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 *     bounds The biasing bounds.
 * @return {undefined}
 */
google.maps.places.Autocomplete.prototype.setBounds = function(bounds) {};

/**
 * Sets the component restrictions. Component restrictions are used to restrict
 * predictions to only those within the parent component. For example, the
 * country.
 * @param {?google.maps.places.ComponentRestrictions} restrictions The
 *     restrictions to use.
 * @return {undefined}
 */
google.maps.places.Autocomplete.prototype.setComponentRestrictions = function(
    restrictions) {};

/**
 * Sets the fields to be included for the Place in the details response when the
 * details are successfully retrieved. For a list of fields see {@link
 * google.maps.places.PlaceResult}.
 * @param {!Array<string>|undefined} fields
 * @return {undefined}
 */
google.maps.places.Autocomplete.prototype.setFields = function(fields) {};

/**
 * @param {?google.maps.places.AutocompleteOptions} options
 * @return {undefined}
 */
google.maps.places.Autocomplete.prototype.setOptions = function(options) {};

/**
 * Sets the types of predictions to be returned. For supported types, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/places-autocomplete#constrain-place-types">
 * developer&#39;s guide</a>. If no types are specified, all types will be
 * returned.
 * @param {?Array<string>} types The types of predictions to be included.
 * @return {undefined}
 */
google.maps.places.Autocomplete.prototype.setTypes = function(types) {};

/**
 * The options that can be set on an <code>Autocomplete</code> object.
 * @record
 */
google.maps.places.AutocompleteOptions = function() {};

/**
 * The area in which to search for places.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 */
google.maps.places.AutocompleteOptions.prototype.bounds;

/**
 * The component restrictions. Component restrictions are used to restrict
 * predictions to only those within the parent component. For example, the
 * country.
 * @type {!google.maps.places.ComponentRestrictions|undefined}
 */
google.maps.places.AutocompleteOptions.prototype.componentRestrictions;

/**
 * Fields to be included for the Place in the details response when the details
 * are successfully retrieved, <a
 * href="https://developers.google.com/maps/billing/understanding-cost-of-use#places-product">which
 * will be billed for</a>. If <code>[&#39;ALL&#39;]</code> is passed in, all
 * available fields will be returned and billed for (this is not recommended for
 * production deployments). For a list of fields see {@link
 * google.maps.places.PlaceResult}. Nested fields can be specified with
 * dot-paths (for example, <code>"geometry.location"</code>). The default is
 * <code>[&#39;ALL&#39;]</code>.
 * @type {!Array<string>|undefined}
 */
google.maps.places.AutocompleteOptions.prototype.fields;

/**
 * A boolean value, indicating that the Autocomplete widget should only return
 * those places that are inside the bounds of the Autocomplete widget at the
 * time the query is sent. Setting strictBounds to <code>false</code> (which is
 * the default) will make the results biased towards, but not restricted to,
 * places contained within the bounds.
 * @type {boolean|undefined}
 */
google.maps.places.AutocompleteOptions.prototype.strictBounds;

/**
 * The types of predictions to be returned. For supported types, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/places-autocomplete#constrain-place-types">
 * developer&#39;s guide</a>. If no types are specified, all types will be
 * returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.AutocompleteOptions.prototype.types;

/**
 * Whether to retrieve only Place IDs. The PlaceResult made available when the
 * place_changed event is fired will only have the place_id, types and name
 * fields, with the place_id, types and description returned by the Autocomplete
 * service. Disabled by default.
 * @type {boolean|undefined}
 * @deprecated <code>placeIdOnly</code> is deprecated as of January 15, 2019,
 *     and will be turned off on January 15, 2020. Use {@link
 *     google.maps.places.AutocompleteOptions.fields} instead: <code>fields:
 *     [&#39;place_id&#39;, &#39;name&#39;, &#39;types&#39;]</code>.
 */
google.maps.places.AutocompleteOptions.prototype.placeIdOnly;

/**
 * Represents a single autocomplete prediction.
 * @record
 */
google.maps.places.AutocompletePrediction = function() {};

/**
 * This is the unformatted version of the query suggested by the Places service.
 * @type {string}
 */
google.maps.places.AutocompletePrediction.prototype.description;

/**
 * The distance in meters of the place from the {@link
 * google.maps.places.AutocompletionRequest.origin}.
 * @type {number|undefined}
 */
google.maps.places.AutocompletePrediction.prototype.distance_meters;

/**
 * A set of substrings in the place&#39;s description that match elements in the
 * user&#39;s input, suitable for use in highlighting those substrings. Each
 * substring is identified by an offset and a length, expressed in unicode
 * characters.
 * @type {!Array<!google.maps.places.PredictionSubstring>}
 */
google.maps.places.AutocompletePrediction.prototype.matched_substrings;

/**
 * A place ID that can be used to retrieve details about this place using the
 * place details service (see {@link
 * google.maps.places.PlacesService.getDetails}).
 * @type {string}
 */
google.maps.places.AutocompletePrediction.prototype.place_id;

/**
 * Structured information about the place&#39;s description, divided into a main
 * text and a secondary text, including an array of matched substrings from the
 * autocomplete input, identified by an offset and a length, expressed in
 * unicode characters.
 * @type {!google.maps.places.StructuredFormatting}
 */
google.maps.places.AutocompletePrediction.prototype.structured_formatting;

/**
 * Information about individual terms in the above description, from most to
 * least specific. For example, &quot;Taco Bell&quot;, &quot;Willitis&quot;, and
 * &quot;CA&quot;.
 * @type {!Array<!google.maps.places.PredictionTerm>}
 */
google.maps.places.AutocompletePrediction.prototype.terms;

/**
 * An array of types that the prediction belongs to, for example
 * <code>'establishment'</code> or <code>'geocode'</code>.
 * @type {!Array<string>}
 */
google.maps.places.AutocompletePrediction.prototype.types;

/**
 * Request interface for {@link
 * google.maps.places.AutocompleteSuggestion.fetchAutocompleteSuggestions}.
 * @record
 */
google.maps.places.AutocompleteRequest = function() {};

/**
 * Included primary <a
 * href="https://developers.google.com/maps/documentation/javascript/place-types">Place
 * type</a> (for example, &quot;restaurant&quot; or &quot;gas_station&quot;).
 * <br/><br/> A Place is only returned if its primary type is included in this
 * list. Up to 5 values can be specified. If no types are specified, all Place
 * types are returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.includedPrimaryTypes;

/**
 * Only include results in the specified regions, specified as up to 15 CLDR
 * two-character region codes. An empty set will not restrict the results. If
 * both <code>locationRestriction</code> and <code>includedRegionCodes</code>
 * are set, the results will be located in the area of intersection.
 * @type {!Array<string>|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.includedRegionCodes;

/**
 * The text string on which to search.
 * @type {string}
 */
google.maps.places.AutocompleteRequest.prototype.input;

/**
 * A zero-based Unicode character offset of <code>input</code> indicating the
 * cursor position in <code>input</code>. The cursor position may influence what
 * predictions are returned. If not specified, defaults to the length of
 * <code>input</code>.
 * @type {number|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.inputOffset;

/**
 * The language in which to return results. Will default to the browser&#39;s
 * language preference. The results may be in mixed languages if the language
 * used in <code>input</code> is different from <code>language</code>, or if the
 * returned Place does not have a translation from the local language to
 * <code>language</code>.
 * @type {string|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.language;

/**
 * Bias results to a specified location. <br/><br/> At most one of
 * <code>locationBias</code> or <code>locationRestriction</code> should be set.
 * If neither are set, the results will be biased by IP address, meaning the IP
 * address will be mapped to an imprecise location and used as a biasing signal.
 * @type {!google.maps.places.LocationBias|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.locationBias;

/**
 * Restrict results to a specified location. <br/><br/> At most one of
 * <code>locationBias</code> or <code>locationRestriction</code> should be set.
 * If neither are set, the results will be biased by IP address, meaning the IP
 * address will be mapped to an imprecise location and used as a biasing signal.
 * @type {!google.maps.places.LocationRestriction|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.locationRestriction;

/**
 * The origin point from which to calculate geodesic distance to the destination
 * (returned as {@link google.maps.places.PlacePrediction.distanceMeters}). If
 * this value is omitted, geodesic distance will not be returned.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.origin;

/**
 * The region code, specified as a CLDR two-character region code. This affects
 * address formatting, result ranking, and may influence what results are
 * returned. This does not restrict results to the specified region.
 * @type {string|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.region;

/**
 * A token which identifies an Autocomplete session for billing purposes.
 * Generate a new session token via {@link
 * google.maps.places.AutocompleteSessionToken}. <br/><br/> The session begins
 * when the user starts typing a query, and concludes when they select a place
 * and call {@link google.maps.places.Place.fetchFields}. Each session can have
 * multiple queries, followed by one <code>fetchFields</code> call. The
 * credentials used for each request within a session must belong to the same
 * Google Cloud Console project. Once a session has concluded, the token is no
 * longer valid; your app must generate a fresh token for each session. If the
 * <code>sessionToken</code> parameter is omitted, or if you reuse a session
 * token, the session is charged as if no session token was provided (each
 * request is billed separately). <br/><br/> When a session token is provided in
 * the request to {@link
 * google.maps.places.AutocompleteSuggestion.fetchAutocompleteSuggestions}, the
 * same token will automatically be included in the first call to fetchFields on
 * a {@link google.maps.places.Place} returned by calling {@link
 * google.maps.places.PlacePrediction.toPlace} on one of the resulting {@link
 * google.maps.places.AutocompleteSuggestion}s. <br/><br/> We recommend the
 * following guidelines: <ul><li>Use session tokens for all Place Autocomplete
 * calls.</li> <li>Generate a fresh token for each session.</li> <li>Be sure to
 * pass a unique session token for each new session. Using the same token for
 * more than one session will result in each request being billed
 * individually.</li> </ul>
 * @type {!google.maps.places.AutocompleteSessionToken|undefined}
 */
google.maps.places.AutocompleteRequest.prototype.sessionToken;

/**
 * An Autocomplete response returned by the call to {@link
 * google.maps.places.AutocompleteService.getPlacePredictions} containing a list
 * of {@link google.maps.places.AutocompletePrediction}s.
 * @record
 */
google.maps.places.AutocompleteResponse = function() {};

/**
 * The list of {@link google.maps.places.AutocompletePrediction}s.
 * @type {!Array<!google.maps.places.AutocompletePrediction>}
 */
google.maps.places.AutocompleteResponse.prototype.predictions;

/**
 * Contains methods related to retrieving Autocomplete predictions.
 *
 * Access by calling `const {AutocompleteService} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 * @deprecated As of March 1st, 2025, google.maps.places.AutocompleteService is
 *     not available to new customers. Please use {@link
 *     google.maps.places.AutocompleteSuggestion} instead. At this time,
 *     google.maps.places.AutocompleteService is not scheduled to be
 *     discontinued, but {@link google.maps.places.AutocompleteSuggestion} is
 *     recommended over google.maps.places.AutocompleteService. While
 *     google.maps.places.AutocompleteService will continue to receive bug fixes
 *     for any major regressions, existing bugs in
 *     google.maps.places.AutocompleteService will not be addressed. At least 12
 *     months notice will be given before support is discontinued. Please see <a
 *     href="https://developers.google.com/maps/legacy">https://developers.google.com/maps/legacy</a>
 *     for additional details and <a
 *     href="https://developers.google.com/maps/documentation/javascript/places-migration-overview">https://developers.google.com/maps/documentation/javascript/places-migration-overview</a>
 *     for the migration guide.
 */
google.maps.places.AutocompleteService = function() {};

/**
 * Retrieves place autocomplete predictions based on the supplied autocomplete
 * request.
 * @param {!google.maps.places.AutocompletionRequest} request The autocompletion
 *     request.
 * @param {(function(?Array<!google.maps.places.AutocompletePrediction>,
 *     !google.maps.places.PlacesServiceStatus): void)=} callback A callback
 *     accepting an array of AutocompletePrediction objects and a
 *     PlacesServiceStatus value as argument.
 * @return {!Promise<!google.maps.places.AutocompleteResponse>}
 */
google.maps.places.AutocompleteService.prototype.getPlacePredictions = function(
    request, callback) {};

/**
 * Retrieves query autocomplete predictions based on the supplied query
 * autocomplete request.
 * @param {!google.maps.places.QueryAutocompletionRequest} request The query
 *     autocompletion request.
 * @param {function(?Array<!google.maps.places.QueryAutocompletePrediction>,
 *     !google.maps.places.PlacesServiceStatus): void} callback A callback
 *     accepting an array of QueryAutocompletePrediction objects and a
 *     PlacesServiceStatus value as argument.
 * @return {undefined}
 */
google.maps.places.AutocompleteService.prototype.getQueryPredictions = function(
    request, callback) {};

/**
 * Represents a session token used for tracking an autocomplete session.
 *
 * Access by calling `const {AutocompleteSessionToken} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.AutocompleteSessionToken = function() {};

/**
 * An Autocomplete suggestion result.
 *
 * Access by calling `const {AutocompleteSuggestion} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.AutocompleteSuggestion = function() {};

/**
 * Contains the human-readable name for the returned result. For establishment
 * results, this is usually the business name and address. <br/><br/> If
 * a {@link google.maps.places.AutocompleteRequest.sessionToken} was provided in
 * the AutocompleteRequest used to fetch this AutocompleteSuggestion, the same
 * token will automatically be included when calling {@link
 * google.maps.places.Place.fetchFields} for the first time on the {@link
 * google.maps.places.Place} returned by a call to {@link
 * google.maps.places.PlacePrediction.toPlace}.
 * @type {!google.maps.places.PlacePrediction|null}
 */
google.maps.places.AutocompleteSuggestion.prototype.placePrediction;

/**
 * Fetches a list of AutocompleteSuggestions. <br/><br/> If a {@link
 * google.maps.places.AutocompleteRequest.sessionToken} is provided in the
 * request, then that session token will automatically be included when
 * calling {@link google.maps.places.Place.fetchFields} for the first time, on
 * each {@link google.maps.places.Place} returned by {@link
 * google.maps.places.PlacePrediction.toPlace} on the resulting {@link
 * google.maps.places.PlacePrediction}s.
 * @param {!google.maps.places.AutocompleteRequest} autocompleteRequest
 * @return {!Promise<!{suggestions:!Array<!google.maps.places.AutocompleteSuggestion>}>}
 */
google.maps.places.AutocompleteSuggestion.fetchAutocompleteSuggestions =
    function(autocompleteRequest) {};

/**
 * An Autocompletion request to be sent to {@link
 * google.maps.places.AutocompleteService.getPlacePredictions}.
 * @record
 */
google.maps.places.AutocompletionRequest = function() {};

/**
 * The component restrictions. Component restrictions are used to restrict
 * predictions to only those within the parent component. For example, the
 * country.
 * @type {!google.maps.places.ComponentRestrictions|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.componentRestrictions;

/**
 * The user entered input string.
 * @type {string}
 */
google.maps.places.AutocompletionRequest.prototype.input;

/**
 * A language identifier for the language in which the results should be
 * returned, if possible. Results in the selected language may be given a higher
 * ranking, but suggestions are not restricted to this language. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.language;

/**
 * A soft boundary or hint to use when searching for places.
 * @type {!google.maps.places.LocationBias|null|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.locationBias;

/**
 * Bounds to constrain search results.
 * @type {!google.maps.places.LocationRestriction|null|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.locationRestriction;

/**
 * The character position in the input term at which the service uses text for
 * predictions (the position of the cursor in the input field).
 * @type {number|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.offset;

/**
 * The location where {@link
 * google.maps.places.AutocompletePrediction.distance_meters} is calculated
 * from.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.origin;

/**
 * A region code which is used for result formatting and for result filtering.
 * It does not restrict the suggestions to this country. The region code accepts
 * a <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.region;

/**
 * Unique reference used to bundle individual requests into sessions.
 * @type {!google.maps.places.AutocompleteSessionToken|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.sessionToken;

/**
 * The types of predictions to be returned. For supported types, see the <a
 * href="https://developers.google.com/maps/documentation/javascript/places-autocomplete#constrain-place-types">
 * developer&#39;s guide</a>. If no types are specified, all types will be
 * returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.AutocompletionRequest.prototype.types;

/**
 * Bounds for prediction biasing. Predictions will be biased towards, but not
 * restricted to, the given <code>bounds</code>. Both <code>location</code> and
 * <code>radius</code> will be ignored if <code>bounds</code> is set.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 * @deprecated <code>bounds</code> is deprecated as of May 2023. Use {@link
 *     google.maps.places.AutocompletionRequest.locationBias} and {@link
 *     google.maps.places.AutocompletionRequest.locationRestriction} instead.
 */
google.maps.places.AutocompletionRequest.prototype.bounds;

/**
 * Location for prediction biasing. Predictions will be biased towards the given
 * <code>location</code> and <code>radius</code>. Alternatively,
 * <code>bounds</code> can be used.
 * @type {!google.maps.LatLng|undefined}
 * @deprecated <code>location</code> is deprecated as of May 2023. Use {@link
 *     google.maps.places.AutocompletionRequest.locationBias} and {@link
 *     google.maps.places.AutocompletionRequest.locationRestriction} instead.
 */
google.maps.places.AutocompletionRequest.prototype.location;

/**
 * The radius of the area used for prediction biasing. The <code>radius</code>
 * is specified in meters, and must always be accompanied by a
 * <code>location</code> property. Alternatively, <code>bounds</code> can be
 * used.
 * @type {number|undefined}
 * @deprecated <code>radius</code> is deprecated as of May 2023. Use {@link
 *     google.maps.places.AutocompletionRequest.locationBias} and {@link
 *     google.maps.places.AutocompletionRequest.locationRestriction} instead.
 */
google.maps.places.AutocompletionRequest.prototype.radius;

/**
 * BasicPlaceAutocompleteElement is an <code>HTMLElement</code> subclass which
 * provides a UI component for the Places Autocomplete API.
 *
 * Access by calling `const {BasicPlaceAutocompleteElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.BasicPlaceAutocompleteElementOptions} options
 * @implements {google.maps.places.BasicPlaceAutocompleteElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.BasicPlaceAutocompleteElement = function(options) {};

/**
 * Included primary <a
 * href="https://developers.google.com/maps/documentation/places/javascript/place-types">Place
 * type</a> (for example, &quot;restaurant&quot; or &quot;gas_station&quot;).
 * <br/><br/> A Place is only returned if its primary type is included in this
 * list. Up to 5 values can be specified. If no types are specified, all Place
 * types are returned.
 * @type {!Array<string>|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.includedPrimaryTypes;

/**
 * Only include results in the specified regions, specified as up to 15 CLDR
 * two-character region codes. An empty set will not restrict the results. If
 * both <code>locationRestriction</code> and <code>includedRegionCodes</code>
 * are set, the results will be located in the area of intersection.
 * @type {!Array<string>|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.includedRegionCodes;

/**
 * A soft boundary or hint to use when searching for places.
 * @type {!google.maps.places.LocationBias|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.locationBias;

/**
 * Bounds to constrain search results.
 * @type {!google.maps.places.LocationRestriction|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.locationRestriction;

/**
 * The name to be used for the input element. See <a
 * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name</a>
 * for details. Follows the same behavior as the name attribute for inputs. Note
 * that this is the name that will be used when a form is submitted. See <a
 * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form</a>
 * for details.
 * @type {string|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.name;

/**
 * The origin from which to calculate distance. If not specified, distance is
 * not calculated. The altitude, if given, is not used in the calculation.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.origin;

/**
 * A language identifier for the language in which the results should be
 * returned, if possible. Results in the selected language may be given a higher
 * ranking, but suggestions are not restricted to this language. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.requestedLanguage;

/**
 * A region code which is used for result formatting and for result filtering.
 * It does not restrict the suggestions to this country. The region code accepts
 * a <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.requestedRegion;

/**
 * The unit system used to display distances. If not specified, the unit system
 * is determined by requestedRegion.
 * @type {!google.maps.UnitSystem|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElement.prototype.unitSystem;



/**
 * Options for constructing a BasicPlaceAutocompleteElement.
 * @record
 */
google.maps.places.BasicPlaceAutocompleteElementOptions = function() {};

/**
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
    .includedPrimaryTypes;

/**
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
    .includedRegionCodes;

/**
 * @type {!google.maps.places.LocationBias|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.locationBias;

/**
 * @type {!google.maps.places.LocationRestriction|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
    .locationRestriction;

/**
 * @type {string|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.name;

/**
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.origin;

/**
 * @type {string|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
    .requestedLanguage;

/**
 * @type {string|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
    .requestedRegion;

/**
 * @type {!google.maps.UnitSystem|null|undefined}
 */
google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.unitSystem;

/**
 * The operational status of the Place, if it is a business, returned in a
 * PlaceResult (indicates whether the place is operational, or closed either
 * temporarily or permanently). Specify these by value, or the constant&#39;s
 * name (example: <code>&#39;OPERATIONAL&#39;</code> or
 * <code>google.maps.places.BusinessStatus.OPERATIONAL</code>).
 *
 * Access by calling `const {BusinessStatus} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.BusinessStatus = {
  /**
   * The business is closed permanently.
   */
  CLOSED_PERMANENTLY: 'CLOSED_PERMANENTLY',
  /**
   * The business is closed temporarily.
   */
  CLOSED_TEMPORARILY: 'CLOSED_TEMPORARILY',
  /**
   * The business is operating normally.
   */
  OPERATIONAL: 'OPERATIONAL',
};

/**
 * Defines the component restrictions that can be used with the autocomplete
 * service.
 * @record
 */
google.maps.places.ComponentRestrictions = function() {};

/**
 * Restricts predictions to the specified country (ISO 3166-1 Alpha-2 country
 * code, case insensitive). For example, <code>'us'</code>, <code>'br'</code>,
 * or <code>'au'</code>. You can provide a single one, or an array of up to five
 * country code strings.
 * @type {string|!Array<string>|null}
 */
google.maps.places.ComponentRestrictions.prototype.country;

/**
 * EV charging information, aggregated for connectors of the same type and the
 * same charge rate.
 *
 * Access by calling `const {ConnectorAggregation} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.ConnectorAggregation = function() {};

/**
 * The time when the connector availability information in this aggregation was
 * last updated.
 * @type {!Date|null}
 */
google.maps.places.ConnectorAggregation.prototype.availabilityLastUpdateTime;

/**
 * Number of connectors in this aggregation that are currently available.
 * @type {number|null}
 */
google.maps.places.ConnectorAggregation.prototype.availableCount;

/**
 * Number of connectors in this aggregation.
 * @type {number}
 */
google.maps.places.ConnectorAggregation.prototype.count;

/**
 * The static max charging rate in kw of each connector of the aggregation.
 * @type {number}
 */
google.maps.places.ConnectorAggregation.prototype.maxChargeRateKw;

/**
 * Number of connectors in this aggregation that are currently out of service.
 * @type {number|null}
 */
google.maps.places.ConnectorAggregation.prototype.outOfServiceCount;

/**
 * The connector type of this aggregation.
 * @type {!google.maps.places.EVConnectorType|null}
 */
google.maps.places.ConnectorAggregation.prototype.type;

/**
 * The consumer alert message. All text are rendered in the language specified
 * by the <code>languageCode</code> field.
 *
 * Access by calling `const {ConsumerAlert} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.ConsumerAlert = function() {};

/**
 * The details of the consumer alert message.
 * @type {!google.maps.places.ConsumerAlertDetails|null}
 */
google.maps.places.ConsumerAlert.prototype.details;

/**
 * The language code of the consumer alert message.
 * @type {string|null}
 */
google.maps.places.ConsumerAlert.prototype.languageCode;

/**
 * The overview of the consumer alert message.
 * @type {string|null}
 */
google.maps.places.ConsumerAlert.prototype.overview;

/**
 * Details of the consumer alert message.
 *
 * Access by calling `const {ConsumerAlertDetails} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.ConsumerAlertDetails = function() {};

/**
 * The title to show for a link to provide more information.
 * @type {string|null}
 */
google.maps.places.ConsumerAlertDetails.prototype.aboutLinkTitle;

/**
 * The URI for a link to provide more information.
 * @type {string|null}
 */
google.maps.places.ConsumerAlertDetails.prototype.aboutLinkURI;

/**
 * The description of the consumer alert message.
 * @type {string|null}
 */
google.maps.places.ConsumerAlertDetails.prototype.description;

/**
 * The title to show together with the detailed description.
 * @type {string|null}
 */
google.maps.places.ConsumerAlertDetails.prototype.title;

/**
 * ContentBlock describes the content of a summary and where it came from.
 *
 * Access by calling `const {ContentBlock} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.ContentBlock = function() {};

/**
 * Content related to the topic.
 * @type {string|null}
 */
google.maps.places.ContentBlock.prototype.content;

/**
 * Language code of the content.
 * @type {string|null}
 */
google.maps.places.ContentBlock.prototype.contentLanguageCode;

/**
 * A list of {@link google.maps.places.Place}s referenced. When first retrieved,
 * each Place only contains a place ID in the <code>id</code> field.
 * @type {!Array<!google.maps.places.Place>}
 */
google.maps.places.ContentBlock.prototype.referencedPlaces;

/**
 * AI-generated summary of amenities near the EV charging station. This only
 * applies to places with type <code>electric_vehicle_charging_station</code>.
 *
 * Access by calling `const {EVChargeAmenitySummary} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.EVChargeAmenitySummary = function() {};

/**
 * A summary of the nearby coffee options.
 * @type {!google.maps.places.ContentBlock|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.coffee;

/**
 * The text for the disclosure relating to this summary.
 * @type {string|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.disclosureText;

/**
 * The language code of the disclosure text.
 * @type {string|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.disclosureTextLanguageCode;

/**
 * A URI to report a problem with the summary.
 * @type {string|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.flagContentURI;

/**
 * An overview of the available amenities.
 * @type {!google.maps.places.ContentBlock|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.overview;

/**
 * A summary of the nearby restaurants.
 * @type {!google.maps.places.ContentBlock|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.restaurant;

/**
 * A summary of nearby stores.
 * @type {!google.maps.places.ContentBlock|null}
 */
google.maps.places.EVChargeAmenitySummary.prototype.store;

/**
 * Information about the EV charging station hosted in the place.
 *
 * Access by calling `const {EVChargeOptions} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.EVChargeOptions = function() {};

/**
 * A list of EV charging connector aggregations that contain connectors of the
 * same type and same charge rate.
 * @type {!Array<!google.maps.places.ConnectorAggregation>}
 */
google.maps.places.EVChargeOptions.prototype.connectorAggregations;

/**
 * Number of connectors at this station. Because some ports can have multiple
 * connectors but only be able to charge one car at a time, the number of
 * connectors may be greater than the total number of cars which can charge
 * simultaneously.
 * @type {number}
 */
google.maps.places.EVChargeOptions.prototype.connectorCount;

/**
 * EV charging connector types.
 *
 * Access by calling `const {EVConnectorType} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.EVConnectorType = {
  /**
   * Combined Charging System (AC and DC). Based on SAE Type-1 J-1772 connector.
   */
  CCS_COMBO_1: 'CCS_COMBO_1',
  /**
   * Combined Charging System (AC and DC). Based on Type-2 Mennekes connector.
   */
  CCS_COMBO_2: 'CCS_COMBO_2',
  /**
   * CHAdeMO type connector.
   */
  CHADEMO: 'CHADEMO',
  /**
   * J1772 type 1 connector.
   */
  J1772: 'J1772',
  /**
   * The North American Charging System (NACS), standardized as SAE J3400.
   */
  NACS: 'NACS',
  /**
   * Other connector types.
   */
  OTHER: 'OTHER',
  /**
   * The generic TESLA connector. This is NACS in the North America but can be
   * non-NACS in other parts of the world (e.g. CCS Combo 2 (CCS2) or GB/T).
   * This value is less representative of an actual connector type, and more
   * represents the ability to charge a Tesla brand vehicle at a Tesla owned
   * charging station.
   */
  TESLA: 'TESLA',
  /**
   * IEC 62196 type 2 connector. Often referred to as MENNEKES.
   */
  TYPE_2: 'TYPE_2',
  /**
   * GB/T type corresponds to the GB/T standard in China. This type covers all
   * GB_T types.
   */
  UNSPECIFIED_GB_T: 'UNSPECIFIED_GB_T',
  /**
   * Unspecified wall outlet.
   */
  UNSPECIFIED_WALL_OUTLET: 'UNSPECIFIED_WALL_OUTLET',
};

/**
 * EV-related options that can be specified for a place search request.
 * @record
 */
google.maps.places.EVSearchOptions = function() {};

/**
 * The list of preferred EV connector types. A place that does not support any
 * of the listed connector types is filtered out.
 * @type {!Array<!google.maps.places.EVConnectorType>|undefined}
 */
google.maps.places.EVSearchOptions.prototype.connectorTypes;

/**
 * Minimum required charging rate in kilowatts. A place with a charging rate
 * less than the specified rate is filtered out.
 * @type {number|undefined}
 */
google.maps.places.EVSearchOptions.prototype.minimumChargingRateKw;

/**
 * Options for fetching Place fields.
 * @record
 */
google.maps.places.FetchFieldsRequest = function() {};

/**
 * List of fields to be fetched.
 * @type {!Array<string>}
 */
google.maps.places.FetchFieldsRequest.prototype.fields;

/**
 * A find place from text search request to be sent to {@link
 * google.maps.places.PlacesService.findPlaceFromPhoneNumber}.
 * @record
 */
google.maps.places.FindPlaceFromPhoneNumberRequest = function() {};

/**
 * Fields to be included in the response, <a
 * href="https://developers.google.com/maps/billing/understanding-cost-of-use#places-product">which
 * will be billed for</a>. If <code>[&#39;ALL&#39;]</code> is passed in, all
 * available fields will be returned and billed for (this is not recommended for
 * production deployments). For a list of fields see {@link
 * google.maps.places.PlaceResult}. Nested fields can be specified with
 * dot-paths (for example, <code>"geometry.location"</code>).
 * @type {!Array<string>}
 */
google.maps.places.FindPlaceFromPhoneNumberRequest.prototype.fields;

/**
 * A language identifier for the language in which names and addresses should be
 * returned, when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.FindPlaceFromPhoneNumberRequest.prototype.language;

/**
 * The bias used when searching for Place. The result will be biased towards,
 * but not restricted to, the given {@link google.maps.places.LocationBias}.
 * @type {!google.maps.places.LocationBias|undefined}
 */
google.maps.places.FindPlaceFromPhoneNumberRequest.prototype.locationBias;

/**
 * The phone number of the place to look up. Format must be <a
 * href="https://en.wikipedia.org/wiki/E.164">E.164</a>.
 * @type {string}
 */
google.maps.places.FindPlaceFromPhoneNumberRequest.prototype.phoneNumber;

/**
 * A find place from text search request to be sent to {@link
 * google.maps.places.PlacesService.findPlaceFromQuery}.
 * @record
 */
google.maps.places.FindPlaceFromQueryRequest = function() {};

/**
 * Fields to be included in the response, <a
 * href="https://developers.google.com/maps/billing/understanding-cost-of-use#places-product">which
 * will be billed for</a>. If <code>[&#39;ALL&#39;]</code> is passed in, all
 * available fields will be returned and billed for (this is not recommended for
 * production deployments). For a list of fields see {@link
 * google.maps.places.PlaceResult}. Nested fields can be specified with
 * dot-paths (for example, <code>"geometry.location"</code>).
 * @type {!Array<string>}
 */
google.maps.places.FindPlaceFromQueryRequest.prototype.fields;

/**
 * A language identifier for the language in which names and addresses should be
 * returned, when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.FindPlaceFromQueryRequest.prototype.language;

/**
 * The bias used when searching for Place. The result will be biased towards,
 * but not restricted to, the given {@link google.maps.places.LocationBias}.
 * @type {!google.maps.places.LocationBias|undefined}
 */
google.maps.places.FindPlaceFromQueryRequest.prototype.locationBias;

/**
 * The request&#39;s query. For example, the name or address of a place.
 * @type {string}
 */
google.maps.places.FindPlaceFromQueryRequest.prototype.query;

/**
 * Text representing a Place prediction. The text may be used as is or
 * formatted.
 *
 * Access by calling `const {FormattableText} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.FormattableText = function() {};

/**
 * A list of string ranges identifying where the input request matched in {@link
 * google.maps.places.FormattableText.text}. The ranges can be used to format
 * specific parts of <code>text</code>. The substrings may not be exact matches
 * of {@link google.maps.places.AutocompleteRequest.input} if the matching was
 * determined by criteria other than string matching (for example, spell
 * corrections or transliterations). These values are Unicode character offsets
 * of {@link google.maps.places.FormattableText.text}. The ranges are guaranteed
 * to be ordered in increasing offset values.
 * @type {!Array<!google.maps.places.StringRange>}
 */
google.maps.places.FormattableText.prototype.matches;

/**
 * Text that may be used as is or formatted with {@link
 * google.maps.places.FormattableText.matches}.
 * @type {string}
 */
google.maps.places.FormattableText.prototype.text;

/**
 * The most recent information about fuel options in a gas station. This
 * information is updated regularly.
 *
 * Access by calling `const {FuelOptions} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.FuelOptions = function() {};

/**
 * A list of fuel prices for each type of fuel this station has, one entry per
 * fuel type.
 * @type {!Array<!google.maps.places.FuelPrice>}
 */
google.maps.places.FuelOptions.prototype.fuelPrices;

/**
 * Fuel price information for a given type of fuel.
 *
 * Access by calling `const {FuelPrice} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.FuelPrice = function() {};

/**
 * The price of the fuel.
 * @type {!google.maps.places.Money|null}
 */
google.maps.places.FuelPrice.prototype.price;

/**
 * The type of fuel.
 * @type {!google.maps.places.FuelType|null}
 */
google.maps.places.FuelPrice.prototype.type;

/**
 * The time the fuel price was last updated.
 * @type {!Date|null}
 */
google.maps.places.FuelPrice.prototype.updateTime;

/**
 * Types of fuel.
 *
 * Access by calling `const {FuelType} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.FuelType = {
  /**
   * Bio-diesel.
   */
  BIO_DIESEL: 'BIO_DIESEL',
  /**
   * Diesel fuel.
   */
  DIESEL: 'DIESEL',
  /**
   * Diesel plus fuel.
   */
  DIESEL_PLUS: 'DIESEL_PLUS',
  /**
   * E 100.
   */
  E100: 'E100',
  /**
   * E 80.
   */
  E80: 'E80',
  /**
   * E 85.
   */
  E85: 'E85',
  /**
   * LPG.
   */
  LPG: 'LPG',
  /**
   * Methane.
   */
  METHANE: 'METHANE',
  /**
   * Midgrade.
   */
  MIDGRADE: 'MIDGRADE',
  /**
   * Premium.
   */
  PREMIUM: 'PREMIUM',
  /**
   * Regular unleaded.
   */
  REGULAR_UNLEADED: 'REGULAR_UNLEADED',
  /**
   * SP 100.
   */
  SP100: 'SP100',
  /**
   * SP 91.
   */
  SP91: 'SP91',
  /**
   * SP 91 E10.
   */
  SP91_E10: 'SP91_E10',
  /**
   * SP 92.
   */
  SP92: 'SP92',
  /**
   * SP 95.
   */
  SP95: 'SP95',
  /**
   * SP95 E10.
   */
  SP95_E10: 'SP95_E10',
  /**
   * SP 98.
   */
  SP98: 'SP98',
  /**
   * SP 99.
   */
  SP99: 'SP99',
  /**
   * Truck diesel.
   */
  TRUCK_DIESEL: 'TRUCK_DIESEL',
};

/**
 * AI-generated summary of the place.
 *
 * Access by calling `const {GenerativeSummary} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.GenerativeSummary = function() {};

/**
 * The text for the disclosure relating to this summary.
 * @type {string|null}
 */
google.maps.places.GenerativeSummary.prototype.disclosureText;

/**
 * The language code of the disclosure text.
 * @type {string|null}
 */
google.maps.places.GenerativeSummary.prototype.disclosureTextLanguageCode;

/**
 * A URI to report a problem with the summary.
 * @type {string|null}
 */
google.maps.places.GenerativeSummary.prototype.flagContentURI;

/**
 * The overview of the place.
 * @type {string|null}
 */
google.maps.places.GenerativeSummary.prototype.overview;

/**
 * The language code of the overview.
 * @type {string|null}
 */
google.maps.places.GenerativeSummary.prototype.overviewLanguageCode;

/**
 * Links to trigger different Google Maps actions.
 *
 * Access by calling `const {GoogleMapsLinks} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.GoogleMapsLinks = function() {};

/**
 * A link to show the directions to the place on Google Maps. The link only
 * populates the destination location and uses the default travel mode
 * <code>DRIVE</code>.
 * @type {string|null}
 */
google.maps.places.GoogleMapsLinks.prototype.directionsURI;

/**
 * A link to show the photos for the place on Google Maps.
 * @type {string|null}
 */
google.maps.places.GoogleMapsLinks.prototype.photosURI;

/**
 * A link to show the place on Google Maps.
 * @type {string|null}
 */
google.maps.places.GoogleMapsLinks.prototype.placeURI;

/**
 * A link to show the reviews for the place on Google Maps.
 * @type {string|null}
 */
google.maps.places.GoogleMapsLinks.prototype.reviewsURI;

/**
 * A link to write a review for the place on Google Maps.
 * @type {string|null}
 */
google.maps.places.GoogleMapsLinks.prototype.writeAReviewURI;

/**
 * @typedef {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|!google.maps.Circle|!google.maps.CircleLiteral|string}
 */
google.maps.places.LocationBias;

/**
 * @typedef {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral}
 */
google.maps.places.LocationRestriction;

/**
 * The preferred media size in cases where multiple sizes are supported, such as
 * the vertical {@link google.maps.places.PlaceSearchElement}.
 *
 * Access by calling `const {MediaSize} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.MediaSize = {
  /**
   * Large media size.
   */
  LARGE: 'LARGE',
  /**
   * Medium media size.
   */
  MEDIUM: 'MEDIUM',
  /**
   * Small media size.
   */
  SMALL: 'SMALL',
};

/**
 * A representation of an amount of money with its currency type.
 *
 * Access by calling `const {Money} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.Money = function() {};

/**
 * The three-letter currency code, defined in ISO 4217.
 * @type {string}
 */
google.maps.places.Money.prototype.currencyCode;

/**
 * Number of nano (10^-9) units of the amount.
 * @type {number}
 */
google.maps.places.Money.prototype.nanos;

/**
 * The whole units of the amount. For example, if {@link
 * google.maps.places.Money.currencyCode} is &quot;USD&quot;, then 1 unit is 1
 * US dollar.
 * @type {number}
 */
google.maps.places.Money.prototype.units;

/**
 * Returns a human-readable representation of the amount of money with its
 * currency symbol.
 * @return {string}
 */
google.maps.places.Money.prototype.toString = function() {};

/**
 * AI-generated summary of points of interest near the place.
 *
 * Access by calling `const {NeighborhoodSummary} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.NeighborhoodSummary = function() {};

/**
 * A detailed description of the neighborhood.
 * @type {!google.maps.places.ContentBlock|null}
 */
google.maps.places.NeighborhoodSummary.prototype.description;

/**
 * The text for the disclosure relating to this summary.
 * @type {string|null}
 */
google.maps.places.NeighborhoodSummary.prototype.disclosureText;

/**
 * The language code of the disclosure text.
 * @type {string|null}
 */
google.maps.places.NeighborhoodSummary.prototype.disclosureTextLanguageCode;

/**
 * A URI to report a problem with the summary.
 * @type {string|null}
 */
google.maps.places.NeighborhoodSummary.prototype.flagContentURI;

/**
 * An overview of the neighborhood.
 * @type {!google.maps.places.ContentBlock|null}
 */
google.maps.places.NeighborhoodSummary.prototype.overview;

/**
 * Information about business hours of a Place.
 *
 * Access by calling `const {OpeningHours} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.OpeningHours = function() {};

/**
 * Opening periods covering each day of the week, starting from Sunday, in
 * chronological order. Does not include days where the Place is not open.
 * @type {!Array<!google.maps.places.OpeningHoursPeriod>}
 */
google.maps.places.OpeningHours.prototype.periods;

/**
 * An array of seven strings representing the formatted opening hours for each
 * day of the week. The Places Service will format and localize the opening
 * hours appropriately for the current language. The ordering of the elements in
 * this array depends on the language. Some languages start the week on Monday,
 * while others start on Sunday.
 * @type {!Array<string>}
 */
google.maps.places.OpeningHours.prototype.weekdayDescriptions;

/**
 * A period where the Place is open.
 *
 * Access by calling `const {OpeningHoursPeriod} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.OpeningHoursPeriod = function() {};

/**
 * The closing time for the Place.
 * @type {!google.maps.places.OpeningHoursPoint|null}
 */
google.maps.places.OpeningHoursPeriod.prototype.close;

/**
 * The opening time for the Place.
 * @type {!google.maps.places.OpeningHoursPoint}
 */
google.maps.places.OpeningHoursPeriod.prototype.open;

/**
 * A point where the Place changes its opening status.
 *
 * Access by calling `const {OpeningHoursPoint} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.OpeningHoursPoint = function() {};

/**
 * The day of the week, as a number in the range [0, 6], starting on Sunday. For
 * example, 2 means Tuesday.
 * @type {number}
 */
google.maps.places.OpeningHoursPoint.prototype.day;

/**
 * The hour of the OpeningHoursPoint.time as a number, in the range [0, 23].
 * This will be reported in the Place’s time zone.
 * @type {number}
 */
google.maps.places.OpeningHoursPoint.prototype.hour;

/**
 * The minute of the OpeningHoursPoint.time as a number, in the range [0, 59].
 * This will be reported in the Place’s time zone.
 * @type {number}
 */
google.maps.places.OpeningHoursPoint.prototype.minute;

/**
 *
 * Access by calling `const {ParkingOptions} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.ParkingOptions = function() {};

/**
 * Whether a place offers free garage parking. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasFreeGarageParking;

/**
 * Whether a place offers free parking lots. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasFreeParkingLot;

/**
 * Whether a place offers free street parking. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasFreeStreetParking;

/**
 * Whether a place offers paid garage parking. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasPaidGarageParking;

/**
 * Whether a place offers paid parking lots. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasPaidParkingLot;

/**
 * Whether a place offers paid street parking. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasPaidStreetParking;

/**
 * Whether a place offers valet parking. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.ParkingOptions.prototype.hasValetParking;

/**
 *
 * Access by calling `const {PaymentOptions} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.PaymentOptions = function() {};

/**
 * Whether a place only accepts payment via cash. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.PaymentOptions.prototype.acceptsCashOnly;

/**
 * Whether a place accepts payment via credit card. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.PaymentOptions.prototype.acceptsCreditCards;

/**
 * Whether a place accepts payment via debit card. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.PaymentOptions.prototype.acceptsDebitCards;

/**
 * Whether a place accepts payment via NFC. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown.
 * @type {boolean|null}
 */
google.maps.places.PaymentOptions.prototype.acceptsNFC;

/**
 * Information about a photo of a Place.
 *
 * Access by calling `const {Photo} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.Photo = function() {};

/**
 * Attribution text to be displayed for this photo.
 * @type {!Array<!google.maps.places.AuthorAttribution>}
 */
google.maps.places.Photo.prototype.authorAttributions;

/**
 * A link where user can flag a problem with the photo.
 * @type {string|null}
 */
google.maps.places.Photo.prototype.flagContentURI;

/**
 * A link to show the photo on Google Maps.
 * @type {string|null}
 */
google.maps.places.Photo.prototype.googleMapsURI;

/**
 * The height of the photo in pixels.
 * @type {number}
 */
google.maps.places.Photo.prototype.heightPx;

/**
 * The width of the photo in pixels.
 * @type {number}
 */
google.maps.places.Photo.prototype.widthPx;

/**
 * Returns the image URL corresponding to the specified options.
 * @param {!google.maps.places.PhotoOptions=} options
 * @return {string}
 */
google.maps.places.Photo.prototype.getURI = function(options) {};

/**
 * Defines photo-requesting options.
 * @record
 */
google.maps.places.PhotoOptions = function() {};

/**
 * The maximum height in pixels of the returned image.
 * @type {number|null|undefined}
 */
google.maps.places.PhotoOptions.prototype.maxHeight;

/**
 * The maximum width in pixels of the returned image.
 * @type {number|null|undefined}
 */
google.maps.places.PhotoOptions.prototype.maxWidth;

/**
 *
 * Access by calling `const {Place} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceOptions} options
 * @implements {google.maps.places.PlaceOptions}
 * @constructor
 */
google.maps.places.Place = function(options) {};

/**
 * Accessibility options of this Place. <code>undefined</code> if the
 * accessibility options data have not been called for from the server.
 * @type {!google.maps.places.AccessibilityOptions|null|undefined}
 */
google.maps.places.Place.prototype.accessibilityOptions;

/**
 * The collection of address components for this Place’s location. Empty object
 * if there is no known address data. <code>undefined</code> if the address data
 * has not been called for from the server.
 * @type {!Array<!google.maps.places.AddressComponent>|undefined}
 */
google.maps.places.Place.prototype.addressComponents;

/**
 * The representation of the Place’s address in the <a
 * href="http://microformats.org/wiki/adr">adr microformat</a>.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.adrFormatAddress;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.allowsDogs;

/**
 * Data providers that must be shown for the Place.
 * @type {!Array<!google.maps.places.Attribution>|undefined}
 */
google.maps.places.Place.prototype.attributions;

/**
 * The location&#39;s operational status. <code>null</code> if there is no known
 * status. <code>undefined</code> if the status data has not been loaded from
 * the server.
 * @type {!google.maps.places.BusinessStatus|null|undefined}
 */
google.maps.places.Place.prototype.businessStatus;

/**
 * The consumer alert for this place.
 * @type {!google.maps.places.ConsumerAlert|null|undefined}
 */
google.maps.places.Place.prototype.consumerAlert;

/**
 * The location&#39;s display name. <code>null</code> if there is no name.
 * <code>undefined</code> if the name data has not been loaded from the server.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.displayName;

/**
 * The language of the location&#39;s display name. <code>null</code> if there
 * is no name. <code>undefined</code> if the name data has not been loaded from
 * the server.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.displayNameLanguageCode;

/**
 * The editorial summary for this place. <code>null</code> if there is no
 * editorial summary. <code>undefined</code> if this field has not yet been
 * requested.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.editorialSummary;

/**
 * The language of the editorial summary for this place. <code>null</code> if
 * there is no editorial summary. <code>undefined</code> if this field has not
 * yet been requested.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.editorialSummaryLanguageCode;

/**
 * The EVChargeAmenitySummary for this place.
 * @type {!google.maps.places.EVChargeAmenitySummary|null|undefined}
 */
google.maps.places.Place.prototype.evChargeAmenitySummary;

/**
 * EV Charge options provided by the place. <code>undefined</code> if the EV
 * charge options have not been called for from the server.
 * @type {!google.maps.places.EVChargeOptions|null|undefined}
 */
google.maps.places.Place.prototype.evChargeOptions;

/**
 * The location’s full address.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.formattedAddress;

/**
 * Fuel options provided by the place. <code>undefined</code> if the fuel
 * options have not been called for from the server.
 * @type {!google.maps.places.FuelOptions|null|undefined}
 */
google.maps.places.Place.prototype.fuelOptions;

/**
 * The GenerativeSummary for this place.
 * @type {!google.maps.places.GenerativeSummary|null|undefined}
 */
google.maps.places.Place.prototype.generativeSummary;

/**
 * Links to trigger different Google Maps actions.
 * @type {!google.maps.places.GoogleMapsLinks|null|undefined}
 */
google.maps.places.Place.prototype.googleMapsLinks;

/**
 * URL of the official Google page for this place. This is the Google-owned page
 * that contains the best available information about the Place.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.googleMapsURI;

/**
 * Whether a place has curbside pickup. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown. Returns &#39;undefined&#39; if this field has not yet been
 * requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasCurbsidePickup;

/**
 * Whether a place has delivery. Returns &#39;true&#39; or &#39;false&#39; if
 * the value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasDelivery;

/**
 * Whether a place has dine in. Returns &#39;true&#39; or &#39;false&#39; if the
 * value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasDineIn;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasLiveMusic;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasMenuForChildren;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasOutdoorSeating;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasRestroom;

/**
 * Whether a place has takeout. Returns &#39;true&#39; or &#39;false&#39; if the
 * value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.hasTakeout;

/**
 * The default HEX color code for the place&#39;s category.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.iconBackgroundColor;

/**
 * The unique place id.
 * @type {string}
 */
google.maps.places.Place.prototype.id;

/**
 * The Place’s phone number in international format. International format
 * includes the country code, and is prefixed with the plus (+) sign.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.internationalPhoneNumber;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.isGoodForChildren;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.isGoodForGroups;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.isGoodForWatchingSports;

/**
 * Whether a place is reservable. Returns &#39;true&#39; or &#39;false&#39; if
 * the value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.isReservable;

/**
 * The Place’s position.
 * @type {!google.maps.LatLng|null|undefined}
 */
google.maps.places.Place.prototype.location;

/**
 * The Place’s phone number, formatted according to the <a
 * href="http://en.wikipedia.org/wiki/Local_conventions_for_writing_telephone_numbers">number&#39;s
 * regional convention</a>.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.nationalPhoneNumber;

/**
 * The NeighborhoodSummary for this place.
 * @type {!google.maps.places.NeighborhoodSummary|null|undefined}
 */
google.maps.places.Place.prototype.neighborhoodSummary;

/**
 * Options of parking provided by the place. <code>undefined</code> if the
 * parking options data have not been called for from the server.
 * @type {!google.maps.places.ParkingOptions|null|undefined}
 */
google.maps.places.Place.prototype.parkingOptions;

/**
 * Payment options provided by the place. <code>undefined</code> if the payment
 * options data have not been called for from the server.
 * @type {!google.maps.places.PaymentOptions|null|undefined}
 */
google.maps.places.Place.prototype.paymentOptions;

/**
 * Photos of this Place. The collection will contain up to ten {@link
 * google.maps.places.Photo} objects.
 * @type {!Array<!google.maps.places.Photo>|undefined}
 */
google.maps.places.Place.prototype.photos;

/**
 * @type {!google.maps.places.PlusCode|null|undefined}
 */
google.maps.places.Place.prototype.plusCode;

/**
 * @type {!google.maps.places.PostalAddress|null|undefined}
 */
google.maps.places.Place.prototype.postalAddress;

/**
 * The price level of the Place. This property can return any of the following
 * values <ul style="list-style-type: none;"> <li><code>Free</code></li>
 * <li><code>Inexpensive</code></li> <li><code>Moderate</code></li>
 * <li><code>Expensive</code></li> <li><code>Very Expensive</code></li> </ul>
 * @type {!google.maps.places.PriceLevel|null|undefined}
 */
google.maps.places.Place.prototype.priceLevel;

/**
 * The price range for this Place. <code>endPrice</code> could be unset, which
 * indicates a range without upper bound (e.g. &quot;More than $100&quot;).
 * @type {!google.maps.places.PriceRange|null|undefined}
 */
google.maps.places.Place.prototype.priceRange;

/**
 * The location&#39;s primary type. <code>null</code> if there is no type.
 * <code>undefined</code> if the type data has not been loaded from the server.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.primaryType;

/**
 * The location&#39;s primary type display name. <code>null</code> if there is
 * no type. <code>undefined</code> if the type data has not been loaded from the
 * server.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.primaryTypeDisplayName;

/**
 * The language of the location&#39;s primary type display name.
 * <code>null</code> if there is no type. <code>undefined</code> if the type
 * data has not been loaded from the server.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.primaryTypeDisplayNameLanguageCode;

/**
 * A rating, between 1.0 to 5.0, based on user reviews of this Place.
 * @type {number|null|undefined}
 */
google.maps.places.Place.prototype.rating;

/**
 * @type {!google.maps.places.OpeningHours|null|undefined}
 */
google.maps.places.Place.prototype.regularOpeningHours;

/**
 * The requested language for this place.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.requestedLanguage;

/**
 * The requested region for this place.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.requestedRegion;

/**
 * The unique place resource name.
 * @type {string}
 */
google.maps.places.Place.prototype.resourceName;

/**
 * A list of reviews for this Place.
 * @type {!Array<!google.maps.places.Review>|undefined}
 */
google.maps.places.Place.prototype.reviews;

/**
 * The ReviewSummary for this place.
 * @type {!google.maps.places.ReviewSummary|null|undefined}
 */
google.maps.places.Place.prototype.reviewSummary;

/**
 * Whether a place serves beer. Returns &#39;true&#39; or &#39;false&#39; if the
 * value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesBeer;

/**
 * Whether a place serves breakfast. Returns &#39;true&#39; or &#39;false&#39;
 * if the value is known. Returns &#39;null&#39; if the value is unknown.
 * Returns &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesBreakfast;

/**
 * Whether a place serves brunch. Returns &#39;true&#39; or &#39;false&#39; if
 * the value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesBrunch;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesCocktails;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesCoffee;

/**
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesDessert;

/**
 * Whether a place serves dinner. Returns &#39;true&#39; or &#39;false&#39; if
 * the value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesDinner;

/**
 * Whether a place serves lunch. Returns &#39;true&#39; or &#39;false&#39; if
 * the value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesLunch;

/**
 * Whether a place serves vegetarian food. Returns &#39;true&#39; or
 * &#39;false&#39; if the value is known. Returns &#39;null&#39; if the value is
 * unknown. Returns &#39;undefined&#39; if this field has not yet been
 * requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesVegetarianFood;

/**
 * Whether a place serves wine. Returns &#39;true&#39; or &#39;false&#39; if the
 * value is known. Returns &#39;null&#39; if the value is unknown. Returns
 * &#39;undefined&#39; if this field has not yet been requested.
 * @type {boolean|null|undefined}
 */
google.maps.places.Place.prototype.servesWine;

/**
 * The location’s short address.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.shortFormattedAddress;

/**
 * The list of sub-destinations for this place. Sub-destinations are specific
 * places associated with a main place. These provide more specific destinations
 * for users who are searching within a large or complex place, like an airport,
 * national park, university, or stadium.
 * @type {!Array<!google.maps.places.Place>|undefined}
 */
google.maps.places.Place.prototype.subDestinations;

/**
 * URI to the svg image mask resource that can be used to represent a place’s
 * category.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.svgIconMaskURI;

/**
 * An array of <a
 * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">types
 * for this Place</a> (for example, <code>[&quot;political&quot;,
 * &quot;locality&quot;]</code> or <code>[&quot;restaurant&quot;,
 * &quot;establishment&quot;]</code>).
 * @type {!Array<string>|undefined}
 */
google.maps.places.Place.prototype.types;

/**
 * The number of user ratings which contributed to this Place’s {@link
 * google.maps.places.Place.rating}.
 * @type {number|null|undefined}
 */
google.maps.places.Place.prototype.userRatingCount;

/**
 * The offset from UTC of the Place’s current timezone, in minutes. For example,
 * Austrialian Eastern Standard Time (GMT+10) in daylight savings is 11 hours
 * ahead of UTC, so the <code>utc_offset_minutes</code> will be
 * <code>660</code>. For timezones behind UTC, the offset is negative. For
 * example, the <code>utc_offset_minutes</code> is <code>-60</code> for Cape
 * Verde.
 * @type {number|null|undefined}
 */
google.maps.places.Place.prototype.utcOffsetMinutes;

/**
 * The preferred viewport when displaying this Place on a map.
 * @type {!google.maps.LatLngBounds|null|undefined}
 */
google.maps.places.Place.prototype.viewport;

/**
 * The authoritative website for this Place, such as a business&#39; homepage.
 * @type {string|null|undefined}
 */
google.maps.places.Place.prototype.websiteURI;

/**
 * @type {!google.maps.places.OpeningHours|null|undefined}
 * @deprecated Use {@link google.maps.places.Place.regularOpeningHours} instead.
 */
google.maps.places.Place.prototype.openingHours;

/**
 * @type {boolean|null|undefined}
 * @deprecated This field was accidentally documented, but has never actually
 *     been populated.
 */
google.maps.places.Place.prototype.hasWiFi;

/**
 * Text query based place search.
 * @param {!google.maps.places.SearchByTextRequest} request
 * @return {!Promise<!{places:!Array<!google.maps.places.Place>}>}
 */
google.maps.places.Place.searchByText = function(request) {};

/**
 * Search for nearby places.
 * @param {!google.maps.places.SearchNearbyRequest} request
 * @return {!Promise<!{places:!Array<!google.maps.places.Place>}>}
 */
google.maps.places.Place.searchNearby = function(request) {};

/**
 * @param {!google.maps.places.FetchFieldsRequest} options
 * @return {!Promise<!{place:!google.maps.places.Place}>}
 */
google.maps.places.Place.prototype.fetchFields = function(options) {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * Calculates the <code>Date</code> for the next opening time using the
 * Place&#39;s {@link google.maps.places.Place.regularOpeningHours}. Returns
 * undefined if the data is insufficient to calculate the result, or this place
 * is not operational.
 * @param {!Date=} date
 * @return {!Promise<!Date|undefined>}
 */
google.maps.places.Place.prototype.getNextOpeningTime = function(date) {};

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * Check if the place is open at the given <code>Date</code>. Resolves with
 * <code>undefined</code> if the known data for the location is insufficient to
 * calculate this, e.g. if the opening hours are unregistered.
 * @param {!Date=} date Defaults to now.
 * @return {!Promise<boolean|undefined>}
 */
google.maps.places.Place.prototype.isOpen = function(date) {};

/**
 * @return {!Object} a JSON object with all the requested Place properties.
 */
google.maps.places.Place.prototype.toJSON = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a wheelchair icon if the place
 * has an accessible entrance. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-accessible-entrance-icon&gt;&lt;/gmp-place-accessible-entrance-icon&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceAccessibleEntranceIconElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceAccessibleEntranceIconElementOptions=}
 *     options
 * @implements {google.maps.places.PlaceAccessibleEntranceIconElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceAccessibleEntranceIconElement = function(options) {};



/**
 * Options for <code>PlaceAccessibleEntranceIconElement</code>.
 * @record
 */
google.maps.places.PlaceAccessibleEntranceIconElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a place&#39;s address. Append
 * this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-address&gt;&lt;/gmp-place-address&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceAddressElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceAddressElementOptions=} options
 * @implements {google.maps.places.PlaceAddressElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceAddressElement = function(options) {};



/**
 * Options for <code>PlaceAddressElement</code>.
 * @record
 */
google.maps.places.PlaceAddressElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show all available content. Append
 * this element as a child to use it. For example: <pre><code>
 * &lt;gmp-place-details&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-all-content&gt;&lt;/gmp-place-all-content&gt;<br>
 * &lt;/gmp-place-details&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceAllContentElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceAllContentElementOptions=} options
 * @implements {google.maps.places.PlaceAllContentElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceAllContentElement = function(options) {};



/**
 * Options for <code>PlaceAllContentElement</code>.
 * @record
 */
google.maps.places.PlaceAllContentElementOptions = function() {};

/**
 * Defines information about an aspect of the place that users have reviewed.
 * @record
 * @deprecated This interface is no longer used.
 */
google.maps.places.PlaceAspectRating = function() {};

/**
 * The rating of this aspect. For individual reviews this is an integer from 0
 * to 3. For aggregated ratings of a place this is an integer from 0 to 30.
 * @type {number}
 */
google.maps.places.PlaceAspectRating.prototype.rating;

/**
 * The aspect type. For example, <code>"food"</code>, <code>"decor"</code>,
 * <code>"service"</code>, or <code>"overall"</code>.
 * @type {string}
 */
google.maps.places.PlaceAspectRating.prototype.type;

/**
 * Allows customization of the Google Maps attribution text in a {@link
 * google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement}. Append this element as a child of
 * a {@link google.maps.places.PlaceContentConfigElement} to use it. If this
 * element is omitted, attribution will still be shown with default colors. For
 * example: <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-attribution<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;light-scheme-color="black"<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dark-scheme-color="white"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-attribution&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceAttributionElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceAttributionElementOptions=} options
 * @implements {google.maps.places.PlaceAttributionElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceAttributionElement = function(options) {};

/**
 * The color of the Google Maps attribution in dark mode.
 * @default <code>AttributionColor.WHITE</code>
 * @type {!google.maps.places.AttributionColor|null|undefined}
 */
google.maps.places.PlaceAttributionElement.prototype.darkSchemeColor;

/**
 * The color of the Google Maps attribution in light mode.
 * @default <code>AttributionColor.GRAY</code>
 * @type {!google.maps.places.AttributionColor|null|undefined}
 */
google.maps.places.PlaceAttributionElement.prototype.lightSchemeColor;



/**
 * Options for <code>PlaceAttributionElement</code>.
 * @record
 */
google.maps.places.PlaceAttributionElementOptions = function() {};

/**
 * See {@link google.maps.places.PlaceAttributionElement.darkSchemeColor}.
 * @type {!google.maps.places.AttributionColor|null|undefined}
 */
google.maps.places.PlaceAttributionElementOptions.prototype.darkSchemeColor;

/**
 * See {@link google.maps.places.PlaceAttributionElement.lightSchemeColor}.
 * @type {!google.maps.places.AttributionColor|null|undefined}
 */
google.maps.places.PlaceAttributionElementOptions.prototype.lightSchemeColor;

/**
 * PlaceAutocompleteElement is an <code>HTMLElement</code> subclass which
 * provides a UI component for the Places Autocomplete API. <br/><br/>
 * PlaceAutocompleteElement automatically uses {@link
 * google.maps.places.AutocompleteSessionToken}s internally to group the query
 * and selection phases of a user&#39;s autocomplete search. <br/><br/> The
 * first call to {@link google.maps.places.Place.fetchFields} on a {@link
 * google.maps.places.Place} returned by {@link
 * google.maps.places.PlacePrediction.toPlace} will automatically include the
 * session token used to fetch the <code>PlacePrediction</code>. <br/><br/> See
 * <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-session-tokens">https://developers.google.com/maps/documentation/places/web-service/place-session-tokens</a>
 * for more details on how sessions work.
 *
 * Access by calling `const {PlaceAutocompleteElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceAutocompleteElementOptions} options
 * @implements {google.maps.places.PlaceAutocompleteElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceAutocompleteElement = function(options) {};

/**
 * Included primary <a
 * href="https://developers.google.com/maps/documentation/places/javascript/place-types">Place
 * type</a> (for example, &quot;restaurant&quot; or &quot;gas_station&quot;).
 * <br/><br/> A Place is only returned if its primary type is included in this
 * list. Up to 5 values can be specified. If no types are specified, all Place
 * types are returned.
 * @type {!Array<string>|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.includedPrimaryTypes;

/**
 * Only include results in the specified regions, specified as up to 15 CLDR
 * two-character region codes. An empty set will not restrict the results. If
 * both <code>locationRestriction</code> and <code>includedRegionCodes</code>
 * are set, the results will be located in the area of intersection.
 * @type {!Array<string>|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.includedRegionCodes;

/**
 * A soft boundary or hint to use when searching for places.
 * @type {!google.maps.places.LocationBias|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.locationBias;

/**
 * Bounds to constrain search results.
 * @type {!google.maps.places.LocationRestriction|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.locationRestriction;

/**
 * The name to be used for the input element. See <a
 * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name</a>
 * for details. Follows the same behavior as the name attribute for inputs. Note
 * that this is the name that will be used when a form is submitted. See <a
 * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form</a>
 * for details.
 * @type {string|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.name;

/**
 * The origin from which to calculate distance. If not specified, distance is
 * not calculated. The altitude, if given, is not used in the calculation.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.places.PlaceAutocompleteElement.prototype.origin;

/**
 * The placeholder text to display in the input element.
 * @type {string}
 */
google.maps.places.PlaceAutocompleteElement.prototype.placeholder;

/**
 * A language identifier for the language in which the results should be
 * returned, if possible. Results in the selected language may be given a higher
 * ranking, but suggestions are not restricted to this language. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.requestedLanguage;

/**
 * A region code which is used for result formatting and for result filtering.
 * It does not restrict the suggestions to this country. The region code accepts
 * a <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null}
 */
google.maps.places.PlaceAutocompleteElement.prototype.requestedRegion;

/**
 * The unit system used to display distances. If not specified, the unit system
 * is determined by requestedRegion.
 * @type {!google.maps.UnitSystem|null|undefined}
 */
google.maps.places.PlaceAutocompleteElement.prototype.unitSystem;

/**
 * The value of the input element.
 * @type {string}
 */
google.maps.places.PlaceAutocompleteElement.prototype.value;



/**
 * Options for constructing a PlaceAutocompleteElement. For the description of
 * each property, refer to the property of the same name in the
 * PlaceAutocompleteElement class.
 * @record
 */
google.maps.places.PlaceAutocompleteElementOptions = function() {};

/**
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype
    .includedPrimaryTypes;

/**
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype
    .includedRegionCodes;

/**
 * @type {!google.maps.places.LocationBias|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.locationBias;

/**
 * @type {!google.maps.places.LocationRestriction|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype
    .locationRestriction;

/**
 * @type {string|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.name;

/**
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.origin;

/**
 * @type {string|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.requestedLanguage;

/**
 * @type {string|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.requestedRegion;

/**
 * @type {!google.maps.UnitSystem|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.unitSystem;

/**
 * The value of the input element.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceAutocompleteElementOptions.prototype.value;

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement} or {@link
 * google.maps.places.PlaceSearchElement} to show a custom set of content.
 * Append this element as a child to use it. <br> <br> For {@link
 * google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement} or {@link
 * google.maps.places.PlaceSearchElement}, append any of the following elements
 * to the {@link google.maps.places.PlaceContentConfigElement} to show the
 * corresponding content: <br> {@link
 * google.maps.places.PlaceAddressElement}, {@link
 * google.maps.places.PlaceAccessibleEntranceIconElement}, {@link
 * google.maps.places.PlaceAttributionElement} {@link
 * google.maps.places.PlaceMediaElement}, {@link
 * google.maps.places.PlaceOpenNowStatusElement}, {@link
 * google.maps.places.PlacePriceElement}, {@link
 * google.maps.places.PlaceRatingElement}, {@link
 * google.maps.places.PlaceTypeElement}. <br> <br> Specific to {@link
 * google.maps.places.PlaceDetailsElement}, you may also append any of the
 * following elements: <br> {@link
 * google.maps.places.PlaceFeatureListElement} {@link
 * google.maps.places.PlaceOpeningHoursElement}, {@link
 * google.maps.places.PlacePhoneNumberElement}, {@link
 * google.maps.places.PlacePlusCodeElement}, {@link
 * google.maps.places.PlaceReviewSummaryElement}, {@link
 * google.maps.places.PlaceReviewsElement}, {@link
 * google.maps.places.PlaceSummaryElement}, {@link
 * google.maps.places.PlaceTypeSpecificHighlightsElement}, {@link
 * google.maps.places.PlaceWebsiteElement}. <br> <br> The order of the children
 * does not matter; the element renders content in a standard order which is not
 * customizable. Example: <pre><code> &lt;gmp-place-details&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-address&gt;&lt;/gmp-place-address&gt;<br>
 * &nbsp;&nbsp;&lt;/gmp-place-content-config&gt;<br> &lt;/gmp-place-details&gt;
 * </code></pre>
 *
 * Access by calling `const {PlaceContentConfigElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceContentConfigElementOptions=} options
 * @implements {google.maps.places.PlaceContentConfigElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceContentConfigElement = function(options) {};



/**
 * Options for <code>PlaceContentConfigElement</code>.
 * @record
 */
google.maps.places.PlaceContentConfigElementOptions = function() {};

/**
 * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
 *
 * A widget that uses the context token to display a contextual view of the
 * Grounding with Google Maps response.
 *
 * Access by calling `const {PlaceContextualElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceContextualElementOptions=} options
 * @implements {google.maps.places.PlaceContextualElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceContextualElement = function(options) {};

/**
 * The context token.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceContextualElement.prototype.contextToken;



/**
 * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
 *
 * Options for <code>PlaceContextualElement</code>.
 * @record
 */
google.maps.places.PlaceContextualElementOptions = function() {};

/**
 * The context token provided by the Grounding with Google Maps response.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceContextualElementOptions.prototype.contextToken;

/**
 * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
 *
 * An HTML element that configures options for the Place Contextual
 * Element&#39;s list view.
 *
 * Access by calling `const {PlaceContextualListConfigElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceContextualListConfigElementOptions=} options
 * @implements {google.maps.places.PlaceContextualListConfigElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceContextualListConfigElement = function(options) {};

/**
 * The layout.
 * @type {!google.maps.places.PlaceContextualListLayout|null|undefined}
 */
google.maps.places.PlaceContextualListConfigElement.prototype.layout;

/**
 * Whether the map is hidden.
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceContextualListConfigElement.prototype.mapHidden;



/**
 * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
 *
 * Options for PlaceContextualListConfigElement.
 * @record
 */
google.maps.places.PlaceContextualListConfigElementOptions = function() {};

/**
 * The layout.
 * @default {@link google.maps.places.PlaceContextualListLayout.VERTICAL}
 * @type {!google.maps.places.PlaceContextualListLayout|null|undefined}
 */
google.maps.places.PlaceContextualListConfigElementOptions.prototype.layout;

/**
 * True if the map should be hidden.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceContextualListConfigElementOptions.prototype.mapHidden;

/**
 * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
 *
 * The list of layouts that the Place Contextual Element supports for the list
 * view.
 *
 * Access by calling `const {PlaceContextualListLayout} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.PlaceContextualListLayout = {
  /**
   * Compact list layout: list items are rendered as links across a single line,
   * with overflows in a dropdown list.
   */
  COMPACT: 'COMPACT',
  /**
   * Vertical list layout: list items are rendered as cards in a vertical list.
   */
  VERTICAL: 'VERTICAL',
};

/**
 * Displays details for a place in a compact layout. Append a {@link
 * google.maps.places.PlaceDetailsPlaceRequestElement} or {@link
 * google.maps.places.PlaceDetailsLocationRequestElement} to specify the place
 * to be rendered. Append a {@link
 * google.maps.places.PlaceContentConfigElement}, {@link
 * google.maps.places.PlaceStandardContentElement}, or {@link
 * google.maps.places.PlaceAllContentElement} to specify which content to
 * render. <br><br> Example: <pre><code> &lt;gmp-place-details-compact&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-details-place-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;place="<var>PLACE_ID</var>"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-details-place-request&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &nbsp;&nbsp;&lt;/gmp-place-content-config&gt;<br>
 * &lt;/gmp-place-details-compact&gt; </code></pre> <br> To use this element,
 * enable the <a
 * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
 * >Places UI Kit API</a> for your project in the Google Cloud console.
 *
 * Access by calling `const {PlaceDetailsCompactElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceDetailsCompactElementOptions=} options
 * @implements {google.maps.places.PlaceDetailsCompactElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceDetailsCompactElement = function(options) {};

/**
 * The orientation variant (vertical or horizontal) of the element.
 * @default <code>PlaceDetailsOrientation.VERTICAL</code>
 * @type {!google.maps.places.PlaceDetailsOrientation|null|undefined}
 */
google.maps.places.PlaceDetailsCompactElement.prototype.orientation;

/**
 * Read only. Place object containing the ID, location, and viewport of the
 * currently rendered place.
 * @type {!google.maps.places.Place|undefined}
 */
google.maps.places.PlaceDetailsCompactElement.prototype.place;

/**
 * If true, truncates the place name and address to fit on one line instead of
 * wrapping.
 * @default <code>false</code>
 * @type {boolean}
 */
google.maps.places.PlaceDetailsCompactElement.prototype.truncationPreferred;



/**
 * Options for <code>PlaceDetailsCompactElement</code>.
 * @record
 */
google.maps.places.PlaceDetailsCompactElementOptions = function() {};

/**
 * See {@link google.maps.places.PlaceDetailsCompactElement.orientation}.
 * @type {!google.maps.places.PlaceDetailsOrientation|null|undefined}
 */
google.maps.places.PlaceDetailsCompactElementOptions.prototype.orientation;

/**
 * See {@link
 * google.maps.places.PlaceDetailsCompactElement.truncationPreferred}.
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceDetailsCompactElementOptions.prototype
    .truncationPreferred;

/**
 * Displays details for a place in a full layout. Append either a {@link
 * google.maps.places.PlaceDetailsPlaceRequestElement} or {@link
 * google.maps.places.PlaceDetailsLocationRequestElement} to specify the place
 * to be rendered. Append a {@link
 * google.maps.places.PlaceContentConfigElement}, {@link
 * google.maps.places.PlaceStandardContentElement}, or {@link
 * google.maps.places.PlaceAllContentElement} to specify which content to
 * render. <br><br> Example: <pre><code> &lt;gmp-place-details&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-details-place-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;place="<var>PLACE_ID</var>"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-details-place-request&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &nbsp;&nbsp;&lt;/gmp-place-content-config&gt;<br> &lt;/gmp-place-details&gt;
 * </code></pre> <br> To use this element, enable the <a
 * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
 * >Places UI Kit API</a> for your project in the Google Cloud console.
 *
 * Access by calling `const {PlaceDetailsElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceDetailsElementOptions=} options
 * @implements {google.maps.places.PlaceDetailsElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceDetailsElement = function(options) {};

/**
 * Read only. Place object containing the ID, location, and viewport of the
 * currently rendered place.
 * @type {!google.maps.places.Place|undefined}
 */
google.maps.places.PlaceDetailsElement.prototype.place;



/**
 * Options for <code>PlaceDetailsElement</code>.
 * @record
 */
google.maps.places.PlaceDetailsElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement} or {@link
 * google.maps.places.PlaceDetailsElement} to load data based on a location.
 * Append this element as a child of a {@link
 * google.maps.places.PlaceDetailsCompactElement} or {@link
 * google.maps.places.PlaceDetailsElement} to load data for the specified
 * location. For example: <pre><code> &lt;gmp-place-details&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-details-location-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;location="37.6207665,-122.4284806"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-details-location-request&gt;<br>
 * &lt;/gmp-place-details&gt; </code></pre>
 *
 * Access by calling `const {PlaceDetailsLocationRequestElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceDetailsLocationRequestElementOptions=}
 *     options
 * @implements {google.maps.places.PlaceDetailsLocationRequestElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceDetailsLocationRequestElement = function(options) {};

/**
 * The location to render details for in the Place Details element. Normalizes
 * to a <code>LatLngAltitude</code>.
 * @default <code>null</code>
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.places.PlaceDetailsLocationRequestElement.prototype.location;



/**
 * Options for <code>PlaceDetailsLocationRequestElement</code>.
 * @record
 */
google.maps.places.PlaceDetailsLocationRequestElementOptions = function() {};

/**
 * The location to render the place for.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
 */
google.maps.places.PlaceDetailsLocationRequestElementOptions.prototype.location;

/**
 * Orientation variants for {@link
 * google.maps.places.PlaceDetailsCompactElement}.
 *
 * Access by calling `const {PlaceDetailsOrientation} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.PlaceDetailsOrientation = {
  /**
   * Horizontal orientation.
   */
  HORIZONTAL: 'HORIZONTAL',
  /**
   * Vertical orientation.
   */
  VERTICAL: 'VERTICAL',
};

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement} or {@link
 * google.maps.places.PlaceDetailsElement} to load data based on a place object,
 * ID, or resource name. Append this element as a child of a {@link
 * google.maps.places.PlaceDetailsCompactElement} or {@link
 * google.maps.places.PlaceDetailsElement} to load data for the specified place.
 * For example: <pre><code> &lt;gmp-place-details&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-details-place-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;place="<var>PLACE_ID</var>"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-details-place-request&gt;<br>
 * &lt;/gmp-place-details&gt; </code></pre>
 *
 * Access by calling `const {PlaceDetailsPlaceRequestElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceDetailsPlaceRequestElementOptions=} options
 * @implements {google.maps.places.PlaceDetailsPlaceRequestElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceDetailsPlaceRequestElement = function(options) {};

/**
 * The place object, ID, or resource name to render details for in the Place
 * Details Compact element. This property reflects to the attribute as a
 * resource name.
 * @default <code>null</code>
 * @type {!google.maps.places.Place|null}
 */
google.maps.places.PlaceDetailsPlaceRequestElement.prototype.place;



/**
 * Options for <code>PlaceDetailsPlaceRequestElement</code>.
 * @record
 */
google.maps.places.PlaceDetailsPlaceRequestElementOptions = function() {};

/**
 * See {@link google.maps.places.PlaceDetailsPlaceRequestElement.place}
 * @type {!google.maps.places.Place|string|null|undefined}
 */
google.maps.places.PlaceDetailsPlaceRequestElementOptions.prototype.place;

/**
 * A Place details query to be sent to the <code>PlacesService</code>.
 * @record
 */
google.maps.places.PlaceDetailsRequest = function() {};

/**
 * Fields to be included in the details response, <a
 * href="https://developers.google.com/maps/billing/understanding-cost-of-use#places-product">which
 * will be billed for</a>. If no fields are specified or
 * <code>[&#39;ALL&#39;]</code> is passed in, all available fields will be
 * returned and billed for (this is not recommended for production deployments).
 * For a list of fields see {@link google.maps.places.PlaceResult}. Nested
 * fields can be specified with dot-paths (for example,
 * <code>"geometry.location"</code>).
 * @type {!Array<string>|undefined}
 */
google.maps.places.PlaceDetailsRequest.prototype.fields;

/**
 * A language identifier for the language in which details should be returned.
 * See the <a href="https://developers.google.com/maps/faq#languagesupport">list
 * of supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceDetailsRequest.prototype.language;

/**
 * The Place ID of the Place for which details are being requested.
 * @type {string}
 */
google.maps.places.PlaceDetailsRequest.prototype.placeId;

/**
 * A region code of the user&#39;s region. This can affect which photos may be
 * returned, and possibly other things. The region code accepts a <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null|undefined}
 */
google.maps.places.PlaceDetailsRequest.prototype.region;

/**
 * Unique reference used to bundle the details request with an autocomplete
 * session.
 * @type {!google.maps.places.AutocompleteSessionToken|undefined}
 */
google.maps.places.PlaceDetailsRequest.prototype.sessionToken;

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s feature list in the &quot;About&quot; tab. Feature list can
 * include accessibility options, amenities, accepted payment methods, and more.
 * Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-feature-list&gt;&lt;/gmp-place-feature-list&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceFeatureListElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceFeatureListElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceFeatureListElement = function() {};



/**
 * Options for <code>PlaceFeatureListElement</code>.
 * @record
 */
google.maps.places.PlaceFeatureListElementOptions = function() {};

/**
 * Defines information about the geometry of a Place.
 * @record
 */
google.maps.places.PlaceGeometry = function() {};

/**
 * The Place’s position.
 * @type {!google.maps.LatLng|undefined}
 */
google.maps.places.PlaceGeometry.prototype.location;

/**
 * The preferred viewport when displaying this Place on a map. This property
 * will be <code>null</code> if the preferred viewport for the Place is not
 * known. Only available with {@link
 * google.maps.places.PlacesService.getDetails}.
 * @type {!google.maps.LatLngBounds|undefined}
 */
google.maps.places.PlaceGeometry.prototype.viewport;

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a place&#39;s media, such as
 * photos. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceMediaElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceMediaElementOptions=} options
 * @implements {google.maps.places.PlaceMediaElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceMediaElement = function(options) {};

/**
 * Whether to enable or disable the media lightbox, in cases where both options
 * are supported.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceMediaElement.prototype.lightboxPreferred;

/**
 * The preferred media size in cases where multiple sizes are supported, such as
 * the vertical {@link google.maps.places.PlaceSearchElement}. The vertical
 * <code>PlaceSearchElement</code> will use <code>MediaSize.SMALL</code> by
 * default if this is not specified.
 * @default <code>null</code>
 * @type {!google.maps.places.MediaSize|null|undefined}
 */
google.maps.places.PlaceMediaElement.prototype.preferredSize;



/**
 * Options for <code>PlaceMediaElement</code>.
 * @record
 */
google.maps.places.PlaceMediaElementOptions = function() {};

/**
 * See {@link google.maps.places.PlaceMediaElement.lightboxPreferred}.
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceMediaElementOptions.prototype.lightboxPreferred;

/**
 * See {@link google.maps.places.PlaceMediaElement.preferredSize}.
 * @type {!google.maps.places.MediaSize|null|undefined}
 */
google.maps.places.PlaceMediaElementOptions.prototype.preferredSize;

/**
 * Configures a {@link google.maps.places.PlaceSearchElement} to load results
 * based on a nearby search request. The <code>locationRestriction</code>
 * property is required for the search element to load. Any other configured
 * properties will be ignored if <code>locationRestriction</code> is not set.
 * Append this element as a child of a {@link
 * google.maps.places.PlaceSearchElement} to load results. For example:
 * <pre><code> &lt;gmp-place-search&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-nearby-search-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;location-restriction="<var>RADIUS</var>@<var>LAT</var>,<var>LNG</var>"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-nearby-search-request&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &nbsp;&nbsp;&lt;/gmp-place-content-config&gt;<br> &lt;/gmp-place-search&gt;
 * </code></pre>
 *
 * Access by calling `const {PlaceNearbySearchRequestElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceNearbySearchRequestElementOptions=} options
 * @implements {google.maps.places.PlaceNearbySearchRequestElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceNearbySearchRequestElement = function(options) {};

/**
 * Excluded primary place types.
 * @default <code>null</code>
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype
    .excludedPrimaryTypes;

/**
 * Excluded place types.
 * @default <code>null</code>
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype.excludedTypes;

/**
 * Included primary place type.
 * @default <code>null</code>
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype
    .includedPrimaryTypes;

/**
 * Included place type.
 * @default <code>null</code>
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype.includedTypes;

/**
 * The region to search. Normalizes to a <code>Circle</code>.
 * @default <code>null</code>
 * @type {!google.maps.Circle|!google.maps.CircleLiteral|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype
    .locationRestriction;

/**
 * Maximum number of results to return.
 * @default <code>null</code>
 * @type {number|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype.maxResultCount;

/**
 * How results will be ranked in the response.
 * @default <code>null</code>
 * @type {!google.maps.places.SearchNearbyRankPreference|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElement.prototype.rankPreference;



/**
 * Options for <code>PlaceNearbySearchRequestElement</code>.
 * @record
 */
google.maps.places.PlaceNearbySearchRequestElementOptions = function() {};

/**
 * Excluded primary place types. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.excludedPrimaryTypes}
 * and {@link google.maps.places.SearchNearbyRequest.excludedPrimaryTypes} for
 * more details.
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .excludedPrimaryTypes;

/**
 * Excluded place types. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.excludedTypes} and {@link
 * google.maps.places.SearchNearbyRequest.excludedTypes} for more details.
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .excludedTypes;

/**
 * Included primary place types. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.includedPrimaryTypes}
 * and {@link google.maps.places.SearchNearbyRequest.includedPrimaryTypes} for
 * more details.
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .includedPrimaryTypes;

/**
 * Included place types. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.includedTypes} and {@link
 * google.maps.places.SearchNearbyRequest.includedTypes} for more details.
 * @type {!Array<string>|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .includedTypes;

/**
 * The region to search. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.locationRestriction}
 * and {@link google.maps.places.SearchNearbyRequest.locationRestriction} for
 * more details.
 * @type {!google.maps.Circle|!google.maps.CircleLiteral|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .locationRestriction;

/**
 * Maximum number of results to return. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.maxResultCount} and {@link
 * google.maps.places.SearchNearbyRequest.maxResultCount} for more details.
 * @type {number|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .maxResultCount;

/**
 * How results will be ranked in the response. See {@link
 * google.maps.places.PlaceNearbySearchRequestElement.rankPreference} and {@link
 * google.maps.places.SearchNearbyRankPreference} for more details.
 * @type {!google.maps.places.SearchNearbyRankPreference|null|undefined}
 */
google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
    .rankPreference;

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show the current open or closed
 * status of a place. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-open-now-status&gt;&lt;/gmp-place-open-now-status&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceOpenNowStatusElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceOpenNowStatusElementOptions=} options
 * @implements {google.maps.places.PlaceOpenNowStatusElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceOpenNowStatusElement = function(options) {};



/**
 * Options for <code>PlaceOpenNowStatusElement</code>.
 * @record
 */
google.maps.places.PlaceOpenNowStatusElementOptions = function() {};

/**
 * Defines information about the opening hours of a Place.
 * @record
 */
google.maps.places.PlaceOpeningHours = function() {};

/**
 * Opening periods covering for each day of the week, starting from Sunday, in
 * chronological order. Days in which the Place is not open are not included.
 * Only available with {@link google.maps.places.PlacesService.getDetails}.
 * @type {!Array<!google.maps.places.PlaceOpeningHoursPeriod>|undefined}
 */
google.maps.places.PlaceOpeningHours.prototype.periods;

/**
 * An array of seven strings representing the formatted opening hours for each
 * day of the week. The Places Service will format and localize the opening
 * hours appropriately for the current language. The ordering of the elements in
 * this array depends on the language. Some languages start the week on Monday
 * while others start on Sunday. Only available with {@link
 * google.maps.places.PlacesService.getDetails}. Other calls may return an empty
 * array.
 * @type {!Array<string>|undefined}
 */
google.maps.places.PlaceOpeningHours.prototype.weekday_text;

/**
 * Whether the Place is open at the current time.
 * @type {boolean|undefined}
 * @deprecated <code>open_now</code> is deprecated as of November 2019. Use
 *     the {@link google.maps.places.PlaceOpeningHours.isOpen} method from
 *     a {@link google.maps.places.PlacesService.getDetails} result instead. See
 *     <a href="https://goo.gle/js-open-now">https://goo.gle/js-open-now</a>
 */
google.maps.places.PlaceOpeningHours.prototype.open_now;

/**
 * Check whether the place is open now (when no date is passed), or at the given
 * date. If this place does not have {@link
 * google.maps.places.PlaceResult.utc_offset_minutes} or {@link
 * google.maps.places.PlaceOpeningHours.periods} then <code>undefined</code> is
 * returned ({@link google.maps.places.PlaceOpeningHours.periods} is only
 * available via {@link google.maps.places.PlacesService.getDetails}). This
 * method does not take exceptional hours, such as holiday hours, into
 * consideration.
 * @param {!Date=} date
 * @return {boolean|undefined}
 */
google.maps.places.PlaceOpeningHours.prototype.isOpen = function(date) {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s opening hours. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-opening-hours&gt;&lt;/gmp-place-opening-hours&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceOpeningHoursElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceOpeningHoursElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceOpeningHoursElement = function() {};



/**
 * Options for <code>PlaceOpeningHoursElement</code>.
 * @record
 */
google.maps.places.PlaceOpeningHoursElementOptions = function() {};

/**
 * Defines structured information about the opening hours of a Place.
 * <strong>Note:</strong> If a Place is <strong>always open</strong>, the
 * <code>close</code> section will be missing from the response. Clients can
 * rely on always-open being represented as an <code>open</code> period
 * containing <code>day</code> with value <code>0</code> and <code>time</code>
 * with value <code>"0000"</code>, and no <code>close</code>.</li>
 * @record
 */
google.maps.places.PlaceOpeningHoursPeriod = function() {};

/**
 * The closing time for the Place.
 * @type {!google.maps.places.PlaceOpeningHoursTime|undefined}
 */
google.maps.places.PlaceOpeningHoursPeriod.prototype.close;

/**
 * The opening time for the Place.
 * @type {!google.maps.places.PlaceOpeningHoursTime}
 */
google.maps.places.PlaceOpeningHoursPeriod.prototype.open;

/**
 * Defines when a Place opens or closes.
 * @record
 */
google.maps.places.PlaceOpeningHoursTime = function() {};

/**
 * The days of the week, as a number in the range [<code>0</code>,
 * <code>6</code>], starting on Sunday. For example, <code>2</code> means
 * Tuesday.
 * @type {number}
 */
google.maps.places.PlaceOpeningHoursTime.prototype.day;

/**
 * The hours of the {@link google.maps.places.PlaceOpeningHoursTime.time} as a
 * number, in the range [<code>0</code>, <code>23</code>]. This will be reported
 * in the Place’s time zone.
 * @type {number}
 */
google.maps.places.PlaceOpeningHoursTime.prototype.hours;

/**
 * The minutes of the {@link google.maps.places.PlaceOpeningHoursTime.time} as a
 * number, in the range [<code>0</code>, <code>59</code>]. This will be reported
 * in the Place’s time zone.
 * @type {number}
 */
google.maps.places.PlaceOpeningHoursTime.prototype.minutes;

/**
 * The timestamp (as milliseconds since the epoch, suitable for use with
 * <code>new Date()</code>) representing the next occurrence of this
 * PlaceOpeningHoursTime. It is calculated from the {@link
 * google.maps.places.PlaceOpeningHoursTime.day} of week, the {@link
 * google.maps.places.PlaceOpeningHoursTime.time}, and the {@link
 * google.maps.places.PlaceResult.utc_offset_minutes}. If the {@link
 * google.maps.places.PlaceResult.utc_offset_minutes} is <code>undefined</code>,
 * then <code>nextDate</code> will be <code>undefined</code>.
 * @type {number|undefined}
 */
google.maps.places.PlaceOpeningHoursTime.prototype.nextDate;

/**
 * The time of day in 24-hour &quot;hhmm&quot; format. Values are in the range
 * [<code>"0000"</code>, <code>"2359"</code>]. The time will be reported in the
 * Place’s time zone.
 * @type {string}
 */
google.maps.places.PlaceOpeningHoursTime.prototype.time;

/**
 * Options for constructing a Place.
 * @record
 */
google.maps.places.PlaceOptions = function() {};

/**
 * The unique place id.
 * @type {string|undefined}
 */
google.maps.places.PlaceOptions.prototype.id;

/**
 * A language identifier for the language in which details should be returned.
 * See the <a href="https://developers.google.com/maps/faq#languagesupport">list
 * of supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceOptions.prototype.requestedLanguage;

/**
 * A region code of the user&#39;s region. This can affect which photos may be
 * returned, and possibly other things. The region code accepts a <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null|undefined}
 */
google.maps.places.PlaceOptions.prototype.requestedRegion;

/**
 * The unique place resource name.
 * @type {string|undefined}
 */
google.maps.places.PlaceOptions.prototype.resourceName;

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s phone number. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-phone-number&gt;&lt;/gmp-place-phone-number&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlacePhoneNumberElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlacePhoneNumberElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlacePhoneNumberElement = function() {};



/**
 * Options for <code>PlacePhoneNumberElement</code>.
 * @record
 */
google.maps.places.PlacePhoneNumberElementOptions = function() {};

/**
 * Represents a photo element of a Place.
 * @record
 */
google.maps.places.PlacePhoto = function() {};

/**
 * The height of the photo in pixels.
 * @type {number}
 */
google.maps.places.PlacePhoto.prototype.height;

/**
 * Attribution text to be displayed for this photo.
 * @type {!Array<string>}
 */
google.maps.places.PlacePhoto.prototype.html_attributions;

/**
 * The width of the photo in pixels.
 * @type {number}
 */
google.maps.places.PlacePhoto.prototype.width;

/**
 * Returns the image URL corresponding to the specified options.
 * @param {!google.maps.places.PhotoOptions=} opts
 * @return {string}
 */
google.maps.places.PlacePhoto.prototype.getUrl = function(opts) {};

/**
 * Defines Open Location Codes or &quot;<a href="https://plus.codes/">plus
 * codes</a>&quot; for a Place. Plus codes can be used as a replacement for
 * street addresses in places where they do not exist (where buildings are not
 * numbered or streets are not named).
 * @record
 */
google.maps.places.PlacePlusCode = function() {};

/**
 * A <a href="https://plus.codes/">plus code</a> with a 1/8000th of a degree by
 * 1/8000th of a degree area where the first four characters (the area code) are
 * dropped and replaced with a locality description. For example, <code>"9G8F+5W
 * Zurich, Switzerland"</code>. If no suitable locality that can be found to
 * shorten the code then this field is omitted.
 * @type {string|undefined}
 */
google.maps.places.PlacePlusCode.prototype.compound_code;

/**
 * A <a href="https://plus.codes/">plus code</a> with a 1/8000th of a degree by
 * 1/8000th of a degree area. For example, <code>"8FVC9G8F+5W"</code>.
 * @type {string}
 */
google.maps.places.PlacePlusCode.prototype.global_code;

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s plus code. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-plus-code&gt;&lt;/gmp-place-plus-code&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlacePlusCodeElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlacePlusCodeElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlacePlusCodeElement = function() {};



/**
 * Options for <code>PlacePlusCodeElement</code>.
 * @record
 */
google.maps.places.PlacePlusCodeElementOptions = function() {};

/**
 * Prediction results for a Place Autocomplete prediction.
 *
 * Access by calling `const {PlacePrediction} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.PlacePrediction = function() {};

/**
 * The length of the geodesic in meters from <code>origin</code> if
 * <code>origin</code> is specified.
 * @type {number|null}
 */
google.maps.places.PlacePrediction.prototype.distanceMeters;

/**
 * Represents the name of the Place.
 * @type {!google.maps.places.FormattableText|null}
 */
google.maps.places.PlacePrediction.prototype.mainText;

/**
 * The unique identifier of the suggested Place. This identifier can be used in
 * other APIs that accept Place IDs.
 * @type {string}
 */
google.maps.places.PlacePrediction.prototype.placeId;

/**
 * Represents additional disambiguating features (such as a city or region) to
 * further identify the Place.
 * @type {!google.maps.places.FormattableText|null}
 */
google.maps.places.PlacePrediction.prototype.secondaryText;

/**
 * Contains the human-readable name for the returned result. For establishment
 * results, this is usually the business name and address. <br/><br/>
 * <code>text</code> is recommended for developers who wish to show a single UI
 * element. Developers who wish to show two separate, but related, UI elements
 * may want to use {@link google.maps.places.PlacePrediction.mainText}
 * and {@link google.maps.places.PlacePrediction.secondaryText} instead.
 * @type {!google.maps.places.FormattableText}
 */
google.maps.places.PlacePrediction.prototype.text;

/**
 * List of types that apply to this Place from Table A or Table B in <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-types">https://developers.google.com/maps/documentation/places/web-service/place-types</a>.
 * @type {!Array<string>}
 */
google.maps.places.PlacePrediction.prototype.types;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * Sends an Address Validation request associated with this autocomplete session
 * (internally populating the request with the autocomplete session token). No
 * place information from the PlacePrediction is included automatically - this
 * is a convenience method to help with autocomplete session management.
 * @param {!google.maps.addressValidation.AddressValidationRequest} request
 * @return {!Promise<!google.maps.addressValidation.AddressValidation>}
 */
google.maps.places.PlacePrediction.prototype.fetchAddressValidation = function(
    request) {};

/**
 * Returns a {@link google.maps.places.Place} representation of this
 * PlacePrediction. A subsequent call to {@link
 * google.maps.places.Place.fetchFields} is required to get full Place details.
 * <br/><br/> If a {@link google.maps.places.AutocompleteRequest.sessionToken}
 * was provided in the {@link google.maps.places.AutocompleteRequest} used to
 * fetch this PlacePrediction, the same token will automatically be included
 * when calling fetchFields. <br/><br/> Alternatively, when using {@link
 * google.maps.places.PlaceAutocompleteElement} the first call to {@link
 * google.maps.places.Place.fetchFields} on a {@link google.maps.places.Place}
 * returned by {@link google.maps.places.PlacePrediction.toPlace} will
 * automatically include the session token.
 * @return {!google.maps.places.Place}
 */
google.maps.places.PlacePrediction.prototype.toPlace = function() {};

/**
 * This event is created after the user selects a prediction item with the
 * PlaceAutocompleteElement. Access the selection with
 * <code>event.placePrediction</code>. <br/><br/> Convert placePrediction to
 * a {@link google.maps.places.Place} by calling {@link
 * google.maps.places.PlacePrediction.toPlace}.
 *
 * Access by calling `const {PlacePredictionSelectEvent} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Event}
 * @constructor
 */
google.maps.places.PlacePredictionSelectEvent = function() {};

/**
 * Convert this to a {@link google.maps.places.Place} by calling {@link
 * google.maps.places.PlacePrediction.toPlace}.
 * @type {!google.maps.places.PlacePrediction}
 */
google.maps.places.PlacePredictionSelectEvent.prototype.placePrediction;

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a place&#39;s price level or
 * price range. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-price&gt;&lt;/gmp-place-price&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlacePriceElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlacePriceElementOptions=} options
 * @implements {google.maps.places.PlacePriceElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlacePriceElement = function(options) {};



/**
 * Options for <code>PlacePriceElement</code>.
 * @record
 */
google.maps.places.PlacePriceElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a place&#39;s rating. Append
 * this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-rating&gt;&lt;/gmp-place-rating&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceRatingElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceRatingElementOptions=} options
 * @implements {google.maps.places.PlaceRatingElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceRatingElement = function(options) {};



/**
 * Options for <code>PlaceRatingElement</code>.
 * @record
 */
google.maps.places.PlaceRatingElementOptions = function() {};

/**
 * Defines information about a Place.
 * @record
 */
google.maps.places.PlaceResult = function() {};

/**
 * The collection of address components for this Place’s location. Only
 * available with {@link google.maps.places.PlacesService.getDetails}.
 * @type {!Array<!google.maps.GeocoderAddressComponent>|undefined}
 */
google.maps.places.PlaceResult.prototype.address_components;

/**
 * The representation of the Place’s address in the <a
 * href="http://microformats.org/wiki/adr">adr microformat</a>. Only available
 * with {@link google.maps.places.PlacesService.getDetails}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.adr_address;

/**
 * The rated aspects of this Place, based on Google and Zagat user reviews. The
 * ratings are on a scale of 0 to 30.
 * @type {!Array<!google.maps.places.PlaceAspectRating>|undefined}
 */
google.maps.places.PlaceResult.prototype.aspects;

/**
 * A flag indicating the operational status of the Place, if it is a business
 * (indicates whether the place is operational, or closed either temporarily or
 * permanently). If no data is available, the flag is not present in search or
 * details responses.
 * @type {!google.maps.places.BusinessStatus|undefined}
 */
google.maps.places.PlaceResult.prototype.business_status;

/**
 * The Place’s full address.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.formatted_address;

/**
 * The Place’s phone number, formatted according to the <a
 * href="http://en.wikipedia.org/wiki/Local_conventions_for_writing_telephone_numbers">
 * number&#39;s regional convention</a>. Only available with {@link
 * google.maps.places.PlacesService.getDetails}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.formatted_phone_number;

/**
 * The Place’s geometry-related information.
 * @type {!google.maps.places.PlaceGeometry|undefined}
 */
google.maps.places.PlaceResult.prototype.geometry;

/**
 * Attribution text to be displayed for this Place result. Available
 * <code>html_attributions</code> are always returned regardless of what
 * <code>fields</code> have been requested, and must be displayed.
 * @type {!Array<string>|undefined}
 */
google.maps.places.PlaceResult.prototype.html_attributions;

/**
 * URL to an image resource that can be used to represent this Place’s category.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.icon;

/**
 * Background color for use with a Place&#39;s icon. See also {@link
 * google.maps.places.PlaceResult.icon_mask_base_uri}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.icon_background_color;

/**
 * A truncated URL to an icon mask. Access different icon types by appending a
 * file extension to the end (i.e. <code>.svg</code> or <code>.png</code>).
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.icon_mask_base_uri;

/**
 * The Place’s phone number in international format. International format
 * includes the country code, and is prefixed with the plus (+) sign. Only
 * available with {@link google.maps.places.PlacesService.getDetails}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.international_phone_number;

/**
 * The Place’s name. Note: In the case of user entered Places, this is the raw
 * text, as typed by the user. Please exercise caution when using this data, as
 * malicious users may try to use it as a vector for code injection attacks (See
 * <a href="http://en.wikipedia.org/wiki/Code_injection">
 * http://en.wikipedia.org/wiki/Code_injection</a>).
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.name;

/**
 * Defines when the Place opens or closes.
 * @type {!google.maps.places.PlaceOpeningHours|undefined}
 */
google.maps.places.PlaceResult.prototype.opening_hours;

/**
 * Photos of this Place. The collection will contain up to ten {@link
 * google.maps.places.PlacePhoto} objects.
 * @type {!Array<!google.maps.places.PlacePhoto>|undefined}
 */
google.maps.places.PlaceResult.prototype.photos;

/**
 * A unique identifier for the Place.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.place_id;

/**
 * Defines Open Location Codes or &quot;<a href="https://plus.codes/">plus
 * codes</a>&quot; for the Place.
 * @type {!google.maps.places.PlacePlusCode|undefined}
 */
google.maps.places.PlaceResult.prototype.plus_code;

/**
 * The price level of the Place, on a scale of 0 to 4. Price levels are
 * interpreted as follows: <ul style="list-style-type: none;">
 * <li><code>0</code>: Free <li><code>1</code>: Inexpensive <li><code>2</code>:
 * Moderate <li><code>3</code>: Expensive <li><code>4</code>: Very Expensive
 * </ul>
 * @type {number|undefined}
 */
google.maps.places.PlaceResult.prototype.price_level;

/**
 * A rating, between 1.0 to 5.0, based on user reviews of this Place.
 * @type {number|undefined}
 */
google.maps.places.PlaceResult.prototype.rating;

/**
 * A list of reviews of this Place. Only available with {@link
 * google.maps.places.PlacesService.getDetails}.
 * @type {!Array<!google.maps.places.PlaceReview>|undefined}
 */
google.maps.places.PlaceResult.prototype.reviews;

/**
 * An array of <a
 * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">
 * types for this Place</a> (for example, <code>["political", "locality"]</code>
 * or <code>["restaurant", "establishment"]</code>).
 * @type {!Array<string>|undefined}
 */
google.maps.places.PlaceResult.prototype.types;

/**
 * URL of the official Google page for this place. This is the Google-owned page
 * that contains the best available information about the Place. Only available
 * with {@link google.maps.places.PlacesService.getDetails}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.url;

/**
 * The number of user ratings which contributed to this Place’s {@link
 * google.maps.places.PlaceResult.rating}.
 * @type {number|undefined}
 */
google.maps.places.PlaceResult.prototype.user_ratings_total;

/**
 * The offset from UTC of the Place’s current timezone, in minutes. For example,
 * Sydney, Australia in daylight savings is 11 hours ahead of UTC, so the
 * <code>utc_offset_minutes</code> will be <code>660</code>. For timezones
 * behind UTC, the offset is negative. For example, the
 * <code>utc_offset_minutes</code> is <code>-60</code> for Cape Verde. Only
 * available with {@link google.maps.places.PlacesService.getDetails}.
 * @type {number|undefined}
 */
google.maps.places.PlaceResult.prototype.utc_offset_minutes;

/**
 * The simplified address for the Place, including the street name, street
 * number, and locality, but not the province/state, postal code, or country.
 * For example, Google&#39;s Sydney, Australia office has a vicinity value of
 * <code>"48 Pirrama Road, Pyrmont"</code>. Only available with {@link
 * google.maps.places.PlacesService.getDetails}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.vicinity;

/**
 * The authoritative website for this Place, such as a business&#39; homepage.
 * Only available with {@link google.maps.places.PlacesService.getDetails}.
 * @type {string|undefined}
 */
google.maps.places.PlaceResult.prototype.website;

/**
 * The offset from UTC of the Place’s current timezone, in minutes. For example,
 * Sydney, Australia in daylight savings is 11 hours ahead of UTC, so the
 * <code>utc_offset</code> will be <code>660</code>. For timezones behind UTC,
 * the offset is negative. For example, the <code>utc_offset</code> is
 * <code>-60</code> for Cape Verde. Only available with {@link
 * google.maps.places.PlacesService.getDetails}.
 * @type {number|undefined}
 * @deprecated <code>utc_offset</code> is deprecated as of November 2019.
 *     Use {@link google.maps.places.PlaceResult.utc_offset_minutes} instead.
 *     See <a href="https://goo.gle/js-open-now">https://goo.gle/js-open-now</a>
 */
google.maps.places.PlaceResult.prototype.utc_offset;

/**
 * A flag indicating whether the Place is closed, either permanently or
 * temporarily. If the place is operational, or if no data is available, the
 * flag is absent from the response.
 * @type {boolean|undefined}
 * @deprecated <code>permanently_closed</code> is deprecated as of May 2020 and
 *     will be turned off in May 2021. Use {@link
 *     google.maps.places.PlaceResult.business_status} instead as
 *     <code>permanently_closed</code> does not distinguish between temporary
 *     and permanent closures.
 */
google.maps.places.PlaceResult.prototype.permanently_closed;

/**
 * Represents a single review of a place.
 * @record
 */
google.maps.places.PlaceReview = function() {};

/**
 * The name of the reviewer.
 * @type {string}
 */
google.maps.places.PlaceReview.prototype.author_name;

/**
 * A URL to the reviewer&#39;s profile. This will be <code>undefined</code> when
 * the reviewer&#39;s profile is unavailable.
 * @type {string|undefined}
 */
google.maps.places.PlaceReview.prototype.author_url;

/**
 * An IETF language code indicating the language in which this review is
 * written. Note that this code includes only the main language tag without any
 * secondary tag indicating country or region. For example, all the English
 * reviews are tagged as <code>'en'</code> rather than &#39;en-AU&#39; or
 * &#39;en-UK&#39;.
 * @type {string}
 */
google.maps.places.PlaceReview.prototype.language;

/**
 * A URL to the reviwer&#39;s profile image.
 * @type {string}
 */
google.maps.places.PlaceReview.prototype.profile_photo_url;

/**
 * The rating of this review, a number between 1.0 and 5.0 (inclusive).
 * @type {number|undefined}
 */
google.maps.places.PlaceReview.prototype.rating;

/**
 * A string of formatted recent time, expressing the review time relative to the
 * current time in a form appropriate for the language and country. For example
 * <code>&quot;a month ago&quot;</code>.
 * @type {string}
 */
google.maps.places.PlaceReview.prototype.relative_time_description;

/**
 * The text of a review.
 * @type {string}
 */
google.maps.places.PlaceReview.prototype.text;

/**
 * Timestamp for the review, expressed in seconds since epoch.
 * @type {number}
 */
google.maps.places.PlaceReview.prototype.time;

/**
 * The aspects rated by the review. The ratings on a scale of 0 to 3.
 * @type {!Array<!google.maps.places.PlaceAspectRating>|undefined}
 * @deprecated This field is no longer available.
 */
google.maps.places.PlaceReview.prototype.aspects;

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s review summary. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-review-summary&gt;&lt;/gmp-place-review-summary&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceReviewSummaryElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceReviewSummaryElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceReviewSummaryElement = function() {};



/**
 * Options for <code>PlaceReviewSummaryElement</code>.
 * @record
 */
google.maps.places.PlaceReviewSummaryElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s reviews. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-reviews&gt;&lt;/gmp-place-reviews&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceReviewsElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceReviewsElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceReviewsElement = function() {};



/**
 * Options for <code>PlaceReviewsElement</code>.
 * @record
 */
google.maps.places.PlaceReviewsElementOptions = function() {};

/**
 * Attribution positions for {@link google.maps.places.PlaceSearchElement}.
 *
 * Access by calling `const {PlaceSearchAttributionPosition} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.PlaceSearchAttributionPosition = {
  /**
   * Attribution at the bottom of the PlaceSearchElement
   */
  BOTTOM: 'BOTTOM',
  /**
   * Attribution at the top of the PlaceSearchElement
   */
  TOP: 'TOP',
};

/**
 * Displays the results of a place search in a list. Append a {@link
 * google.maps.places.PlaceTextSearchRequestElement} or {@link
 * google.maps.places.PlaceNearbySearchRequestElement} to specify the request to
 * render results for. Append a {@link
 * google.maps.places.PlaceContentConfigElement}, {@link
 * google.maps.places.PlaceStandardContentElement}, or {@link
 * google.maps.places.PlaceAllContentElement} to specify which content to
 * render. <br><br> Example: <pre><code> &lt;gmp-place-search&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-text-search-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;text-query="<var>QUERY</var>"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-text-search-request&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &nbsp;&nbsp;&lt;/gmp-place-content-config&gt;<br> &lt;/gmp-place-search&gt;
 * </code></pre> <br> To use the Place Search Element, enable the <a
 * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
 * >Places UI Kit API</a> for your project in the Google Cloud console.
 *
 * Access by calling `const {PlaceSearchElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceSearchElementOptions=} options
 * @implements {google.maps.places.PlaceSearchElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceSearchElement = function(options) {};

/**
 * The position of the attribution logo and legal disclosure button.
 * @default <code>PlaceSearchAttributionPosition.TOP</code>
 * @type {!google.maps.places.PlaceSearchAttributionPosition|null|undefined}
 */
google.maps.places.PlaceSearchElement.prototype.attributionPosition;

/**
 * The orientation variant (vertical or horizontal) of the element.
 * @default <code>PlaceSearchOrientation.VERTICAL</code>
 * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
 */
google.maps.places.PlaceSearchElement.prototype.orientation;

/**
 * Read only. Array of <code>Place</code> objects containing the IDs, locations,
 * and viewports of the currently rendered places.
 * @type {!Array<!google.maps.places.Place>}
 */
google.maps.places.PlaceSearchElement.prototype.places;

/**
 * Whether or not the list items are selectable. If true, the list items will be
 * buttons that dispatch the <code>gmp-select</code> event when clicked.
 * Accessible keyboard navigation and selection is also supported.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceSearchElement.prototype.selectable;

/**
 * If true, truncates certain lines of content to fit on one line instead of
 * wrapping.
 * @default <code>false</code>
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceSearchElement.prototype.truncationPreferred;



/**
 * Options for <code>PlaceSearchElement</code>.
 * @record
 */
google.maps.places.PlaceSearchElementOptions = function() {};

/**
 * See {@link google.maps.places.PlaceSearchElement.attributionPosition}.
 * @type {!google.maps.places.PlaceSearchAttributionPosition|null|undefined}
 */
google.maps.places.PlaceSearchElementOptions.prototype.attributionPosition;

/**
 * See {@link google.maps.places.PlaceSearchElement.orientation}.
 * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
 */
google.maps.places.PlaceSearchElementOptions.prototype.orientation;

/**
 * See {@link google.maps.places.PlaceSearchElement.selectable}
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceSearchElementOptions.prototype.selectable;

/**
 * See {@link google.maps.places.PlaceSearchElement.truncationPreferred}.
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceSearchElementOptions.prototype.truncationPreferred;

/**
 * Orientation variants for {@link google.maps.places.PlaceSearchElement}.
 *
 * Access by calling `const {PlaceSearchOrientation} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.PlaceSearchOrientation = {
  /**
   * Horizontal orientation.
   */
  HORIZONTAL: 'HORIZONTAL',
  /**
   * Vertical orientation.
   */
  VERTICAL: 'VERTICAL',
};

/**
 * An object used to fetch additional pages of Places results.
 * @record
 */
google.maps.places.PlaceSearchPagination = function() {};

/**
 * Indicates if further results are available. <code>true</code> when there is
 * an additional results page.
 * @type {boolean}
 */
google.maps.places.PlaceSearchPagination.prototype.hasNextPage;

/**
 * Fetches the next page of results. Uses the same callback function that was
 * provided to the first search request.
 * @return {void}
 */
google.maps.places.PlaceSearchPagination.prototype.nextPage = function() {};

/**
 * A Place search query to be sent to the <code>PlacesService</code>.
 * @record
 */
google.maps.places.PlaceSearchRequest = function() {};

/**
 * The bounds within which to search for Places. Both <code>location</code> and
 * <code>radius</code> will be ignored if <code>bounds</code> is set.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.bounds;

/**
 * A term to be matched against all available fields, including but not limited
 * to name, type, and address, as well as customer reviews and other third-party
 * content.
 * @type {string|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.keyword;

/**
 * A language identifier for the language in which names and addresses should be
 * returned, when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.language;

/**
 * The location around which to search for Places.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.location;

/**
 * Restricts results to only those places at the specified price level or lower.
 * Valid values are in the range from 0 (most affordable) to 4 (most expensive),
 * inclusive. Must be greater than or equal to <code>minPrice </code>, if
 * specified.
 * @type {number|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.maxPriceLevel;

/**
 * Restricts results to only those places at the specified price level or
 * higher. Valid values are in the range from 0 (most affordable) to 4 (most
 * expensive), inclusive. Must be less than or equal to <code>maxPrice</code>,
 * if specified.
 * @type {number|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.minPriceLevel;

/**
 * Restricts results to only those places that are open right now.
 * @type {boolean|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.openNow;

/**
 * The distance from the given location within which to search for Places, in
 * meters. The maximum allowed value is 50&thinsp;000.
 * @type {number|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.radius;

/**
 * Specifies the ranking method to use when returning results. Note that when
 * <code>rankBy</code> is set to <code>DISTANCE</code>, you must specify a
 * <code>location</code> but you cannot specify a <code>radius</code> or
 * <code>bounds</code>.
 * @default {@link google.maps.places.RankBy.PROMINENCE}
 * @type {!google.maps.places.RankBy|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.rankBy;

/**
 * Searches for places of the given type. The type is translated to the local
 * language of the request&#39;s target location and used as a query string. If
 * a query is also provided, it is concatenated to the localized type string.
 * Results of a different type are dropped from the response. Use this field to
 * perform language and region independent categorical searches. Valid types are
 * given <a
 * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">here</a>.
 * @type {string|undefined}
 */
google.maps.places.PlaceSearchRequest.prototype.type;

/**
 * Equivalent to <code>keyword</code>. Values in this field are combined with
 * values in the <code>keyword</code> field and passed as part of the same
 * search string.
 * @type {string|undefined}
 * @deprecated Use <code>keyword</code> instead.
 */
google.maps.places.PlaceSearchRequest.prototype.name;

/**
 * This event fires when a place is selected from a list of places. Access the
 * selection with <code>event.place</code>.
 *
 * Access by calling `const {PlaceSelectEvent} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Event}
 * @constructor
 */
google.maps.places.PlaceSelectEvent = function() {};

/**
 * The selected place.
 * @type {!google.maps.places.Place}
 */
google.maps.places.PlaceSelectEvent.prototype.place;

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a standard set of content.
 * Append this element as a child to use it. <br> For {@link
 * google.maps.places.PlaceDetailsElement}, standard content consists of: <ul>
 * <li>media</li> <li>address</li> <li>rating</li> <li>type</li> <li>price</li>
 * <li>accessible entrance icon</li> <li>website</li> <li>phone number</li>
 * <li>opening hours</li> <li>summary</li> <li>type specific highlights</li>
 * <li>reviews</li> <li>feature list</li> </ul> <br> For {@link
 * google.maps.places.PlaceDetailsCompactElement}, standard content consists of:
 * <ul> <li>media</li> <li>rating</li> <li>type</li> <li>price</li>
 * <li>accessible entrance icon</li> <li>open now status</li> </ul> <br>
 * For {@link google.maps.places.PlaceSearchElement}, standard content consists
 * of: <ul> <li>media</li> <li>rating</li> <li>type</li> <li>price</li>
 * <li>accessible entrance icon</li> </ul> <br> For example: <pre><code>
 * &lt;gmp-place-details&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-standard-content&gt;&lt;/gmp-place-standard-content&gt;<br>
 * &lt;/gmp-place-details&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceStandardContentElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceStandardContentElementOptions=} options
 * @implements {google.maps.places.PlaceStandardContentElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceStandardContentElement = function(options) {};



/**
 * Options for <code>PlaceStandardContentElement</code>.
 * @record
 */
google.maps.places.PlaceStandardContentElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s summary. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-summary&gt;&lt;/gmp-place-summary&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceSummaryElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceSummaryElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceSummaryElement = function() {};



/**
 * Options for <code>PlaceSummaryElement</code>.
 * @record
 */
google.maps.places.PlaceSummaryElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceSearchElement} to load results
 * based on a text search request. The <code>textQuery</code> property is
 * required for the search element to load. Any other configured properties will
 * be ignored if <code>textQuery</code> is not set. Append this element as a
 * child of a {@link google.maps.places.PlaceSearchElement} to load results. For
 * example: <pre><code> &lt;gmp-place-search&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-text-search-request<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;text-query="<var>QUERY</var>"<br>
 * &nbsp;&nbsp;&gt;&lt;/gmp-place-text-search-request&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
 * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
 * &nbsp;&nbsp;&lt;/gmp-place-content-config&gt;<br> &lt;/gmp-place-search&gt;
 * </code></pre>
 *
 * Access by calling `const {PlaceTextSearchRequestElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceTextSearchRequestElementOptions=} options
 * @implements {google.maps.places.PlaceTextSearchRequestElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceTextSearchRequestElement = function(options) {};

/**
 * The list of preferred EV connector types.
 * @default <code>null</code>
 * @type {!Array<!google.maps.places.EVConnectorType>|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.evConnectorTypes;

/**
 * Minimum required charging rate in kilowatts.
 * @default <code>null</code>
 * @type {number|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype
    .evMinimumChargingRateKw;

/**
 * The requested place type.
 * @default <code>null</code>
 * @type {string|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.includedType;

/**
 * Used to restrict the search to places that are currently open.
 * @default <code>null</code>
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.isOpenNow;

/**
 * Location bias for the search. Normalizes to a <code>LatLngAltitude |
 * LatLngBounds | Circle | string</code>.
 * @default <code>null</code>
 * @type {!google.maps.places.LocationBias|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.locationBias;

/**
 * Location restriction for the search. Normalizes to a
 * <code>LatLngBounds</code>.
 * @default <code>null</code>
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.locationRestriction;

/**
 * Maximum number of results to return.
 * @default <code>null</code>
 * @type {number|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.maxResultCount;

/**
 * Filter out results whose average user rating is strictly less than this
 * limit.
 * @default <code>null</code>
 * @type {number|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.minRating;

/**
 * Used to restrict the search to places that are marked as certain price
 * levels.
 * @default <code>null</code>
 * @type {!Array<!google.maps.places.PriceLevel>|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.priceLevels;

/**
 * How results will be ranked in the response.
 * @default <code>null</code>
 * @type {!google.maps.places.SearchByTextRankPreference|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.rankPreference;

/**
 * The text query for textual search.
 * @default <code>null</code>
 * @type {string|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype.textQuery;

/**
 * Used to set strict type filtering for &#39;includedType&#39;.
 * @default <code>null</code>
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElement.prototype
    .useStrictTypeFiltering;



/**
 * Options for <code>PlaceTextSearchRequestElement</code>.
 * @record
 */
google.maps.places.PlaceTextSearchRequestElementOptions = function() {};

/**
 * The list of preferred EV connector types. See {@link
 * google.maps.places.SearchByTextRequest.evSearchOptions} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.evConnectorTypes} for more
 * details.
 * @type {!Array<!google.maps.places.EVConnectorType>|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype
    .evConnectorTypes;

/**
 * Minimum required charging rate in kilowatts. See {@link
 * google.maps.places.SearchByTextRequest.evSearchOptions} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.evMinimumChargingRateKw} for
 * more details.
 * @type {number|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype
    .evMinimumChargingRateKw;

/**
 * The requested place type. See {@link
 * google.maps.places.SearchByTextRequest.includedType} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.includedType} for more
 * details.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype.includedType;

/**
 * Used to restrict the search to places that are currently open. See {@link
 * google.maps.places.SearchByTextRequest.isOpenNow} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.isOpenNow} for more details.
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype.isOpenNow;

/**
 * Location bias for the search. See {@link
 * google.maps.places.SearchByTextRequest.locationBias} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.locationBias} for more
 * details.
 * @type {!google.maps.places.LocationBias|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype.locationBias;

/**
 * Location restriction for the search. See {@link
 * google.maps.places.SearchByTextRequest.locationRestriction} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.locationRestriction} for
 * more details.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype
    .locationRestriction;

/**
 * Maximum number of results to return. See {@link
 * google.maps.places.SearchByTextRequest.maxResultCount} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.maxResultCount} for more
 * details.
 * @type {number|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype
    .maxResultCount;

/**
 * Filter out results whose average user rating is strictly less than this
 * limit. See {@link google.maps.places.SearchByTextRequest.minRating}
 * and {@link google.maps.places.PlaceTextSearchRequestElement.minRating} for
 * more details.
 * @type {number|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype.minRating;

/**
 * Used to restrict the search to places that are marked as certain price
 * levels. See {@link google.maps.places.SearchByTextRequest.priceLevels}
 * and {@link google.maps.places.PlaceTextSearchRequestElement.priceLevels} for
 * more details.
 * @type {!Array<!google.maps.places.PriceLevel>|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype.priceLevels;

/**
 * How results will be ranked in the response. See {@link
 * google.maps.places.SearchByTextRequest.rankPreference} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.rankPreference} for more
 * details.
 * @type {!google.maps.places.SearchByTextRankPreference|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype
    .rankPreference;

/**
 * The text query for textual search. See {@link
 * google.maps.places.SearchByTextRequest.textQuery} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.textQuery} for more details.
 * @type {string|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype.textQuery;

/**
 * Used to set strict type filtering for {@link
 * google.maps.places.SearchByTextRequest.includedType}. See {@link
 * google.maps.places.SearchByTextRequest.useStrictTypeFiltering} and {@link
 * google.maps.places.PlaceTextSearchRequestElement.useStrictTypeFiltering} for
 * more details.
 * @type {boolean|null|undefined}
 */
google.maps.places.PlaceTextSearchRequestElementOptions.prototype
    .useStrictTypeFiltering;

/**
 * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
 * google.maps.places.PlaceDetailsElement}, or {@link
 * google.maps.places.PlaceSearchElement} to show a place&#39;s type. Append
 * this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-type&gt;&lt;/gmp-place-type&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceTypeElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!google.maps.places.PlaceTypeElementOptions=} options
 * @implements {google.maps.places.PlaceTypeElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceTypeElement = function(options) {};



/**
 * Options for <code>PlaceTypeElement</code>.
 * @record
 */
google.maps.places.PlaceTypeElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s type-specific highlights, such as gas prices and EV charger
 * availability. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-type-specific-highlights&gt;&lt;/gmp-place-type-specific-highlights&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceTypeSpecificHighlightsElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceTypeSpecificHighlightsElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceTypeSpecificHighlightsElement = function() {};



/**
 * Options for <code>PlaceTypeSpecificHighlightsElement</code>.
 * @record
 */
google.maps.places.PlaceTypeSpecificHighlightsElementOptions = function() {};

/**
 * Configures a {@link google.maps.places.PlaceDetailsElement} to show a
 * place&#39;s website. Append this element as a child of a {@link
 * google.maps.places.PlaceContentConfigElement} to use it. For example:
 * <pre><code> &lt;gmp-place-content-config&gt;<br>
 * &nbsp;&nbsp;&lt;gmp-place-website&gt;&lt;/gmp-place-website&gt;<br>
 * &lt;/gmp-place-content-config&gt;<br> </code></pre>
 *
 * Access by calling `const {PlaceWebsiteElement} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PlaceWebsiteElementOptions}
 * @extends {HTMLElement}
 * @constructor
 */
google.maps.places.PlaceWebsiteElement = function() {};



/**
 * Options for <code>PlaceWebsiteElement</code>.
 * @record
 */
google.maps.places.PlaceWebsiteElementOptions = function() {};

/**
 * Contains methods related to searching for places and retrieving details about
 * a place.
 *
 * Access by calling `const {PlacesService} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!HTMLDivElement|!google.maps.Map} attrContainer
 * @constructor
 * @deprecated As of March 1st, 2025, google.maps.places.PlacesService is not
 *     available to new customers. Please use {@link google.maps.places.Place}
 *     instead. At this time, google.maps.places.PlacesService is not scheduled
 *     to be discontinued, but {@link google.maps.places.Place} is recommended
 *     over google.maps.places.PlacesService. While
 *     google.maps.places.PlacesService will continue to receive bug fixes for
 *     any major regressions, existing bugs in google.maps.places.PlacesService
 *     will not be addressed. At least 12 months notice will be given before
 *     support is discontinued. Please see <a
 *     href="https://developers.google.com/maps/legacy">https://developers.google.com/maps/legacy</a>
 *     for additional details and <a
 *     href="https://developers.google.com/maps/documentation/javascript/places-migration-overview">https://developers.google.com/maps/documentation/javascript/places-migration-overview</a>
 *     for the migration guide.
 */
google.maps.places.PlacesService = function(attrContainer) {};

/**
 * Retrieves a list of places based on a phone number. In most cases there
 * should be just one item in the result list, however if the request is
 * ambiguous more than one result may be returned. The {@link
 * google.maps.places.PlaceResult}s passed to the callback are subsets of a
 * full {@link google.maps.places.PlaceResult}. Your app can get a more
 * detailed {@link google.maps.places.PlaceResult} for each place by
 * calling {@link google.maps.places.PlacesService.getDetails} and passing
 * the {@link google.maps.places.PlaceResult.place_id} for the desired place.
 * @param {!google.maps.places.FindPlaceFromPhoneNumberRequest} request
 * @param {function((!Array<!google.maps.places.PlaceResult>|null),
 *     !google.maps.places.PlacesServiceStatus): void} callback
 * @return {undefined}
 */
google.maps.places.PlacesService.prototype.findPlaceFromPhoneNumber = function(
    request, callback) {};

/**
 * Retrieves a list of places based on a query string. In most cases there
 * should be just one item in the result list, however if the request is
 * ambiguous more than one result may be returned. The {@link
 * google.maps.places.PlaceResult}s passed to the callback are subsets of a
 * full {@link google.maps.places.PlaceResult}. Your app can get a more
 * detailed {@link google.maps.places.PlaceResult} for each place by
 * calling {@link google.maps.places.PlacesService.getDetails} and passing
 * the {@link google.maps.places.PlaceResult.place_id} for the desired place.
 * @param {!google.maps.places.FindPlaceFromQueryRequest} request
 * @param {function((!Array<!google.maps.places.PlaceResult>|null),
 *     !google.maps.places.PlacesServiceStatus): void} callback
 * @return {undefined}
 */
google.maps.places.PlacesService.prototype.findPlaceFromQuery = function(
    request, callback) {};

/**
 * Retrieves details about the place identified by the given
 * <code>placeId</code>.
 * @param {!google.maps.places.PlaceDetailsRequest} request
 * @param {function((!google.maps.places.PlaceResult|null),
 *     !google.maps.places.PlacesServiceStatus): void} callback
 * @return {undefined}
 */
google.maps.places.PlacesService.prototype.getDetails = function(
    request, callback) {};

/**
 * Retrieves a list of places near a particular location, based on keyword or
 * type. Location must always be specified, either by passing a
 * <code>LatLngBounds</code>, or <code>location</code> and <code>radius</code>
 * parameters. The {@link google.maps.places.PlaceResult}s passed to the
 * callback are subsets of the full {@link google.maps.places.PlaceResult}. Your
 * app can get a more detailed {@link google.maps.places.PlaceResult} for each
 * place by sending a <a
 * href="https://developers.google.com/maps/documentation/javascript/places#place_details_requests">Place
 * Details request</a> passing the {@link
 * google.maps.places.PlaceResult.place_id} for the desired place. The {@link
 * google.maps.places.PlaceSearchPagination} object can be used to fetch
 * additional pages of results (null if this is the last page of results or if
 * there is only one page of results).
 * @param {!google.maps.places.PlaceSearchRequest} request
 * @param {function((!Array<!google.maps.places.PlaceResult>|null),
 *     !google.maps.places.PlacesServiceStatus,
 *     (!google.maps.places.PlaceSearchPagination|null)): void} callback
 * @return {undefined}
 */
google.maps.places.PlacesService.prototype.nearbySearch = function(
    request, callback) {};

/**
 * Retrieves a list of places based on a query string (for example, &quot;pizza
 * in New York&quot;, or &quot;shoe stores near Ottawa&quot;). Location
 * parameters are optional; when the location is specified, results are only
 * biased toward nearby results rather than restricted to places inside the
 * area. Use <code>textSearch</code> when you want to search for places using an
 * arbitrary string, and in cases where you may not want to restrict search
 * results to a particular location. The <code>PlaceSearchPagination</code>
 * object can be used to fetch additional pages of results (null if this is the
 * last page of results or if there is only one page of results).
 * @param {!google.maps.places.TextSearchRequest} request
 * @param {function((!Array<!google.maps.places.PlaceResult>|null),
 *     !google.maps.places.PlacesServiceStatus,
 *     (!google.maps.places.PlaceSearchPagination|null)): void} callback
 * @return {undefined}
 */
google.maps.places.PlacesService.prototype.textSearch = function(
    request, callback) {};

/**
 * The status returned by the <code>PlacesService</code> on the completion of
 * its searches. Specify these by value, or by using the constant&#39;s name.
 * For example, <code>'OK'</code> or
 * <code>google.maps.places.PlacesServiceStatus.OK</code>.
 *
 * Access by calling `const {PlacesServiceStatus} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.PlacesServiceStatus = {
  /**
   * This request was invalid.
   */
  INVALID_REQUEST: 'INVALID_REQUEST',
  /**
   * The place referenced was not found.
   */
  NOT_FOUND: 'NOT_FOUND',
  /**
   * The response contains a valid result.
   */
  OK: 'OK',
  /**
   * The application has gone over its request quota.
   */
  OVER_QUERY_LIMIT: 'OVER_QUERY_LIMIT',
  /**
   * The application is not allowed to use the <code>PlacesService</code>.
   */
  REQUEST_DENIED: 'REQUEST_DENIED',
  /**
   * The <code>PlacesService</code> request could not be processed due to a
   * server error. The request may succeed if you try again.
   */
  UNKNOWN_ERROR: 'UNKNOWN_ERROR',
  /**
   * No result was found for this request.
   */
  ZERO_RESULTS: 'ZERO_RESULTS',
};

/**
 * Plus code for the Place. See <a
 * href="https://plus.codes/">https://plus.codes/</a> for more information.
 *
 * Access by calling `const {PlusCode} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.PlusCode = function() {};

/**
 * A plus code with a 1/8000th of a degree by 1/8000th of a degree area where
 * the first four characters (the area code) are dropped and replaced with a
 * locality description. For example, &quot;9G8F+5W Zurich, Switzerland&quot;.
 * @type {string|null}
 */
google.maps.places.PlusCode.prototype.compoundCode;

/**
 * A plus code with a 1/8000th of a degree by 1/8000th of a degree area. For
 * example, &quot;8FVC9G8F+5W&quot;.
 * @type {string|null}
 */
google.maps.places.PlusCode.prototype.globalCode;

/**
 * Represents a postal address (e.g. for a postal service to deliver items to).
 * Note: PostalAddress is used by the JavaScript API to instantiate objects that
 * represent data returned by the Web Service.
 *
 * Access by calling `const {PostalAddress} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.places.PostalAddressLiteral}
 * @constructor
 */
google.maps.places.PostalAddress = function() {};

/**
 * Unstructured address lines describing the lower levels of an address.
 * @type {!Array<string>}
 */
google.maps.places.PostalAddress.prototype.addressLines;

/**
 * The highest administrative subdivision which is used for postal addresses of
 * a country or region.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.administrativeArea;

/**
 * BCP-47 language code of the contents of this address. Examples:
 * &quot;zh-Hant&quot;, &quot;ja&quot;, &quot;ja-Latn&quot;, &quot;en&quot;.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.languageCode;

/**
 * Generally refers to the city/town portion of the address.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.locality;

/**
 * The name of the organization at the address.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.organization;

/**
 * Postal code of the address.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.postalCode;

/**
 * The recipient at the address.
 * @type {!Array<string>}
 */
google.maps.places.PostalAddress.prototype.recipients;

/**
 * CLDR region code of the country/region of the address. Example:
 * &quot;CH&quot; for Switzerland. See <a
 * href="https://cldr.unicode.org/">https://cldr.unicode.org/</a> and <a
 * href="https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html">https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html</a>
 * for details.
 * @type {string}
 */
google.maps.places.PostalAddress.prototype.regionCode;

/**
 * Sorting code of the address.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.sortingCode;

/**
 * Sublocality of the address such as neighborhoods, boroughs, or districts.
 * @type {string|null}
 */
google.maps.places.PostalAddress.prototype.sublocality;

/**
 * Data for hydrating a PostalAddress.
 * @record
 */
google.maps.places.PostalAddressLiteral = function() {};

/**
 * See {@link google.maps.places.PostalAddress.addressLines}.
 * @type {!Iterable<string>|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.addressLines;

/**
 * See {@link google.maps.places.PostalAddress.administrativeArea}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.administrativeArea;

/**
 * See {@link google.maps.places.PostalAddress.languageCode}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.languageCode;

/**
 * See {@link google.maps.places.PostalAddress.locality}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.locality;

/**
 * See {@link google.maps.places.PostalAddress.organization}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.organization;

/**
 * See {@link google.maps.places.PostalAddress.postalCode}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.postalCode;

/**
 * See {@link google.maps.places.PostalAddress.recipients}.
 * @type {!Iterable<string>|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.recipients;

/**
 * See {@link google.maps.places.PostalAddress.regionCode}.
 * @type {string}
 */
google.maps.places.PostalAddressLiteral.prototype.regionCode;

/**
 * See {@link google.maps.places.PostalAddress.sortingCode}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.sortingCode;

/**
 * See {@link google.maps.places.PostalAddress.sublocality}.
 * @type {string|null|undefined}
 */
google.maps.places.PostalAddressLiteral.prototype.sublocality;

/**
 * Represents a prediction substring.
 * @record
 */
google.maps.places.PredictionSubstring = function() {};

/**
 * The length of the substring.
 * @type {number}
 */
google.maps.places.PredictionSubstring.prototype.length;

/**
 * The offset to the substring&#39;s start within the description string.
 * @type {number}
 */
google.maps.places.PredictionSubstring.prototype.offset;

/**
 * Represents a prediction term.
 * @record
 */
google.maps.places.PredictionTerm = function() {};

/**
 * The offset, in unicode characters, of the start of this term in the
 * description of the place.
 * @type {number}
 */
google.maps.places.PredictionTerm.prototype.offset;

/**
 * The value of this term, for example, &quot;Taco Bell&quot;.
 * @type {string}
 */
google.maps.places.PredictionTerm.prototype.value;

/**
 * Price level for a Place.
 *
 * Access by calling `const {PriceLevel} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.PriceLevel = {
  EXPENSIVE: 'EXPENSIVE',
  FREE: 'FREE',
  INEXPENSIVE: 'INEXPENSIVE',
  MODERATE: 'MODERATE',
  VERY_EXPENSIVE: 'VERY_EXPENSIVE',
};

/**
 * The price range associated with a Place. <code>endPrice</code> could be
 * unset, which indicates a range without upper bound (e.g. &quot;More than
 * $100&quot;).
 *
 * Access by calling `const {PriceRange} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.PriceRange = function() {};

/**
 * The upper end of the price range (inclusive). Price should be lower than this
 * amount.
 * @type {!google.maps.places.Money|null}
 */
google.maps.places.PriceRange.prototype.endPrice;

/**
 * The low end of the price range (inclusive). Price should be at or above this
 * amount.
 * @type {!google.maps.places.Money}
 */
google.maps.places.PriceRange.prototype.startPrice;

/**
 * Represents a single Query Autocomplete prediction.
 * @record
 */
google.maps.places.QueryAutocompletePrediction = function() {};

/**
 * This is the unformatted version of the query suggested by the Places service.
 * @type {string}
 */
google.maps.places.QueryAutocompletePrediction.prototype.description;

/**
 * A set of substrings in the place&#39;s description that match elements in the
 * user&#39;s input, suitable for use in highlighting those substrings. Each
 * substring is identified by an offset and a length, expressed in unicode
 * characters.
 * @type {!Array<!google.maps.places.PredictionSubstring>}
 */
google.maps.places.QueryAutocompletePrediction.prototype.matched_substrings;

/**
 * Only available if prediction is a place. A place ID that can be used to
 * retrieve details about this place using the place details service (see {@link
 * google.maps.places.PlacesService.getDetails}).
 * @type {string|undefined}
 */
google.maps.places.QueryAutocompletePrediction.prototype.place_id;

/**
 * Information about individual terms in the above description. Categorical
 * terms come first (for example, &quot;restaurant&quot;). Address terms appear
 * from most to least specific. For example, &quot;San Francisco&quot;, and
 * &quot;CA&quot;.
 * @type {!Array<!google.maps.places.PredictionTerm>}
 */
google.maps.places.QueryAutocompletePrediction.prototype.terms;

/**
 * A QueryAutocompletion request to be sent to the
 * <code>QueryAutocompleteService</code>.
 * @record
 */
google.maps.places.QueryAutocompletionRequest = function() {};

/**
 * Bounds for prediction biasing. Predictions will be biased towards, but not
 * restricted to, the given <code>bounds</code>. Both <code>location</code> and
 * <code>radius</code> will be ignored if <code>bounds</code> is set.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 */
google.maps.places.QueryAutocompletionRequest.prototype.bounds;

/**
 * The user entered input string.
 * @type {string}
 */
google.maps.places.QueryAutocompletionRequest.prototype.input;

/**
 * Location for prediction biasing. Predictions will be biased towards the given
 * <code>location</code> and <code>radius</code>. Alternatively,
 * <code>bounds</code> can be used.
 * @type {!google.maps.LatLng|undefined}
 */
google.maps.places.QueryAutocompletionRequest.prototype.location;

/**
 * The character position in the input term at which the service uses text for
 * predictions (the position of the cursor in the input field).
 * @type {number|undefined}
 */
google.maps.places.QueryAutocompletionRequest.prototype.offset;

/**
 * The radius of the area used for prediction biasing. The <code>radius</code>
 * is specified in meters, and must always be accompanied by a
 * <code>location</code> property. Alternatively, <code>bounds</code> can be
 * used.
 * @type {number|undefined}
 */
google.maps.places.QueryAutocompletionRequest.prototype.radius;

/**
 * Ranking options for a PlaceSearchRequest.
 *
 * Access by calling `const {RankBy} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {number}
 */
google.maps.places.RankBy = {
  /**
   * Ranks place results by distance from the location.
   */
  DISTANCE: 0,
  /**
   * Ranks place results by their prominence.
   */
  PROMINENCE: 1,
};

/**
 * Information about a review of a Place.
 *
 * Access by calling `const {Review} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.Review = function() {};

/**
 * The reviewer.
 * @type {!google.maps.places.AuthorAttribution|null}
 */
google.maps.places.Review.prototype.authorAttribution;

/**
 * A link where user can flag a problem with the review.
 * @type {string|null}
 */
google.maps.places.Review.prototype.flagContentURI;

/**
 * A link to show the review on Google Maps.
 * @type {string|null}
 */
google.maps.places.Review.prototype.googleMapsURI;

/**
 * The review text in its original language.
 * @type {string|null}
 */
google.maps.places.Review.prototype.originalText;

/**
 * An IETF language code indicating the original language of the review.
 * @type {string|null}
 */
google.maps.places.Review.prototype.originalTextLanguageCode;

/**
 * @type {!Date|null}
 */
google.maps.places.Review.prototype.publishTime;

/**
 * The rating of this review, a number between 1.0 and 5.0 (inclusive).
 * @type {number|null}
 */
google.maps.places.Review.prototype.rating;

/**
 * A string of formatted recent time, expressing the review time relative to the
 * current time in a form appropriate for the language and country. For example
 * `&quot;a month ago&quot;&#39;.
 * @type {string|null}
 */
google.maps.places.Review.prototype.relativePublishTimeDescription;

/**
 * The localized text of the review.
 * @type {string|null}
 */
google.maps.places.Review.prototype.text;

/**
 * An IETF language code indicating the localized language of the review.
 * @type {string|null}
 */
google.maps.places.Review.prototype.textLanguageCode;

/**
 * The month of the date when the review author visited the place. This field is
 * 0-based; 0 is January, and 11 is December.
 * @type {number|null}
 */
google.maps.places.Review.prototype.visitDateMonth;

/**
 * The year of the date when the review author visited the place.
 * @type {number|null}
 */
google.maps.places.Review.prototype.visitDateYear;

/**
 * AI-generated summary of the place user reviews.
 *
 * Access by calling `const {ReviewSummary} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.ReviewSummary = function() {};

/**
 * The text for the disclosure relating to this summary.
 * @type {string|null}
 */
google.maps.places.ReviewSummary.prototype.disclosureText;

/**
 * The language code of the disclosure text.
 * @type {string|null}
 */
google.maps.places.ReviewSummary.prototype.disclosureTextLanguageCode;

/**
 * A URI to report a problem with the summary.
 * @type {string|null}
 */
google.maps.places.ReviewSummary.prototype.flagContentURI;

/**
 * A URI to show reviews of this place on Google Maps.
 * @type {string|null}
 */
google.maps.places.ReviewSummary.prototype.reviewsURI;

/**
 * The summary of user reviews.
 * @type {string|null}
 */
google.maps.places.ReviewSummary.prototype.text;

/**
 * The language code of the summary of user reviews.
 * @type {string|null}
 */
google.maps.places.ReviewSummary.prototype.textLanguageCode;

/**
 * A widget that provides query predictions based on a user&#39;s text input. It
 * attaches to an input element of type <code>text</code>, and listens for text
 * entry in that field. The list of predictions is presented as a drop-down
 * list, and is updated as text is entered.
 *
 * Access by calling `const {SearchBox} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {!HTMLInputElement} inputField
 * @param {(!google.maps.places.SearchBoxOptions|null)=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 * @deprecated As of March 1st, 2025, google.maps.places.SearchBox is not
 *     available to new customers. At this time, google.maps.places.SearchBox is
 *     not scheduled to be discontinued and will continue to receive bug fixes
 *     for any major regressions. At least 12 months notice will be given before
 *     support is discontinued. Please see <a
 *     href="https://developers.google.com/maps/legacy">https://developers.google.com/maps/legacy</a>
 *     for additional details.
 */
google.maps.places.SearchBox = function(inputField, opts) {};

/**
 * Returns the bounds to which query predictions are biased.
 * @return {!google.maps.LatLngBounds|undefined}
 */
google.maps.places.SearchBox.prototype.getBounds = function() {};

/**
 * Returns the query selected by the user to be used with
 * <code>places_changed</code> event.
 * @return {!Array<!google.maps.places.PlaceResult>|undefined}
 */
google.maps.places.SearchBox.prototype.getPlaces = function() {};

/**
 * Sets the region to use for biasing query predictions. Results will only be
 * biased towards this area and not be completely restricted to it.
 * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null}
 *     bounds
 * @return {undefined}
 */
google.maps.places.SearchBox.prototype.setBounds = function(bounds) {};

/**
 * The options that can be set on a <code>SearchBox</code> object.
 * @record
 */
google.maps.places.SearchBoxOptions = function() {};

/**
 * The area towards which to bias query predictions. Predictions are biased
 * towards, but not restricted to, queries targeting these bounds.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null|undefined}
 */
google.maps.places.SearchBoxOptions.prototype.bounds;

/**
 * RankPreference enum for SearchByTextRequest.
 *
 * Access by calling `const {SearchByTextRankPreference} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.SearchByTextRankPreference = {
  /**
   * Ranks results by distance.
   */
  DISTANCE: 'DISTANCE',
  /**
   * Ranks results by relevance.
   */
  RELEVANCE: 'RELEVANCE',
};

/**
 * Request interface for {@link google.maps.places.Place.searchByText}.
 * @record
 */
google.maps.places.SearchByTextRequest = function() {};

/**
 * EV-related options that can be specified for a place search request.
 * @type {!google.maps.places.EVSearchOptions|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.evSearchOptions;

/**
 * Fields to be included in the response, <a
 * href="https://developers.google.com/maps/billing/understanding-cost-of-use#places-product">which
 * will be billed for</a>. If <code>[&#39;*&#39;]</code> is passed in, all
 * available fields will be returned and billed for (this is not recommended for
 * production deployments). You can request any property in the {@link
 * google.maps.places.Place} class as a field.
 * @type {!Array<string>}
 */
google.maps.places.SearchByTextRequest.prototype.fields;

/**
 * The requested place type. Full list of types supported: <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-types">https://developers.google.com/maps/documentation/places/web-service/place-types</a>.
 * Only one included type is supported. See {@link
 * google.maps.places.SearchByTextRequest.useStrictTypeFiltering}
 * @type {string|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.includedType;

/**
 * Used to restrict the search to places that are currently open.
 * @default <code>false</code>
 * @type {boolean|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.isOpenNow;

/**
 * Place details will be displayed with the preferred language if available.
 * Will default to the browser&#39;s language preference. Current list of
 * supported languages: <a
 * href="https://developers.google.com/maps/faq#languagesupport">https://developers.google.com/maps/faq#languagesupport</a>.
 * @type {string|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.language;

/**
 * The region to search. This location serves as a bias which means results
 * around given location might be returned. Cannot be set along with
 * locationRestriction.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|!google.maps.CircleLiteral|!google.maps.Circle|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.locationBias;

/**
 * The region to search. This location serves as a restriction which means
 * results outside given location will not be returned. Cannot be set along with
 * locationBias.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.locationRestriction;

/**
 * Maximum number of results to return. It must be between 1 and 20,
 * inclusively.
 * @type {number|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.maxResultCount;

/**
 * Filter out results whose average user rating is strictly less than this
 * limit. A valid value must be an float between 0 and 5 (inclusively) at a 0.5
 * cadence i.e. [0, 0.5, 1.0, ... , 5.0] inclusively. The input rating will be
 * rounded up to the nearest 0.5(ceiling). For instance, a rating of 0.6 will
 * eliminate all results with a less than 1.0 rating.
 * @type {number|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.minRating;

/**
 * Used to restrict the search to places that are marked as certain price
 * levels. Any combinations of price levels can be chosen. Defaults to all price
 * levels.
 * @type {!Array<!google.maps.places.PriceLevel>|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.priceLevels;

/**
 * How results will be ranked in the response.
 * @default <code>SearchByTextRankPreference.RELEVANCE</code>
 * @type {!google.maps.places.SearchByTextRankPreference|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.rankPreference;

/**
 * The Unicode country/region code (CLDR) of the location where the request is
 * coming from. This parameter is used to display the place details, like
 * region-specific place name, if available. The parameter can affect results
 * based on applicable law. For more information, see <a
 * href="https://www.unicode.org/cldr/charts/latest/supplemental/territory_language_information.html">https://www.unicode.org/cldr/charts/latest/supplemental/territory_language_information.html</a>.
 * Note that 3-digit region codes are not currently supported.
 * @type {string|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.region;

/**
 * Required when you do not use {@link
 * google.maps.places.SearchByTextRequest.query}. The text query for textual
 * search.
 * @type {string|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.textQuery;

/**
 * Used to set strict type filtering for {@link
 * google.maps.places.SearchByTextRequest.includedType}. If set to true, only
 * results of the same type will be returned.
 * @default <code>false</code>
 * @type {boolean|undefined}
 */
google.maps.places.SearchByTextRequest.prototype.useStrictTypeFiltering;

/**
 * @type {string|undefined}
 * @deprecated Please use textQuery instead
 */
google.maps.places.SearchByTextRequest.prototype.query;

/**
 * Available only in the v=beta channel: https://goo.gle/3oAthT3.
 * @type {!google.maps.places.SearchByTextRankPreference|undefined}
 * @deprecated Please use rankPreference instead.
 */
google.maps.places.SearchByTextRequest.prototype.rankBy;

/**
 * RankPreference enum for SearchNearbyRequest.
 *
 * Access by calling `const {SearchNearbyRankPreference} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.places.SearchNearbyRankPreference = {
  /**
   * Ranks results by distance.
   */
  DISTANCE: 'DISTANCE',
  /**
   * Ranks results by popularity.
   */
  POPULARITY: 'POPULARITY',
};

/**
 * Request interface for {@link google.maps.places.Place.searchNearby}. For more
 * information on the request, see <a
 * href="https://developers.google.com/maps/documentation/places/web-service/reference/rest/v1/places/searchNearby">Places
 * API reference</a>.
 * @record
 */
google.maps.places.SearchNearbyRequest = function() {};

/**
 * Excluded primary place types. See the <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-types">full
 * list of types supported</a>. A place can only have a single primary type. Up
 * to 50 types may be specified. If you specify the same type in both
 * <code>included</code> and <code>excluded</code> lists, an INVALID_ARGUMENT
 * error is returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.excludedPrimaryTypes;

/**
 * Excluded place types. See the <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-types">full
 * list of types supported</a>. A place can have many different place types. Up
 * to 50 types may be specified. If you specify the same type in both
 * <code>included</code> and <code>excluded</code> lists, an INVALID_ARGUMENT
 * error is returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.excludedTypes;

/**
 * Fields to be included in the response, <a
 * href="https://developers.google.com/maps/billing/understanding-cost-of-use#places-product">which
 * will be billed for</a>. If <code>[&#39;*&#39;]</code> is passed in, all
 * available fields will be returned and billed for (this is not recommended for
 * production deployments). You can request any property in the {@link
 * google.maps.places.Place} class as a field.
 * @type {!Array<string>}
 */
google.maps.places.SearchNearbyRequest.prototype.fields;

/**
 * Included primary place types. See the <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-types">full
 * list of types supported</a>. A place can only have a single primary type. Up
 * to 50 types may be specified. If you specify the same type in both
 * <code>included</code> and <code>excluded</code> lists, an INVALID_ARGUMENT
 * error is returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.includedPrimaryTypes;

/**
 * Included place types. See the <a
 * href="https://developers.google.com/maps/documentation/places/web-service/place-types">full
 * list of types supported</a>. A place can have many different place types. Up
 * to 50 types may be specified. If you specify the same type in both
 * <code>included</code> and <code>excluded</code> lists, an INVALID_ARGUMENT
 * error is returned.
 * @type {!Array<string>|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.includedTypes;

/**
 * Place details will be displayed with the preferred language if available.
 * Will default to the browser&#39;s language preference. Current list of
 * supported languages: <a
 * href="https://developers.google.com/maps/faq#languagesupport">https://developers.google.com/maps/faq#languagesupport</a>.
 * @type {string|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.language;

/**
 * The region to search, specified as a circle with center and radius. Results
 * outside given location are not returned.
 * @type {!google.maps.Circle|!google.maps.CircleLiteral}
 */
google.maps.places.SearchNearbyRequest.prototype.locationRestriction;

/**
 * Maximum number of results to return. For acceptable values and default, see
 * <a
 * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#searchnearbyrequest">Places
 * API reference</a>.
 * @type {number|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.maxResultCount;

/**
 * How results will be ranked in the response.
 * @default <code>SearchNearbyRankPreference.POPULARITY</code>
 * @type {!google.maps.places.SearchNearbyRankPreference|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.rankPreference;

/**
 * The Unicode country/region code (CLDR) of the location where the request is
 * coming from. This parameter is used to display the place details, like
 * region-specific place name, if available. The parameter can affect results
 * based on applicable law. For more information, see <a
 * href="https://www.unicode.org/cldr/charts/latest/supplemental/territory_language_information.html">https://www.unicode.org/cldr/charts/latest/supplemental/territory_language_information.html</a>.
 * Note that 3-digit region codes are not currently supported.
 * @type {string|undefined}
 */
google.maps.places.SearchNearbyRequest.prototype.region;

/**
 * Identifies a substring within a given text.
 *
 * Access by calling `const {StringRange} = await
 * google.maps.importLibrary("places")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.places.StringRange = function() {};

/**
 * Zero-based offset of the last Unicode character of the substring (exclusive).
 * @type {number}
 */
google.maps.places.StringRange.prototype.endOffset;

/**
 * Zero-based offset of the first Unicode character of the substring
 * (inclusive).
 * @type {number}
 */
google.maps.places.StringRange.prototype.startOffset;

/**
 * Contains structured information about the place&#39;s description, divided
 * into a main text and a secondary text, including an array of matched
 * substrings from the autocomplete input, identified by an offset and a length,
 * expressed in unicode characters.
 * @record
 */
google.maps.places.StructuredFormatting = function() {};

/**
 * This is the main text part of the unformatted description of the place
 * suggested by the Places service. Usually the name of the place.
 * @type {string}
 */
google.maps.places.StructuredFormatting.prototype.main_text;

/**
 * A set of substrings in the main text that match elements in the user&#39;s
 * input, suitable for use in highlighting those substrings. Each substring is
 * identified by an offset and a length, expressed in unicode characters.
 * @type {!Array<!google.maps.places.PredictionSubstring>}
 */
google.maps.places.StructuredFormatting.prototype.main_text_matched_substrings;

/**
 * This is the secondary text part of the unformatted description of the place
 * suggested by the Places service. Usually the location of the place.
 * @type {string}
 */
google.maps.places.StructuredFormatting.prototype.secondary_text;

/**
 * A text search request to be sent to the <code>PlacesService</code>.
 * @record
 */
google.maps.places.TextSearchRequest = function() {};

/**
 * Bounds used to bias results when searching for Places (optional). Both
 * <code>location</code> and <code>radius</code> will be ignored if
 * <code>bounds</code> is set. Results will not be restricted to those inside
 * these bounds; but, results inside it will rank higher.
 * @type {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|undefined}
 */
google.maps.places.TextSearchRequest.prototype.bounds;

/**
 * A language identifier for the language in which names and addresses should be
 * returned, when possible. See the <a
 * href="https://developers.google.com/maps/faq#languagesupport">list of
 * supported languages</a>.
 * @type {string|null|undefined}
 */
google.maps.places.TextSearchRequest.prototype.language;

/**
 * The center of the area used to bias results when searching for Places.
 * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|undefined}
 */
google.maps.places.TextSearchRequest.prototype.location;

/**
 * The request&#39;s query term. For example, the name of a place (&#39;Eiffel
 * Tower&#39;), a category followed by the name of a location (&#39;pizza in New
 * York&#39;), or the name of a place followed by a location disambiguator
 * (&#39;Starbucks in Sydney&#39;).
 * @type {string|undefined}
 */
google.maps.places.TextSearchRequest.prototype.query;

/**
 * The radius of the area used to bias results when searching for Places, in
 * meters.
 * @type {number|undefined}
 */
google.maps.places.TextSearchRequest.prototype.radius;

/**
 * A region code to bias results towards. The region code accepts a <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
 * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
 * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
 * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
 * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
 * United Kingdom of Great Britain and Northern Ireland&quot;).
 * @type {string|null|undefined}
 */
google.maps.places.TextSearchRequest.prototype.region;

/**
 * Searches for places of the given type. The type is translated to the local
 * language of the request&#39;s target location and used as a query string. If
 * a query is also provided, it is concatenated to the localized type string.
 * Results of a different type are dropped from the response. Use this field to
 * perform language and region independent categorical searches. Valid types are
 * given <a
 * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">here</a>.
 * @type {string|undefined}
 */
google.maps.places.TextSearchRequest.prototype.type;

/**
 * @const
 */
google.maps.routes = {};

/**
 * Extra computations to perform for a {@link
 * google.maps.routes.RouteMatrix.computeRouteMatrix} request.
 *
 * Access by calling `const {ComputeRouteMatrixExtraComputation} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.ComputeRouteMatrixExtraComputation = {
  /**
   * Toll information for the matrix item(s).
   */
  TOLLS: 'TOLLS',
};

/**
 * Request for a route matrix.
 * @record
 */
google.maps.routes.ComputeRouteMatrixRequest = function() {};

/**
 * The arrival time. <br><br> Note: Can only be set when {@link
 * google.maps.routes.ComputeRouteMatrixRequest.travelMode} is set to
 * <code>TRANSIT</code>. You can specify either {@link
 * google.maps.routes.ComputeRouteMatrixRequest.departureTime} or {@link
 * google.maps.routes.ComputeRouteMatrixRequest.arrivalTime}, but not both.
 * Transit trips are available for up to 7 days in the past or 100 days in the
 * future.
 * @type {!Date|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.arrivalTime;

/**
 * The departure time. If you don&#39;t set this value, then this value defaults
 * to the time that you made the request. <br><br> Note: You can only specify a
 * time in the past when {@link
 * google.maps.routes.ComputeRouteMatrixRequest.travelMode} is set to
 * <code>TRANSIT</code>. Transit trips are available for up to 7 days in the
 * past or 100 days in the future.
 * @type {!Date|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.departureTime;

/**
 * Array of destinations, which determines the columns of the response matrix. A
 * value passed as a string may be an address, a <a
 * href="https://plus.codes">plus code</a>, or a Place resource name. Altitude
 * values are not taken into consideration.
 * @type {!Iterable<string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitudeLiteral|google.maps.routes.DirectionalLocationLiteral|google.maps.places.Place|google.maps.routes.Waypoint>}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.destinations;

/**
 * A list of extra computations which may be used to complete the request.
 * <br><br> Note: These extra computations may return extra fields on the
 * response. These extra fields must also be specified in {@link
 * google.maps.routes.ComputeRouteMatrixRequest.fields} to be returned in the
 * response.
 * @type {!Iterable<!google.maps.routes.ComputeRouteMatrixExtraComputation>|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.extraComputations;

/**
 * Collection of fields to be fetched. Specify <code>[&quot;*&quot;]</code> for
 * all fields.
 * @type {!Iterable<string>}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.fields;

/**
 * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
 * For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">Unicode
 * Locale Identifier</a>. See <a
 * href="https://developers.google.com/maps/faq#languagesupport">Language
 * Support</a> for the list of supported languages. When you don&#39;t provide
 * this value, the language is inferred from your Google Maps JavaScript API <a
 * href="https://developers.google.com/maps/documentation/javascript/localization#Language">localization
 * settings</a>. Otherwise, the language is inferred from the location of the
 * first origin.
 * @type {string|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.language;

/**
 * Array of origins, which determines the rows of the response matrix. A value
 * passed as a string may be an address, a <a href="https://plus.codes">plus
 * code</a>, or a Place resource name. Altitude values are not taken into
 * consideration. <br><br> Several size restrictions apply to the cardinality of
 * origins and destinations: <ul> <li> The total number of origins and
 * destinations specified as <code>string</code>s or {@link
 * google.maps.places.Place}s must be no greater than 50. </li> <li> The product
 * of the number of origins and the number of destinations must be no greater
 * than 625. </li> <li> The product of the number of origins and destinations
 * must be no greater than 100 if {@link
 * google.maps.routes.ComputeRouteMatrixRequest.routingPreference} is set to
 * <code>TRAFFIC_AWARE_OPTIMAL</code>. </li> <li> The product of the number of
 * origins and destinations must be no greater than 100 if {@link
 * google.maps.routes.ComputeRouteMatrixRequest.travelMode} is set to
 * <code>TRANSIT</code>. </li> </ul>
 * @type {!Iterable<string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitudeLiteral|google.maps.routes.DirectionalLocationLiteral|google.maps.places.Place|google.maps.routes.RouteMatrixOrigin|google.maps.routes.Waypoint>}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.origins;

/**
 * The region code, specified as a ccTLD (&quot;top-level domain&quot;)
 * two-character value. For more information see <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">Country
 * code top-level domains</a>. When you don&#39;t provide this value, the region
 * is inferred from your Google Maps JavaScript API <a
 * href="https://developers.google.com/maps/documentation/javascript/localization#Region">localization
 * settings</a>. Otherwise, the region is inferred from the location of the
 * first origin.
 * @type {string|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.region;

/**
 * Specifies how to compute the route matrix. The server attempts to use the
 * selected routing preference to compute the route matrix. If the routing
 * preference results in an error or an extra long latency, an error is
 * returned. You can specify this option only when {@link
 * google.maps.routes.ComputeRouteMatrixRequest.travelMode} is
 * <code>DRIVING</code> or <code>TWO_WHEELER</code>, otherwise the request
 * fails.
 * @type {!google.maps.routes.RoutingPreference|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.routingPreference;

/**
 * Specifies the assumptions to use when calculating time in traffic. This
 * setting affects the value returned in {@link
 * google.maps.routes.RouteMatrixItem.durationMillis} which contains the
 * predicted time in traffic based on historical averages. {@link
 * google.maps.routes.ComputeRouteMatrixRequest.trafficModel} is only available
 * for requests that have set {@link
 * google.maps.routes.ComputeRouteMatrixRequest.routingPreference} to
 * <code>TRAFFIC_AWARE_OPTIMAL</code> and {@link
 * google.maps.routes.ComputeRouteMatrixRequest.travelMode} to
 * <code>DRIVING</code>. Defaults to <code>BEST_GUESS</code>.
 * @type {!google.maps.TrafficModel|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.trafficModel;

/**
 * Specifies preferences that influence the route returned for
 * <code>TRANSIT</code> routes. <br><br> Note: Can only be specified when {@link
 * google.maps.routes.ComputeRouteMatrixRequest.travelMode} is set to
 * <code>TRANSIT</code>.
 * @type {!google.maps.routes.TransitPreference|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.transitPreference;

/**
 * Specifies the mode of transportation.
 * @type {!google.maps.TravelMode|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.travelMode;

/**
 * Specifies the units of measure for the display fields. If you don&#39;t
 * provide this value, then the display units are inferred from the location of
 * the first origin.
 * @type {!google.maps.UnitSystem|undefined}
 */
google.maps.routes.ComputeRouteMatrixRequest.prototype.units;

/**
 * Extra computations to perform for a {@link
 * google.maps.routes.Route.computeRoutes} request.
 *
 * Access by calling `const {ComputeRoutesExtraComputation} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.ComputeRoutesExtraComputation = {
  /**
   * Flyover information for the route(s). The
   * <code>&quot;polylineDetails&quot;</code> field must be specified in {@link
   * google.maps.routes.ComputeRoutesRequest.fields} to return this information.
   * This data will only currently be populated for certain metros in India.
   * This feature is experimental, and the SKU/charge is subject to change.
   */
  FLYOVER_INFO_ON_POLYLINE: 'FLYOVER_INFO_ON_POLYLINE',
  /**
   * Estimated fuel consumption for the route(s).
   */
  FUEL_CONSUMPTION: 'FUEL_CONSUMPTION',
  /**
   * Navigation instructions presented as a formatted HTML text string. This
   * content is meant to be read as-is and is for display only. Do not
   * programmatically parse it.
   */
  HTML_FORMATTED_NAVIGATION_INSTRUCTIONS:
      'HTML_FORMATTED_NAVIGATION_INSTRUCTIONS',
  /**
   * Narrow road information for the route(s). The
   * <code>&quot;polylineDetails&quot;</code> field must be specified in {@link
   * google.maps.routes.ComputeRoutesRequest.fields} to return this information.
   * This data will only currently be populated for certain metros in India.
   * This feature is experimental, and the SKU/charge is subject to change.
   */
  NARROW_ROAD_INFO_ON_POLYLINE: 'NARROW_ROAD_INFO_ON_POLYLINE',
  /**
   * Toll information for the route(s).
   */
  TOLLS: 'TOLLS',
  /**
   * Traffic aware polylines for the route(s).
   */
  TRAFFIC_ON_POLYLINE: 'TRAFFIC_ON_POLYLINE',
};

/**
 * Request for routes.
 * @record
 */
google.maps.routes.ComputeRoutesRequest = function() {};

/**
 * The arrival time. <br><br> Note: Can only be set when {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode} is set to
 * <code>TRANSIT</code>. You can specify either {@link
 * google.maps.routes.ComputeRoutesRequest.departureTime} or {@link
 * google.maps.routes.ComputeRoutesRequest.arrivalTime}, but not both. Transit
 * trips are available for up to 7 days in the past or 100 days in the future.
 * @type {!Date|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.arrivalTime;

/**
 * Specifies whether to calculate alternate routes in addition to the route. No
 * alternative routes are returned for requests that have intermediate
 * waypoints.
 * @type {boolean|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.computeAlternativeRoutes;

/**
 * The departure time. If you don&#39;t set this value, then this value defaults
 * to the time that you made the request. <br><br> Note: You can only specify a
 * time in the past when {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode} is set to
 * <code>TRANSIT</code>. Transit trips are available for up to 7 days in the
 * past or 100 days in the future.
 * @type {!Date|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.departureTime;

/**
 * The destination of the route. A value passed as a string may be an address,
 * <a href="https://plus.codes">plus code</a>, or a Place resource name.
 * Altitude values are not taken into consideration for computing routes.
 * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitudeLiteral|google.maps.routes.DirectionalLocationLiteral|google.maps.places.Place|google.maps.routes.Waypoint}
 */
google.maps.routes.ComputeRoutesRequest.prototype.destination;

/**
 * A list of extra computations which may be used to complete the request.
 * <br><br> Note: These extra computations may return extra fields on the
 * response. These extra fields must also be specified in {@link
 * google.maps.routes.ComputeRoutesRequest.fields} to be returned in the
 * response.
 * @type {!Iterable<!google.maps.routes.ComputeRoutesExtraComputation>|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.extraComputations;

/**
 * Collection of fields to be fetched. Specify <code>[&quot;*&quot;]</code> for
 * all fields.
 * @type {!Iterable<string>}
 */
google.maps.routes.ComputeRoutesRequest.prototype.fields;

/**
 * A set of waypoints along the route (excluding terminal points), for either
 * stopping at or passing by. Up to 25 intermediate waypoints are supported.
 * @type {!Iterable<!google.maps.routes.Waypoint>|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.intermediates;

/**
 * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
 * For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">Unicode
 * Locale Identifier</a>. See <a
 * href="https://developers.google.com/maps/faq#languagesupport">Language
 * Support</a> for the list of supported languages. When you don&#39;t provide
 * this value, the language is inferred from your Google Maps JavaScript API <a
 * href="https://developers.google.com/maps/documentation/javascript/localization#Language">localization
 * settings</a>. Otherwise, the language is inferred from the location of the
 * origin.
 * @type {string|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.language;

/**
 * If set to true, the service attempts to minimize the overall cost of the
 * route by re-ordering the specified intermediate waypoints. The request fails
 * if any of the intermediate waypoints is a via waypoint. Use {@link
 * google.maps.routes.Route.optimizedIntermediateWaypointIndices} in the
 * response to find the new ordering. If
 * <code>&quot;optimizedIntermediateWaypointIndices&quot;</code> is not
 * requested in {@link google.maps.routes.ComputeRoutesRequest.fields}, the
 * request fails. If set to false, {@link
 * google.maps.routes.Route.optimizedIntermediateWaypointIndices} in the
 * response will be empty.
 * @type {boolean|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.optimizeWaypointOrder;

/**
 * The origin of the route. A value passed as a string may be an address, <a
 * href="https://plus.codes">plus code</a>, or a Place resource name. Altitude
 * values are not taken into consideration for computing routes.
 * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitudeLiteral|google.maps.routes.DirectionalLocationLiteral|google.maps.places.Place|google.maps.routes.Waypoint}
 */
google.maps.routes.ComputeRoutesRequest.prototype.origin;

/**
 * Specifies the preference for the quality of the polyline.
 * @type {!google.maps.routes.PolylineQuality|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.polylineQuality;

/**
 * The region code, specified as a ccTLD (&quot;top-level domain&quot;)
 * two-character value. For more information see <a
 * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">Country
 * code top-level domains</a>. When you don&#39;t provide this value, the region
 * is inferred from your Google Maps JavaScript API <a
 * href="https://developers.google.com/maps/documentation/javascript/localization#Language">localization
 * settings</a>. Otherwise, the region is inferred from the location of the
 * origin.
 * @type {string|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.region;

/**
 * Specifies what reference routes to calculate as part of the request in
 * addition to the default route. A reference route is a route with a different
 * route calculation objective than the default route. For example a
 * <code>FUEL_EFFICIENT</code> reference route calculation takes into account
 * various parameters that would generate an optimal fuel efficient route. When
 * using this feature, look for {@link google.maps.routes.Route.routeLabels} on
 * the resulting routes.
 * @type {!Iterable<!google.maps.routes.ReferenceRoute>|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.requestedReferenceRoutes;

/**
 * A set of conditions to satisfy that affect the way routes are calculated. For
 * example you can specify features to avoid such as toll roads or highways.
 * @type {!google.maps.routes.RouteModifiers|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.routeModifiers;

/**
 * Specifies how to compute the route. The server attempts to use the selected
 * routing preference to compute the route. If the routing preference results in
 * an error or an extra long latency, an error is returned. You can specify this
 * option only when {@link google.maps.routes.ComputeRoutesRequest.travelMode}
 * is <code>DRIVING</code> or <code>TWO_WHEELER</code>, otherwise the request
 * fails.
 * @type {!google.maps.routes.RoutingPreference|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.routingPreference;

/**
 * Specifies the assumptions to use when calculating time in traffic. This
 * setting affects the value of {@link google.maps.routes.Route.durationMillis}
 * and {@link google.maps.routes.RouteLeg.durationMillis} which contain the
 * predicted time in traffic based on historical averages. {@link
 * google.maps.routes.ComputeRoutesRequest.trafficModel} is only available for
 * requests that have set {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference} to
 * <code>TRAFFIC_AWARE_OPTIMAL</code> and {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode} to <code>DRIVING</code>.
 * Defaults to <code>BEST_GUESS</code>.
 * @type {!google.maps.TrafficModel|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.trafficModel;

/**
 * Specifies preferences that influence the route returned for
 * <code>TRANSIT</code> routes. <br><br> Note: Can only be specified when {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode} is set to
 * <code>TRANSIT</code>.
 * @type {!google.maps.routes.TransitPreference|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.transitPreference;

/**
 * Specifies the mode of transportation.
 * @type {!google.maps.TravelMode|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.travelMode;

/**
 * Specifies the units of measure for the display fields, such as navigation
 * instructions. The units of measure used for the route, leg, step distance,
 * and duration are not affected by this value. If you don&#39;t provide this
 * value, then the display units are inferred from the location of the origin.
 * @type {!google.maps.UnitSystem|undefined}
 */
google.maps.routes.ComputeRoutesRequest.prototype.units;

/**
 * Encapsulates a geographic point and an optional heading.
 *
 * Access by calling `const {DirectionalLocation} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @implements {google.maps.routes.DirectionalLocationLiteral}
 * @extends {google.maps.LatLngAltitude}
 * @constructor
 */
google.maps.routes.DirectionalLocation = function() {};

/**
 * The compass heading associated with the direction of the flow of traffic.
 * Heading values can be numbers from 0 to 360, where 0 specifies a heading of
 * due North, 90 specifies a heading of due East, and so on. You can use this
 * field only for <code>DRIVING</code> and <code>TWO_WHEELER</code> {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode}.
 * @type {number|null|undefined}
 */
google.maps.routes.DirectionalLocation.prototype.heading;

/**
 * Converts to an object.
 * @return {!google.maps.routes.DirectionalLocationLiteral}
 */
google.maps.routes.DirectionalLocation.prototype.toJSON = function() {};

/**
 * Object literals are accepted in place of {@link
 * google.maps.routes.DirectionalLocation} instances as a convenience. These are
 * converted to {@link google.maps.routes.DirectionalLocation} when the Maps JS
 * API encounters them.
 * @extends {google.maps.LatLngAltitudeLiteral}
 * @record
 */
google.maps.routes.DirectionalLocationLiteral = function() {};

/**
 * The compass heading associated with the direction of the flow of traffic.
 * Heading values can be numbers from 0 to 360, where 0 specifies a heading of
 * due North, 90 specifies a heading of due East, and so on. You can use this
 * field only for <code>DRIVING</code> and <code>TWO_WHEELER</code> {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode}.
 * @type {number|null|undefined}
 */
google.maps.routes.DirectionalLocationLiteral.prototype.heading;

/**
 * Information related to how and why a fallback result was used in a {@link
 * google.maps.routes.Route.computeRoutes} response. If this field is set, then
 * it means the server used a different routing mode from your preferred mode as
 * fallback.
 *
 * Access by calling `const {FallbackInfo} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.FallbackInfo = function() {};

/**
 * The reason why fallback response was used instead of the original response.
 * This field is only populated when the fallback mode is triggered and the
 * fallback response is returned.
 * @type {!google.maps.routes.FallbackReason|null|undefined}
 */
google.maps.routes.FallbackInfo.prototype.reason;

/**
 * Routing mode used for the response. If fallback was triggered, the mode may
 * be different from routing preference set in the original client request.
 * @type {!google.maps.routes.FallbackRoutingMode|null|undefined}
 */
google.maps.routes.FallbackInfo.prototype.routingMode;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.FallbackInfo.prototype.toJSON = function() {};

/**
 * The reason that a fallback response was returned in a {@link
 * google.maps.routes.Route.computeRoutes} response.
 *
 * Access by calling `const {FallbackReason} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.FallbackReason = {
  /**
   * We were not able to finish the calculation with your preferred routing mode
   * on time, but we were able to return a result calculated by an alternative
   * mode.
   */
  LATENCY_EXCEEDED: 'LATENCY_EXCEEDED',
  /**
   * A server error happened while calculating routes with your preferred
   * routing mode, but we were able to return a result calculated by an
   * alternative mode.
   */
  SERVER_ERROR: 'SERVER_ERROR',
};

/**
 * The actual routing mode used when a fallback response is returned in a {@link
 * google.maps.routes.Route.computeRoutes} response.
 *
 * Access by calling `const {FallbackRoutingMode} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.FallbackRoutingMode = {
  /**
   * Indicates the <code>TRAFFIC_AWARE</code> {@link
   * google.maps.routes.RoutingPreference} was used to compute the response.
   */
  TRAFFIC_AWARE: 'TRAFFIC_AWARE',
  /**
   * Indicates the <code>TRAFFIC_UNAWARE</code> {@link
   * google.maps.routes.RoutingPreference} was used to compute the response.
   */
  TRAFFIC_UNAWARE: 'TRAFFIC_UNAWARE',
};

/**
 * Geocoding about the locations used as waypoints. Only populated for address
 * waypoints. Includes details about the geocoding results for the purposes of
 * determining what the address was geocoded to.
 *
 * Access by calling `const {GeocodedWaypoint} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.GeocodedWaypoint = function() {};

/**
 * Indicates the status code resulting from the geocoding operation.
 * @type {!google.maps.RPCStatus|null}
 */
google.maps.routes.GeocodedWaypoint.prototype.geocoderStatus;

/**
 * The index of the corresponding intermediate waypoint in the request. Only
 * populated if the corresponding waypoint is an intermediate waypoint.
 * @type {number|null}
 */
google.maps.routes.GeocodedWaypoint.prototype.intermediateWaypointRequestIndex;

/**
 * Indicates that the geocoder did not return an exact match for the original
 * request, though it was able to match part of the requested address. You may
 * wish to examine the original request for misspellings and/or an incomplete
 * address.
 * @type {boolean}
 */
google.maps.routes.GeocodedWaypoint.prototype.partialMatch;

/**
 * The place ID for this result.
 * @type {string}
 */
google.maps.routes.GeocodedWaypoint.prototype.placeId;

/**
 * The type(s) of the result, in the form of zero or more type tags. See <a
 * href="https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types">https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types</a>
 * for supported types.
 * @type {!Array<string>}
 */
google.maps.routes.GeocodedWaypoint.prototype.types;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.GeocodedWaypoint.prototype.toJSON = function() {};

/**
 * Contains {@link google.maps.routes.GeocodedWaypoint}s for origin,
 * destination, and intermediate waypoints. Only populated for address
 * waypoints.
 *
 * Access by calling `const {GeocodingResults} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.GeocodingResults = function() {};

/**
 * The geocoded waypoint for the destination.
 * @type {!google.maps.routes.GeocodedWaypoint|null|undefined}
 */
google.maps.routes.GeocodingResults.prototype.destination;

/**
 * A list of intermediate geocoded waypoints each containing an index field that
 * corresponds to the zero-based position of the waypoint in the order they were
 * specified in the request.
 * @type {!Array<!google.maps.routes.GeocodedWaypoint>|undefined}
 */
google.maps.routes.GeocodingResults.prototype.intermediates;

/**
 * The geocoded waypoint for the origin.
 * @type {!google.maps.routes.GeocodedWaypoint|null|undefined}
 */
google.maps.routes.GeocodingResults.prototype.origin;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.GeocodingResults.prototype.toJSON = function() {};

/**
 * Provides summarized information about a multi-modal segment of the {@link
 * google.maps.routes.RouteLeg.steps} of a route. A multi-modal segment is
 * defined as one or more contiguous {@link
 * google.maps.routes.RouteLegStep}&#39;s that have the same {@link
 * google.maps.TravelMode}.
 *
 * Access by calling `const {MultiModalSegment} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.MultiModalSegment = function() {};

/**
 * Instructions for navigating this multi-modal segment.
 * @type {string|null}
 */
google.maps.routes.MultiModalSegment.prototype.instructions;

/**
 * The navigation maneuver to perform at this step. See <a
 * href="https://developers.google.com/maps/documentation/routes/reference/rest/v2/TopLevel/computeRoutes#maneuver">Maneuver</a>
 * for a list of possible values.
 * @type {string|null}
 */
google.maps.routes.MultiModalSegment.prototype.maneuver;

/**
 * The corresponding {@link google.maps.routes.RouteLegStep} index that is the
 * end of a multi-modal segment.
 * @type {number}
 */
google.maps.routes.MultiModalSegment.prototype.stepEndIndex;

/**
 * The corresponding {@link google.maps.routes.RouteLegStep} index that is the
 * start of a multi-modal segment.
 * @type {number}
 */
google.maps.routes.MultiModalSegment.prototype.stepStartIndex;

/**
 * The travel mode used for this multi-modal segment.
 * @type {!google.maps.TravelMode|null}
 */
google.maps.routes.MultiModalSegment.prototype.travelMode;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.MultiModalSegment.prototype.toJSON = function() {};

/**
 * Encapsulates information about a road feature along a stretch of polyline.
 *
 * Access by calling `const {PolylineDetailInfo} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.PolylineDetailInfo = function() {};

/**
 * The end index of this road feature in the polyline.
 * @type {number|null}
 */
google.maps.routes.PolylineDetailInfo.prototype.endIndex;

/**
 * Denotes whether the road feature exists along the polyline.
 * @type {!google.maps.routes.RoadFeatureState|null}
 */
google.maps.routes.PolylineDetailInfo.prototype.presence;

/**
 * The start index of this road feature in the polyline.
 * @type {number|null}
 */
google.maps.routes.PolylineDetailInfo.prototype.startIndex;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.PolylineDetailInfo.prototype.toJSON = function() {};

/**
 * Details corresponding to a given index or contiguous segment of a polyline.
 * Given a polyline with points P_0, P_1, ... , P_N (zero-based index), the
 * <code>PolylineDetails</code> describes a road feature for a given interval.
 *
 * Access by calling `const {PolylineDetails} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.PolylineDetails = function() {};

/**
 * Flyover details along the polyline.
 * @type {!Array<!google.maps.routes.PolylineDetailInfo>}
 */
google.maps.routes.PolylineDetails.prototype.flyoverInfo;

/**
 * Narrow road details along the polyline.
 * @type {!Array<!google.maps.routes.PolylineDetailInfo>}
 */
google.maps.routes.PolylineDetails.prototype.narrowRoadInfo;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.PolylineDetails.prototype.toJSON = function() {};

/**
 * Specifies the quality of the polyline.
 *
 * Access by calling `const {PolylineQuality} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.PolylineQuality = {
  /**
   * Specifies a high-quality polyline that is composed using more points than
   * <code>OVERVIEW</code> at the cost of increased response size. Use this
   * value when you need more precision.
   */
  HIGH_QUALITY: 'HIGH_QUALITY',
  /**
   * Specifies an overview polyline that is composed using a small number of
   * points. Using this option has a lower request latency compared to
   * <code>HIGH_QUALITY</code>. Use this value when displaying an overview of
   * the route.
   */
  OVERVIEW: 'OVERVIEW',
};

/**
 * A supported reference route on a {@link
 * google.maps.routes.ComputeRoutesRequest}.
 *
 * Access by calling `const {ReferenceRoute} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.ReferenceRoute = {
  /**
   * Fuel efficient route.
   */
  FUEL_EFFICIENT: 'FUEL_EFFICIENT',
  /**
   * Route with shorter travel distance.
   */
  SHORTER_DISTANCE: 'SHORTER_DISTANCE',
};

/**
 * Encapsulates the states of road features along a stretch of polyline.
 *
 * Access by calling `const {RoadFeatureState} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.RoadFeatureState = {
  /**
   * The road feature does not exist.
   */
  DOES_NOT_EXIST: 'DOES_NOT_EXIST',
  /**
   * The road feature exists.
   */
  EXISTS: 'EXISTS',
};

/**
 * Contains a route, which consists of a series of connected road segments that
 * join beginning, ending, and intermediate waypoints.
 *
 * Access by calling `const {Route} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.Route = function() {};

/**
 * A description of the route.
 * @type {string|null|undefined}
 */
google.maps.routes.Route.prototype.description;

/**
 * The travel distance of the route, in meters.
 * @type {number|undefined}
 */
google.maps.routes.Route.prototype.distanceMeters;

/**
 * The length of time needed to navigate the route in milliseconds. If you
 * set {@link google.maps.routes.ComputeRoutesRequest.routingPreference} to
 * <code>TRAFFIC_UNAWARE</code>, then this value is the same as {@link
 * google.maps.routes.Route.staticDurationMillis}. If you set {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference} to either
 * <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code>, then this
 * value is calculated taking traffic conditions into account. <br><br> Note: If
 * the duration exceeds 2^53 milliseconds, then this value is
 * <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null|undefined}
 */
google.maps.routes.Route.prototype.durationMillis;

/**
 * A collection of legs (path segments between waypoints) that make up the
 * route. Each leg corresponds to the trip between two non-<code>via</code>
 * waypoints. <br><br> For example: <ul> <li>A route with no intermediate
 * waypoints has only one leg.</li> <li> A route that includes one
 * non-<code>via</code> intermediate waypoint has two legs. </li> <li> A route
 * that includes one <code>via</code> intermediate waypoint has one leg. </li>
 * </ul> The order of the legs matches the order of waypoints from
 * <code>origin</code> to <code>intermediates</code> to
 * <code>destination</code>.
 * @type {!Array<!google.maps.routes.RouteLeg>|undefined}
 */
google.maps.routes.Route.prototype.legs;

/**
 * Text representations of properties of the {@link google.maps.routes.Route}.
 * @type {!google.maps.routes.RouteLocalizedValues|null|undefined}
 */
google.maps.routes.Route.prototype.localizedValues;

/**
 * If you set {@link
 * google.maps.routes.ComputeRoutesRequest.optimizeWaypointOrder} to
 * <code>true</code>, this field contains the optimized ordering of intermediate
 * waypoints. Otherwise, this field is empty. The index starts with 0 for the
 * first intermediate waypoint provided in the input. <br><br> For example, if
 * you give an input of: <ul> <li>Origin: LA</li> <li>Intermediate waypoints:
 * Dallas, Bangor, Phoenix</li> <li>Destination: New York</li> </ul> and the
 * optimized intermediate waypoint order is Phoenix, Dallas, Bangor, then this
 * field will be <code>[2, 0, 1]</code>.
 * @type {!Array<number>|undefined}
 */
google.maps.routes.Route.prototype.optimizedIntermediateWaypointIndices;

/**
 * The list of {@link google.maps.LatLngAltitude}s of the route, which can be
 * used to draw a route polyline. Granularity of the path can be controlled by
 * setting {@link google.maps.routes.ComputeRoutesRequest.polylineQuality}.
 * @type {!Array<!google.maps.LatLngAltitude>|undefined}
 */
google.maps.routes.Route.prototype.path;

/**
 * Contains information about details along the path.
 * @type {!google.maps.routes.PolylineDetails|null|undefined}
 */
google.maps.routes.Route.prototype.polylineDetails;

/**
 * Labels for the route that are useful to identify specific properties of to
 * compare against others.
 * @type {!Array<!google.maps.routes.RouteLabel>|undefined}
 */
google.maps.routes.Route.prototype.routeLabels;

/**
 * An opaque token that can be passed to Navigation SDK to reconstruct the route
 * during navigation, and, in the event of rerouting, honor the original
 * intention when the route was created. Treat this token as an opaque blob.
 * Don&#39;t compare its value across requests as its value may change even if
 * the service returns the exact same route. <br><br> Note:
 * <code>routeToken</code> is only available for requests that have set {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference} to
 * <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code>. It is not
 * supported for requests that have <code>via</code> waypoints.
 * @type {string|null|undefined}
 */
google.maps.routes.Route.prototype.routeToken;

/**
 * Groupings of sections of the route path with their corresponding speed
 * reading. For this field to be populated, {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference} must be set to
 * <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code> and {@link
 * google.maps.routes.ComputeRoutesRequest.extraComputations} must include
 * <code>TRAFFIC_ON_POLYLINE</code>.
 * @type {!Array<!google.maps.routes.SpeedPath>|undefined}
 */
google.maps.routes.Route.prototype.speedPaths;

/**
 * The duration of traveling through the route without taking traffic conditions
 * into consideration. <br><br> Note: If the duration exceeds 2^53 milliseconds,
 * then this value is <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null|undefined}
 */
google.maps.routes.Route.prototype.staticDurationMillis;

/**
 * Additional information about the route.
 * @type {!google.maps.routes.RouteTravelAdvisory|null|undefined}
 */
google.maps.routes.Route.prototype.travelAdvisory;

/**
 * The viewport bounding box of the route.
 * @type {!google.maps.LatLngBounds|null|undefined}
 */
google.maps.routes.Route.prototype.viewport;

/**
 * An array of warnings to show when displaying the route.
 * @type {!Array<string>|undefined}
 */
google.maps.routes.Route.prototype.warnings;

/**
 * Returns the primary route along with optional alternate routes, given a set
 * of terminal and intermediate waypoints. <br><br> Note: This method requires
 * that you specify a response field mask in the request by setting the {@link
 * google.maps.routes.ComputeRoutesRequest.fields} property. The value is a list
 * of field paths. <br><br> For example: <ul> <li> Field mask of all available
 * fields: <code>fields: [&#39;*&#39;]</code></li> <li> Field mask of
 * Route-level duration, distance, and path: <code>fields:
 * [&#39;durationMillis&#39;, &#39;distanceMeters&#39;,
 * &#39;path&#39;]</code></li> </ul> <br> Use of the wildcard response field
 * mask <code>fields: [&#39;*&#39;]</code> is discouraged because: <ul>
 * <li>Selecting only the fields that you need helps our server save computation
 * cycles, allowing us to return the result to you with a lower latency.</li>
 * <li>Selecting only the fields that you need in your production job ensures
 * stable latency performance. We might add more response fields in the future,
 * and those new fields might require extra computation time. If you select all
 * fields, or if you select all fields at the top level, then you might
 * experience performance degradation because any new field we add will be
 * automatically included in the response.</li> <li>Selecting only the fields
 * that you need results in a smaller response size, and thus a faster load over
 * the network.</li> </ul>
 * @param {!google.maps.routes.ComputeRoutesRequest} request
 * @return {!Promise<!{routes:(!Array<!google.maps.routes.Route>|undefined),
 *     fallbackInfo:(!google.maps.routes.FallbackInfo|null),
 *     geocodingResults:(!google.maps.routes.GeocodingResults|null)}>}
 */
google.maps.routes.Route.computeRoutes = function(request) {};

/**
 * Creates polylines for the route based on the data available. <br><br>
 * Multi-modal polylines: <ul> <li> Requirements: <ul> <li> The
 * <code>&quot;path&quot;</code> and <code>&quot;legs&quot;</code> fields must
 * be requested in {@link google.maps.routes.ComputeRoutesRequest.fields} </li>
 * <li> {@link google.maps.routes.ComputeRoutesRequest.travelMode} must be set
 * to <code>TRANSIT</code>. </li> </ul> </li> <li> Creates a polyline for each
 * multi-modal route segment. Polylines are styled according to the segment
 * travel mode and transit line data when available. Options can be passed in to
 * alter the polyline style based on travel mode and transit line. </li> </ul>
 * <br> Traffic polylines: <ul> <li> Requirements: <ul> <li>The
 * <code>&quot;path&quot;</code> and <code>&quot;travelAdvisory&quot;</code>
 * fields (or just <code>&quot;speedPaths&quot;</code> as a shorthand) must be
 * requested in {@link google.maps.routes.ComputeRoutesRequest.fields}. </li>
 * <li> {@link google.maps.routes.ComputeRoutesRequest.routingPreference} must
 * be set to <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code>.
 * </li> <li> {@link google.maps.routes.ComputeRoutesRequest.extraComputations}
 * must include <code>TRAFFIC_ON_POLYLINE</code>. </li> </ul> </li> <li> Creates
 * a polyline for each route interval when the speed reading differs from the
 * preceding interval. Polylines have default speed-based styling applied.
 * Options can be passed in to alter the polyline style based on speed. </li>
 * </ul> <br> Overall polyline: <ul> <li> Requirements: <ul> <li> The
 * <code>&quot;path&quot;</code> or <code>&quot;legs&quot;</code> field must be
 * requested in {@link google.maps.routes.ComputeRoutesRequest.fields}. </li>
 * </ul> </li> <li> Creates a single polyline for the entire route with default
 * styling applied. Options can be passed in to alter the polyline style based
 * on the route travel mode. For further customization, create polylines
 * directly using {@link google.maps.routes.Route.path} or {@link
 * google.maps.routes.RouteLeg.path}. </li> </ul>
 * @param {!google.maps.routes.RoutePolylineOptions=} options
 * @return {!Array<!google.maps.Polyline>}
 */
google.maps.routes.Route.prototype.createPolylines = function(options) {};

/**
 * Creates markers for the route labeled &#39;A&#39;, &#39;B&#39;, &#39;C&#39;,
 * etc. for each waypoint. Markers have default styling applied. Options can be
 * passed in to alter the marker style based on the marker index or properties
 * of the corresponding {@link google.maps.routes.RouteLeg}. The {@link
 * google.maps.routes.WaypointMarkerDetails.leg} parameter will be undefined if
 * the route has no legs. <br><br> The <code>&quot;legs&quot;</code> field must
 * be requested in {@link google.maps.routes.ComputeRoutesRequest.fields} in
 * order for intermediate waypoints to be included.
 * @param {(!google.maps.marker.AdvancedMarkerElementOptions|(function(!google.maps.marker.AdvancedMarkerElementOptions,
 *     !google.maps.routes.WaypointMarkerDetails):
 *     !google.maps.marker.AdvancedMarkerElementOptions))=} options
 * @return {!Promise<!Array<!google.maps.marker.AdvancedMarkerElement>>}
 */
google.maps.routes.Route.prototype.createWaypointAdvancedMarkers = function(
    options) {};

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.Route.prototype.toJSON = function() {};

/**
 * Labels for the route that are useful to identify specific properties to
 * compare against others.
 *
 * Access by calling `const {RouteLabel} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.RouteLabel = {
  /**
   * The default &quot;best&quot; route returned for the route computation.
   */
  DEFAULT_ROUTE: 'DEFAULT_ROUTE',
  /**
   * An alternative to the default &quot;best&quot; route. Routes like this will
   * be returned when {@link
   * google.maps.routes.ComputeRoutesRequest.computeAlternativeRoutes} is
   * specified.
   */
  DEFAULT_ROUTE_ALTERNATE: 'DEFAULT_ROUTE_ALTERNATE',
  /**
   * Fuel efficient route. Routes labeled with this value are determined to be
   * optimized for eco parameters such as fuel consumption.
   */
  FUEL_EFFICIENT: 'FUEL_EFFICIENT',
  /**
   * Shorter travel distance route. This is an experimental feature.
   */
  SHORTER_DISTANCE: 'SHORTER_DISTANCE',
};

/**
 * Contains a segment between non-<code>via</code> waypoints.
 *
 * Access by calling `const {RouteLeg} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteLeg = function() {};

/**
 * The travel distance of the route leg, in meters.
 * @type {number}
 */
google.maps.routes.RouteLeg.prototype.distanceMeters;

/**
 * The length of time needed to navigate the route leg in milliseconds. If you
 * set {@link google.maps.routes.ComputeRoutesRequest.routingPreference} to
 * <code>TRAFFIC_UNAWARE</code>, then this value is the same as
 * <code>staticDurationMillis</code>. If you set {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference} to either
 * <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code>, then this
 * value is calculated taking traffic conditions into account. <br><br> Note: If
 * the duration exceeds 2^53 milliseconds, then this value is
 * <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null}
 */
google.maps.routes.RouteLeg.prototype.durationMillis;

/**
 * The end location of this leg. This location might be different from {@link
 * google.maps.routes.ComputeRoutesRequest.destination}. For example,
 * when {@link google.maps.routes.ComputeRoutesRequest.destination} is not near
 * a road, this is a point on the road.
 * @type {!google.maps.routes.DirectionalLocation|null}
 */
google.maps.routes.RouteLeg.prototype.endLocation;

/**
 * Text representations of properties of the <code>RouteLeg</code>.
 * @type {!google.maps.routes.RouteLegLocalizedValues|null}
 */
google.maps.routes.RouteLeg.prototype.localizedValues;

/**
 * The list of {@link google.maps.LatLngAltitude}s of the route leg, which can
 * be used to draw a route leg polyline. Granularity of the path can be
 * controlled by setting {@link
 * google.maps.routes.ComputeRoutesRequest.polylineQuality}.
 * @type {!Array<!google.maps.LatLngAltitude>}
 */
google.maps.routes.RouteLeg.prototype.path;

/**
 * Groupings of sections of the route leg path with their corresponding speed
 * reading. For this field to be populated, {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference} must be set to
 * <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code> and {@link
 * google.maps.routes.ComputeRoutesRequest.extraComputations} must include
 * <code>TRAFFIC_ON_POLYLINE</code>.
 * @type {!Array<!google.maps.routes.SpeedPath>}
 */
google.maps.routes.RouteLeg.prototype.speedPaths;

/**
 * The start location of this leg. This location might be different from {@link
 * google.maps.routes.ComputeRoutesRequest.origin}. For example, when {@link
 * google.maps.routes.ComputeRoutesRequest.origin} is not near a road, this is a
 * point on the road.
 * @type {!google.maps.routes.DirectionalLocation|null}
 */
google.maps.routes.RouteLeg.prototype.startLocation;

/**
 * The duration of traveling through the leg without taking traffic conditions
 * into consideration. <br><br> Note: If the duration exceeds 2^53 milliseconds,
 * then this value is <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null}
 */
google.maps.routes.RouteLeg.prototype.staticDurationMillis;

/**
 * An array of steps denoting segments within this leg. Each step represents one
 * navigation instruction.
 * @type {!Array<!google.maps.routes.RouteLegStep>}
 */
google.maps.routes.RouteLeg.prototype.steps;

/**
 * Overview information about the steps in this <code>RouteLeg</code>. This
 * field is only populated for <code>TRANSIT</code> routes.
 * @type {!google.maps.routes.StepsOverview|null}
 */
google.maps.routes.RouteLeg.prototype.stepsOverview;

/**
 * Contains the additional information that the user should be informed about,
 * such as possible traffic zone restrictions, on a route leg.
 * @type {!google.maps.routes.RouteLegTravelAdvisory|null}
 */
google.maps.routes.RouteLeg.prototype.travelAdvisory;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteLeg.prototype.toJSON = function() {};

/**
 * Text representations of the {@link google.maps.routes.RouteLeg}.
 *
 * Access by calling `const {RouteLegLocalizedValues} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteLegLocalizedValues = function() {};

/**
 * Travel distance of the route leg in text form.
 * @type {string|null}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.distance;

/**
 * The distance text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.distanceLanguage;

/**
 * Duration, represented in text form and localized to the region of the query.
 * Takes traffic conditions into consideration.
 * @type {string|null}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.duration;

/**
 * The duration text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.durationLanguage;

/**
 * Duration without taking traffic conditions into consideration, represented in
 * text form.
 * @type {string|null}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.staticDuration;

/**
 * The static duration text&#39;s BCP-47 language code, such as
 * &quot;en-US&quot; or &quot;sr-Latn&quot;.
 * @type {string|null}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.staticDurationLanguage;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteLegLocalizedValues.prototype.toJSON = function() {};

/**
 * Contains a segment of a <code>RouteLeg</code>. A step corresponds to a single
 * navigation instruction. Route legs are made up of steps.
 *
 * Access by calling `const {RouteLegStep} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteLegStep = function() {};

/**
 * The travel distance of this step, in meters.
 * @type {number}
 */
google.maps.routes.RouteLegStep.prototype.distanceMeters;

/**
 * The end location of this step.
 * @type {!google.maps.routes.DirectionalLocation|null}
 */
google.maps.routes.RouteLegStep.prototype.endLocation;

/**
 * Instructions for navigating this step.
 * @type {string|null}
 */
google.maps.routes.RouteLegStep.prototype.instructions;

/**
 * Text representations of properties of the <code>RouteLegStep</code>.
 * @type {!google.maps.routes.RouteLegStepLocalizedValues|null}
 */
google.maps.routes.RouteLegStep.prototype.localizedValues;

/**
 * The navigation maneuver to perform at this step. See <a
 * href="https://developers.google.com/maps/documentation/routes/reference/rest/v2/TopLevel/computeRoutes#maneuver">Maneuver</a>
 * for a list of possible values.
 * @type {string|null}
 */
google.maps.routes.RouteLegStep.prototype.maneuver;

/**
 * The list of {@link google.maps.LatLngAltitude}s of the route leg step, which
 * can be used to draw a route leg step polyline. Granularity of the path can be
 * controlled by setting {@link
 * google.maps.routes.ComputeRoutesRequest.polylineQuality}. The
 * <code>&quot;path&quot;</code> field must be requested in {@link
 * google.maps.routes.ComputeRoutesRequest.fields} in order for this field to be
 * populated.
 * @type {!Array<!google.maps.LatLngAltitude>}
 */
google.maps.routes.RouteLegStep.prototype.path;

/**
 * The start location of this step.
 * @type {!google.maps.routes.DirectionalLocation|null}
 */
google.maps.routes.RouteLegStep.prototype.startLocation;

/**
 * The duration of traveling through this step without taking traffic conditions
 * into consideration. <br><br> Note: If the duration exceeds 2^53 milliseconds,
 * then this value is <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null}
 */
google.maps.routes.RouteLegStep.prototype.staticDurationMillis;

/**
 * Details pertaining to this step if the travel mode is <code>TRANSIT</code>.
 * @type {!google.maps.routes.TransitDetails|null}
 */
google.maps.routes.RouteLegStep.prototype.transitDetails;

/**
 * The travel mode used for this step.
 * @type {!google.maps.TravelMode|null}
 */
google.maps.routes.RouteLegStep.prototype.travelMode;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteLegStep.prototype.toJSON = function() {};

/**
 * Text representations of properties of the <code>RouteLegStep</code>.
 *
 * Access by calling `const {RouteLegStepLocalizedValues} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteLegStepLocalizedValues = function() {};

/**
 * Travel distance of the route leg step in text form.
 * @type {string|null}
 */
google.maps.routes.RouteLegStepLocalizedValues.prototype.distance;

/**
 * The distance text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.RouteLegStepLocalizedValues.prototype.distanceLanguage;

/**
 * Duration without taking traffic conditions into consideration, represented in
 * text form.
 * @type {string|null}
 */
google.maps.routes.RouteLegStepLocalizedValues.prototype.staticDuration;

/**
 * The static duration text&#39;s BCP-47 language code, such as
 * &quot;en-US&quot; or &quot;sr-Latn&quot;. <br><br> For more information, see
 * <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.RouteLegStepLocalizedValues.prototype.staticDurationLanguage;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteLegStepLocalizedValues.prototype.toJSON = function() {};

/**
 * Contains additional information that the user should be informed about on
 * a {@link google.maps.routes.RouteLeg}.
 *
 * Access by calling `const {RouteLegTravelAdvisory} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteLegTravelAdvisory = function() {};

/**
 * Speed reading intervals detailing traffic density. Applicable in case of
 * <code>TRAFFIC_AWARE</code> and <code>TRAFFIC_AWARE_OPTIMAL</code> {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference}. The intervals
 * cover the entire polyline of the {@link google.maps.routes.RouteLeg} without
 * overlap. The start point of a specified interval is the same as the end point
 * of the preceding interval. <br><br> Example: <br> <pre> <code> polyline: A
 * ---- B ---- C ---- D ---- E ---- F ---- G <br> speedReadingIntervals: [A,C),
 * [C,D), [D,G) </code> </pre>
 * @type {!Array<!google.maps.routes.SpeedReadingInterval>|undefined}
 */
google.maps.routes.RouteLegTravelAdvisory.prototype.speedReadingIntervals;

/**
 * Contains information about tolls on the specific {@link
 * google.maps.routes.RouteLeg}. This field is only populated if tolls are
 * expected on the {@link google.maps.routes.RouteLeg}. If this field is set
 * but {@link google.maps.routes.TollInfo.estimatedPrices} is not populated,then
 * the route leg contains tolls but the estimated price is unknown. If this
 * field is empty, then there are no tolls on the {@link
 * google.maps.routes.RouteLeg}.
 * @type {google.maps.routes.TollInfo|null}
 */
google.maps.routes.RouteLegTravelAdvisory.prototype.tollInfo;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteLegTravelAdvisory.prototype.toJSON = function() {};

/**
 * Text representations of properties of the <code>Route</code>.
 *
 * Access by calling `const {RouteLocalizedValues} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteLocalizedValues = function() {};

/**
 * Travel distance of the route represented in text form.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.distance;

/**
 * The distance text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.distanceLanguage;

/**
 * Duration, represented in text form and localized to the region of the query.
 * Takes traffic conditions into consideration. Note: If you did not request
 * traffic information, this value is the same value as
 * <code>staticDuration</code>.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.duration;

/**
 * The duration text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.durationLanguage;

/**
 * Duration without taking traffic conditions into consideration, represented in
 * text form.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.staticDuration;

/**
 * The static duration text&#39;s BCP-47 language code, such as
 * &quot;en-US&quot; or &quot;sr-Latn&quot;.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.staticDurationLanguage;

/**
 * Transit fare represented in text form.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.transitFare;

/**
 * The transit fare text&#39;s BCP-47 language code, such as &quot;en-US&quot;
 * or &quot;sr-Latn&quot;.
 * @type {string|null}
 */
google.maps.routes.RouteLocalizedValues.prototype.transitFareLanguage;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteLocalizedValues.prototype.toJSON = function() {};

/**
 * A matrix of routes computed for a set of origin/destination pairs by {@link
 * google.maps.routes.RouteMatrix.computeRouteMatrix}
 *
 * Access by calling `const {RouteMatrix} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteMatrix = function() {};

/**
 * The rows of the matrix. Each row corresponds to an origin and contains an
 * array of {@link google.maps.routes.RouteMatrixItem}s, each representing a
 * route to a destination.
 * @type {!Array<!google.maps.routes.RouteMatrixRow>}
 */
google.maps.routes.RouteMatrix.prototype.rows;

/**
 * Takes in a list of origins and destinations and returns a matrix containing
 * route information for each combination of origin and destination. <br><br>
 * Note: This method requires that you specify a response field mask in the
 * request by setting the {@link
 * google.maps.routes.ComputeRouteMatrixRequest.fields} property. The value is a
 * list of field paths. <br><br> For example: <ul> <li> Field mask of all
 * available fields: <code>fields: [&#39;*&#39;]</code></li> <li> Field mask of
 * Route-level duration and distance: <code>fields: [&#39;durationMillis&#39;,
 * &#39;distanceMeters&#39;]</code></li> </ul> <br> Use of the wildcard response
 * field mask <code>fields: [&#39;*&#39;]</code> is discouraged because: <ul>
 * <li>Selecting only the fields that you need helps our server save computation
 * cycles, allowing us to return the result to you with a lower latency.</li>
 * <li>Selecting only the fields that you need in your production job ensures
 * stable latency performance. We might add more response fields in the future,
 * and those new fields might require extra computation time. If you select all
 * fields, or if you select all fields at the top level, then you might
 * experience performance degradation because any new field we add will be
 * automatically included in the response.</li> <li>Selecting only the fields
 * that you need results in a smaller response size, and thus a faster load over
 * the network.</li> </ul>
 * @param {!google.maps.routes.ComputeRouteMatrixRequest} request
 * @return {!Promise<!{matrix:!google.maps.routes.RouteMatrix}>}
 */
google.maps.routes.RouteMatrix.computeRouteMatrix = function(request) {};

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteMatrix.prototype.toJSON = function() {};

/**
 * Contains route information computed for an origin/destination pair passed
 * to {@link google.maps.routes.RouteMatrix.computeRouteMatrix}.
 *
 * Access by calling `const {RouteMatrixItem} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteMatrixItem = function() {};

/**
 * Indicates whether the route was found or not.
 * @type {!google.maps.routes.RouteMatrixItemCondition|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.condition;

/**
 * The travel distance of the route in meters.
 * @type {number|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.distanceMeters;

/**
 * The length of time needed to navigate the route in milliseconds. If you
 * set {@link google.maps.routes.ComputeRouteMatrixRequest.routingPreference} to
 * <code>TRAFFIC_UNAWARE</code>, then this value is the same as {@link
 * google.maps.routes.RouteMatrixItem.staticDurationMillis}. If you set {@link
 * google.maps.routes.ComputeRouteMatrixRequest.routingPreference} to either
 * <code>TRAFFIC_AWARE</code> or <code>TRAFFIC_AWARE_OPTIMAL</code>, then this
 * value is calculated taking traffic conditions into account. <br><br> Note: If
 * the duration exceeds 2^53 milliseconds, then this value is
 * <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.durationMillis;

/**
 * Error that occurred during the computation of the route.
 * @type {!google.maps.routes.RouteMatrixItemError|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.error;

/**
 * In some cases when the server is not able to compute the route with the given
 * preferences for this particular origin/destination pair, it may fall back to
 * using a different mode of computation. When a fallback is used, this field
 * contains detailed information about the fallback response. Otherwise this
 * field is unset.
 * @type {!google.maps.routes.FallbackInfo|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.fallbackInfo;

/**
 * Text representations of properties of the {@link
 * google.maps.routes.RouteMatrixItem}.
 * @type {!google.maps.routes.RouteMatrixItemLocalizedValues|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.localizedValues;

/**
 * The duration of traveling through the route without taking traffic conditions
 * into consideration. <br><br> Note: If the duration exceeds 2^53 milliseconds,
 * then this value is <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.staticDurationMillis;

/**
 * Additional information about the route.
 * @type {!google.maps.routes.RouteTravelAdvisory|null|undefined}
 */
google.maps.routes.RouteMatrixItem.prototype.travelAdvisory;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteMatrixItem.prototype.toJSON = function() {};

/**
 * The condition of a route for a given origin/destination pair.
 *
 * Access by calling `const {RouteMatrixItemCondition} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.RouteMatrixItemCondition = {
  /**
   * A route was found.
   */
  ROUTE_EXISTS: 'ROUTE_EXISTS',
  /**
   * No route could be found.
   */
  ROUTE_NOT_FOUND: 'ROUTE_NOT_FOUND',
};

/**
 * An error that occurred during {@link
 * google.maps.routes.RouteMatrix.computeRouteMatrix} for a specific
 * origin/destination pair.
 *
 * Access by calling `const {RouteMatrixItemError} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @extends {Error}
 * @constructor
 */
google.maps.routes.RouteMatrixItemError = function() {};

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteMatrixItemError.prototype.toJSON = function() {};

/**
 * Text representations of the {@link google.maps.routes.RouteMatrixItem}.
 *
 * Access by calling `const {RouteMatrixItemLocalizedValues} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteMatrixItemLocalizedValues = function() {};

/**
 * Travel distance of the route matrix item in text form.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.distance;

/**
 * The distance text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.distanceLanguage;

/**
 * Duration, represented in text form and localized to the region of the query.
 * Takes traffic conditions into consideration. <br><br> Note: If you did not
 * request traffic information, this value is the same value as {@link
 * google.maps.routes.RouteMatrixItemLocalizedValues.staticDuration}.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.duration;

/**
 * The duration text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
 * &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.durationLanguage;

/**
 * Duration without taking traffic conditions into consideration, represented in
 * text form.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.staticDuration;

/**
 * The static duration text&#39;s BCP-47 language code, such as
 * &quot;en-US&quot; or &quot;sr-Latn&quot;.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype
    .staticDurationLanguage;

/**
 * Transit fare, represented in text form.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.transitFare;

/**
 * The transit fare text&#39;s BCP-47 language code, such as &quot;en-US&quot;
 * or &quot;sr-Latn&quot;. <br><br> For more information, see <a
 * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null|undefined}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.transitFareLanguage;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteMatrixItemLocalizedValues.prototype.toJSON =
    function() {};

/**
 * A single origin for a {@link google.maps.routes.ComputeRouteMatrixRequest}.
 * @record
 */
google.maps.routes.RouteMatrixOrigin = function() {};

/**
 * Modifiers for every route that takes this as the origin.
 * @type {!google.maps.routes.RouteModifiers|null|undefined}
 */
google.maps.routes.RouteMatrixOrigin.prototype.routeModifiers;

/**
 * The location of the origin. A value passed as a string may be an address or
 * <a href="https://plus.codes">plus code</a>. Altitude values for are not taken
 * into consideration.
 * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitudeLiteral|google.maps.routes.DirectionalLocationLiteral|google.maps.places.Place|google.maps.routes.Waypoint}
 */
google.maps.routes.RouteMatrixOrigin.prototype.waypoint;

/**
 * Corresponds to an origin passed to {@link
 * google.maps.routes.RouteMatrix.computeRouteMatrix}. Contains a list of {@link
 * google.maps.routes.RouteMatrixItem}s, each item representing a route to a
 * destination.
 *
 * Access by calling `const {RouteMatrixRow} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteMatrixRow = function() {};

/**
 * The route information for each destination.
 * @type {!Array<!google.maps.routes.RouteMatrixItem>}
 */
google.maps.routes.RouteMatrixRow.prototype.items;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteMatrixRow.prototype.toJSON = function() {};

/**
 * Encapsulates a set of optional conditions to satisfy when calculating routes.
 * @record
 */
google.maps.routes.RouteModifiers = function() {};

/**
 * When set to <code>true</code>, avoids ferries where reasonable, giving
 * preference to routes not containing ferries. Applies only to
 * <code>DRIVING</code> or <code>TWO_WHEELER</code> {@link
 * google.maps.TravelMode}.
 * @type {boolean|null|undefined}
 */
google.maps.routes.RouteModifiers.prototype.avoidFerries;

/**
 * When set to <code>true</code>, avoids highways where reasonable, giving
 * preference to routes not containing highways. Applies only to
 * <code>DRIVING</code> or <code>TWO_WHEELER</code> {@link
 * google.maps.TravelMode}.
 * @type {boolean|null|undefined}
 */
google.maps.routes.RouteModifiers.prototype.avoidHighways;

/**
 * When set to <code>true</code>, avoids navigating indoors where reasonable,
 * giving preference to routes not containing indoor navigation. Applies only to
 * <code>WALKING</code> {@link google.maps.TravelMode}.
 * @type {boolean|null|undefined}
 */
google.maps.routes.RouteModifiers.prototype.avoidIndoor;

/**
 * When set to <code>true</code>, avoids toll roads where reasonable, giving
 * preference to routes not containing toll roads. Applies only to
 * <code>DRIVING</code> or <code>TWO_WHEELER</code> {@link
 * google.maps.TravelMode}.
 * @type {boolean|null|undefined}
 */
google.maps.routes.RouteModifiers.prototype.avoidTolls;

/**
 * Encapsulates information about toll passes. If toll passes are provided, the
 * API tries to return the pass price. If toll passes are not provided, the API
 * treats the toll pass as unknown and tries to return the cash price. Applies
 * only to <code>DRIVING</code> or <code>TWO_WHEELER</code> {@link
 * google.maps.TravelMode}. See <a
 * href="https://developers.google.com/maps/documentation/routes/reference/rest/v2/RouteModifiers#tollpass">TollPass</a>
 * for a list of valid values.
 * @type {!Iterable<string>|null|undefined}
 */
google.maps.routes.RouteModifiers.prototype.tollPasses;

/**
 * Specifies the vehicle information.
 * @type {!google.maps.routes.VehicleInfo|null|undefined}
 */
google.maps.routes.RouteModifiers.prototype.vehicleInfo;

/**
 * Details about a section of a route corresponding to a polyline that can be
 * used to customize the polyline style.
 * @record
 */
google.maps.routes.RoutePolylineDetails = function() {};

/**
 * The speed reading of the section of the route corresponding to this polyline.
 * Only populated for routes with traffic information.
 * @type {!google.maps.routes.Speed|null|undefined|undefined}
 */
google.maps.routes.RoutePolylineDetails.prototype.speed;

/**
 * The transit details of the section of the route corresponding to this
 * polyline. Only populated for routes with transit information.
 * @type {!google.maps.routes.TransitDetails|null|undefined|undefined}
 */
google.maps.routes.RoutePolylineDetails.prototype.transitDetails;

/**
 * The travel mode of the section of the route corresponding to this polyline.
 * Empty for traffic polylines.
 * @type {!google.maps.TravelMode|null|undefined|undefined}
 */
google.maps.routes.RoutePolylineDetails.prototype.travelMode;

/**
 * Options for creating route polylines.
 * @record
 */
google.maps.routes.RoutePolylineOptions = function() {};

/**
 * The color scheme to use for the polyline. When specified as
 * <code>FOLLOW_SYSTEM</code> while the map <code>colorScheme</code> is also
 * <code>FOLLOW_SYSTEM</code>, the polylines will be drawn in the same
 * dark/light mode as the map. When not specified, {@link
 * google.maps.routes.Route.createPolylines} attempts to use the
 * <code>colorScheme</code> of the map or falls back to the system default.
 * @type {!google.maps.ColorScheme|undefined}
 */
google.maps.routes.RoutePolylineOptions.prototype.colorScheme;

/**
 * Options for customizing the style of a polyline. Can either be a {@link
 * google.maps.PolylineOptions} object that is applied to all polylines for the
 * route or a function that takes default {@link google.maps.PolylineOptions}
 * and {@link google.maps.routes.RoutePolylineDetails} and returns the {@link
 * google.maps.PolylineOptions} to be applied to that polyline.
 * @type {!google.maps.PolylineOptions|(function(!google.maps.PolylineOptions,
 *     !google.maps.routes.RoutePolylineDetails):
 *     !google.maps.PolylineOptions)|undefined}
 */
google.maps.routes.RoutePolylineOptions.prototype.polylineOptions;

/**
 * Contains additional information that the user should be informed about on
 * a {@link google.maps.routes.Route}.
 *
 * Access by calling `const {RouteTravelAdvisory} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.RouteTravelAdvisory = function() {};

/**
 * The predicted fuel consumption in microliters. <br><br> Note: If the fuel
 * consumption exceeds 2^53 microliters, then this value is
 * <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|undefined}
 */
google.maps.routes.RouteTravelAdvisory.prototype.fuelConsumptionMicroliters;

/**
 * The {@link google.maps.routes.Route} may have restrictions that are not
 * suitable for the requested travel mode or route modifiers.
 * @type {boolean|null|undefined}
 */
google.maps.routes.RouteTravelAdvisory.prototype
    .routeRestrictionsPartiallyIgnored;

/**
 * Speed reading intervals detailing traffic density. Applicable in case of
 * <code>TRAFFIC_AWARE</code> and <code>TRAFFIC_AWARE_OPTIMAL</code> {@link
 * google.maps.routes.ComputeRoutesRequest.routingPreference}. The intervals
 * cover the entire polyline of the {@link google.maps.routes.Route} without
 * overlap. The start point of a specified interval is the same as the end point
 * of the preceding interval. <br><br> Example: <br> <pre> <code> polyline: A
 * ---- B ---- C ---- D ---- E ---- F ---- G <br> speedReadingIntervals: [A,C),
 * [C,D), [D,G) </code> </pre>
 * @type {!Array<!google.maps.routes.SpeedReadingInterval>|undefined}
 */
google.maps.routes.RouteTravelAdvisory.prototype.speedReadingIntervals;

/**
 * Contains information about tolls on the {@link google.maps.routes.Route}.
 * This field is only populated if tolls are expected on the {@link
 * google.maps.routes.Route}. If this field is set but {@link
 * google.maps.routes.TollInfo.estimatedPrices} is not populated,then the route
 * contains tolls but the estimated price is unknown. If this field is empty,
 * then there are no tolls on the {@link google.maps.routes.Route}.
 * @type {!google.maps.routes.TollInfo|null|undefined}
 */
google.maps.routes.RouteTravelAdvisory.prototype.tollInfo;

/**
 * If present, contains the total fare or ticket costs of this {@link
 * google.maps.routes.Route}. This property is only returned for
 * <code>TRANSIT</code> {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode} and only for routes where
 * fare information is available for all transit steps.
 * @type {!google.maps.places.Money|null|undefined}
 */
google.maps.routes.RouteTravelAdvisory.prototype.transitFare;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.RouteTravelAdvisory.prototype.toJSON = function() {};

/**
 * Factors to take into consideration when calculating a route.
 *
 * Access by calling `const {RoutingPreference} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.RoutingPreference = {
  /**
   * Calculates routes taking live traffic conditions into consideration. In
   * contrast to <code>TRAFFIC_AWARE_OPTIMAL</code>, some optimizations are
   * applied to significantly reduce latency.
   */
  TRAFFIC_AWARE: 'TRAFFIC_AWARE',
  /**
   * Calculates the routes taking live traffic conditions into consideration,
   * without applying most performance optimizations. Using this value produces
   * the highest latency.
   */
  TRAFFIC_AWARE_OPTIMAL: 'TRAFFIC_AWARE_OPTIMAL',
  /**
   * Computes routes without taking live traffic conditions into consideration.
   * Suitable when traffic conditions don&#39;t matter or are not applicable.
   * Using this value produces the lowest latency.
   */
  TRAFFIC_UNAWARE: 'TRAFFIC_UNAWARE',
};

/**
 * The classification of polyline speed based on traffic data.
 *
 * Access by calling `const {Speed} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.Speed = {
  /**
   * Normal speed, no traffic delays.
   */
  NORMAL: 'NORMAL',
  /**
   * Slowdown detected, medium amount of traffic.
   */
  SLOW: 'SLOW',
  /**
   * Traffic delays.
   */
  TRAFFIC_JAM: 'TRAFFIC_JAM',
};

/**
 * Groups together the {@link google.maps.LatLngAltitude}s of a route interval
 * with the speed reading for the interval.
 * @record
 */
google.maps.routes.SpeedPath = function() {};

/**
 * The path covered by this speed path.
 * @type {!Array<!google.maps.LatLngAltitude>}
 */
google.maps.routes.SpeedPath.prototype.path;

/**
 * The speed reading of the path.
 * @type {!google.maps.routes.Speed|null|undefined}
 */
google.maps.routes.SpeedPath.prototype.speed;

/**
 * Traffic density indicator on a contiguous segment of a polyline or path.
 * Given a path with points P_0, P_1, ... , P_N (zero-based index), the
 * <code>SpeedReadingInterval</code> describes the traffic density of an
 * interval.
 *
 * Access by calling `const {SpeedReadingInterval} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.SpeedReadingInterval = function() {};

/**
 * The ending index of this interval in the polyline.
 * @type {number|null|undefined}
 */
google.maps.routes.SpeedReadingInterval.prototype.endPolylinePointIndex;

/**
 * Traffic speed in this interval.
 * @type {!google.maps.routes.Speed|null|undefined}
 */
google.maps.routes.SpeedReadingInterval.prototype.speed;

/**
 * The starting index of this interval in the polyline.
 * @type {number|null|undefined}
 */
google.maps.routes.SpeedReadingInterval.prototype.startPolylinePointIndex;

/**
 * Converts to an object.
 * @return {undefined}
 */
google.maps.routes.SpeedReadingInterval.prototype.toJSON = function() {};

/**
 * Provides overview information about a list of {@link
 * google.maps.routes.RouteLeg.steps}.
 *
 * Access by calling `const {StepsOverview} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.StepsOverview = function() {};

/**
 * Summarized information about different multi-modal segments of the {@link
 * google.maps.routes.RouteLeg.steps}.
 * @type {!Array<!google.maps.routes.MultiModalSegment>}
 */
google.maps.routes.StepsOverview.prototype.multiModalSegments;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.StepsOverview.prototype.toJSON = function() {};

/**
 * Encapsulates toll information on a {@link google.maps.routes.Route} or {@link
 * google.maps.routes.RouteLeg}.
 *
 * Access by calling `const {TollInfo} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.TollInfo = function() {};

/**
 * The monetary amount of tolls for the corresponding {@link
 * google.maps.routes.Route} or {@link google.maps.routes.RouteLeg}. This list
 * contains an amount for each currency that is expected to be charged by toll
 * stations. Typically this list will contain only one item for routes with
 * tolls in one currency. For international trips, this list may contain
 * multiple items to reflect tolls in different currencies.
 * @type {!Array<!google.maps.places.Money>|null|undefined}
 */
google.maps.routes.TollInfo.prototype.estimatedPrices;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.TollInfo.prototype.toJSON = function() {};

/**
 * Information about a transit agency.
 *
 * Access by calling `const {TransitAgency} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.TransitAgency = function() {};

/**
 * The name of this transit agency.
 * @type {string|null}
 */
google.maps.routes.TransitAgency.prototype.name;

/**
 * The transit agency&#39;s locale-specific formatted phone number.
 * @type {string|null}
 */
google.maps.routes.TransitAgency.prototype.phoneNumber;

/**
 * The transit agency&#39;s URL.
 * @type {!URL|null}
 */
google.maps.routes.TransitAgency.prototype.url;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.TransitAgency.prototype.toJSON = function() {};

/**
 * Additional information about a transit step in a route.
 *
 * Access by calling `const {TransitDetails} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.TransitDetails = function() {};

/**
 * Information about the arrival stop for the step.
 * @type {!google.maps.routes.TransitStop|null}
 */
google.maps.routes.TransitDetails.prototype.arrivalStop;

/**
 * The estimated time of arrival for the step.
 * @type {!Date|null}
 */
google.maps.routes.TransitDetails.prototype.arrivalTime;

/**
 * Information about the departure stop for the step.
 * @type {!google.maps.routes.TransitStop|null}
 */
google.maps.routes.TransitDetails.prototype.departureStop;

/**
 * The estimated time of departure for the step.
 * @type {!Date|null}
 */
google.maps.routes.TransitDetails.prototype.departureTime;

/**
 * Specifies the direction in which to travel on this line as marked on the
 * vehicle or at the departure stop. The direction is often the terminus
 * station.
 * @type {string|null}
 */
google.maps.routes.TransitDetails.prototype.headsign;

/**
 * Specifies the expected time in milliseconds between departures from the same
 * stop at this time. For example, with a headway value of 600,000, you would
 * expect a ten minute wait if you should miss your bus. <br><br> Note: If the
 * headway exceeds 2^53 milliseconds, then this value is
 * <code>Number.POSITIVE_INFINITY</code>.
 * @type {number|null}
 */
google.maps.routes.TransitDetails.prototype.headwayMillis;

/**
 * The number of stops from the departure to the arrival stop. This count
 * includes the arrival stop, but excludes the departure stop. For example, if
 * your route leaves from Stop A, passes through stops B and C, and arrives at
 * stop D, <code>stopCount</code> will be 3.
 * @type {number}
 */
google.maps.routes.TransitDetails.prototype.stopCount;

/**
 * Information about the transit line used in the step.
 * @type {!google.maps.routes.TransitLine|null}
 */
google.maps.routes.TransitDetails.prototype.transitLine;

/**
 * The text that appears in schedules and sign boards to identify a transit trip
 * to passengers. The text uniquely identifies a trip within a service day. For
 * example, &quot;538&quot; is the <code>tripShortText</code> of the Amtrak
 * train that leaves San Jose, CA at 15:10 on weekdays to Sacramento, CA.
 * @type {string|null}
 */
google.maps.routes.TransitDetails.prototype.tripShortText;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.TransitDetails.prototype.toJSON = function() {};

/**
 * Information about a transit line.
 *
 * Access by calling `const {TransitLine} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.TransitLine = function() {};

/**
 * The transit agency (or agencies) that operates this transit line.
 * @type {!Array<!google.maps.routes.TransitAgency>}
 */
google.maps.routes.TransitLine.prototype.agencies;

/**
 * The color commonly used in signage for this line. Represented in hexadecimal.
 * @type {string|null}
 */
google.maps.routes.TransitLine.prototype.color;

/**
 * The URL for the icon associated with this line.
 * @type {!URL|null}
 */
google.maps.routes.TransitLine.prototype.iconURL;

/**
 * The full name of this transit line, For example, &quot;8 Avenue Local&quot;.
 * @type {string|null}
 */
google.maps.routes.TransitLine.prototype.name;

/**
 * The short name of this transit line. This name will normally be a line
 * number, such as &quot;M7&quot; or &quot;355&quot;.
 * @type {string|null}
 */
google.maps.routes.TransitLine.prototype.shortName;

/**
 * The color commonly used in text on signage for this line. Represented in
 * hexadecimal.
 * @type {string|null}
 */
google.maps.routes.TransitLine.prototype.textColor;

/**
 * The URL for this transit line as provided by the transit agency.
 * @type {!URL|null}
 */
google.maps.routes.TransitLine.prototype.url;

/**
 * The type of vehicle that operates on this transit line.
 * @type {!google.maps.routes.TransitVehicle|null}
 */
google.maps.routes.TransitLine.prototype.vehicle;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.TransitLine.prototype.toJSON = function() {};

/**
 * Preferences for <code>TRANSIT</code> based routes that influence the route
 * that is returned.
 * @record
 */
google.maps.routes.TransitPreference = function() {};

/**
 * A set of travel modes to use when getting a <code>TRANSIT</code> route.
 * Defaults to all supported modes of travel.
 * @type {!Iterable<!google.maps.TransitMode>|undefined}
 */
google.maps.routes.TransitPreference.prototype.allowedTransitModes;

/**
 * A routing preference that, when specified, influences the
 * <code>TRANSIT</code> route returned.
 * @type {!google.maps.TransitRoutePreference|undefined}
 */
google.maps.routes.TransitPreference.prototype.routingPreference;

/**
 * Information about a transit stop.
 *
 * Access by calling `const {TransitStop} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.TransitStop = function() {};

/**
 * The location of the stop expressed in latitude/longitude coordinates and an
 * optional heading.
 * @type {!google.maps.routes.DirectionalLocation|null}
 */
google.maps.routes.TransitStop.prototype.location;

/**
 * The name of the transit stop.
 * @type {string|null}
 */
google.maps.routes.TransitStop.prototype.name;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.TransitStop.prototype.toJSON = function() {};

/**
 * Information about a vehicle used in transit routes.
 *
 * Access by calling `const {TransitVehicle} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @constructor
 */
google.maps.routes.TransitVehicle = function() {};

/**
 * The URL for an icon associated with this vehicle type.
 * @type {!URL|null}
 */
google.maps.routes.TransitVehicle.prototype.iconURL;

/**
 * The URL for the icon associated with this vehicle type, based on the local
 * transport signage.
 * @type {!URL|null}
 */
google.maps.routes.TransitVehicle.prototype.localIconURL;

/**
 * The name of this vehicle, capitalized.
 * @type {string|null}
 */
google.maps.routes.TransitVehicle.prototype.name;

/**
 * The vehicle name text&#39;s BCP-47 language code, such as &quot;en-US&quot;
 * or &quot;sr-Latn&quot;. <br><br> For more information see: <a
 * href="https://www.unicode.org/reports/tr35/#Unicode_locale_identifier">https://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
 * @type {string|null}
 */
google.maps.routes.TransitVehicle.prototype.nameLanguage;

/**
 * The type of vehicle used. <br><br> See <a
 * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#transitvehicletype">https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#transitvehicletype</a>
 * for a list of possible values.
 * @type {string|null}
 */
google.maps.routes.TransitVehicle.prototype.vehicleType;

/**
 * Converts to an object.
 * @return {!Object}
 */
google.maps.routes.TransitVehicle.prototype.toJSON = function() {};

/**
 * A set of values describing the vehicle&#39;s emission type. Applies only to
 * the <code>DRIVING</code> travel mode.
 *
 * Access by calling `const {VehicleEmissionType} = await
 * google.maps.importLibrary("routes")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @enum {string}
 */
google.maps.routes.VehicleEmissionType = {
  /**
   * Diesel fueled vehicle.
   */
  DIESEL: 'DIESEL',
  /**
   * Electricity powered vehicle.
   */
  ELECTRIC: 'ELECTRIC',
  /**
   * Gasoline/petrol fueled vehicle.
   */
  GASOLINE: 'GASOLINE',
  /**
   * Hybrid fuel (such as gasoline + electric) vehicle.
   */
  HYBRID: 'HYBRID',
};

/**
 * Contains the vehicle information, such as the vehicle emission type.
 * @record
 */
google.maps.routes.VehicleInfo = function() {};

/**
 * Describes the vehicle&#39;s emission type. Applies only to the
 * <code>DRIVING</code> travel mode.
 * @type {!google.maps.routes.VehicleEmissionType|null|undefined}
 */
google.maps.routes.VehicleInfo.prototype.emissionType;

/**
 * Represents a waypoint in a route.
 * @record
 */
google.maps.routes.Waypoint = function() {};

/**
 * The location of the waypoint. A string may be an address, a <a
 * href="https://plus.codes">plus code</a>, or a Place resource name.
 * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitudeLiteral|google.maps.routes.DirectionalLocationLiteral|google.maps.places.Place}
 */
google.maps.routes.Waypoint.prototype.location;

/**
 * Indicates that the location of this waypoint is meant to have a preference
 * for the vehicle to stop at a particular side of road. When you set this
 * value, the route will pass through the location so that the vehicle can stop
 * at the side of road that the location is biased towards from the center of
 * the road. This option works only for <code>DRIVING</code> and
 * <code>TWO_WHEELER</code> {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode}
 * @type {boolean|null|undefined}
 */
google.maps.routes.Waypoint.prototype.sideOfRoad;

/**
 * Indicates that the waypoint is meant for vehicles to stop at, where the
 * intention is to either pickup or drop-off. When you set this value, the
 * calculated route won&#39;t include non-<code>via</code> waypoints on roads
 * that are unsuitable for pickup and drop-off. This option works only for
 * <code>DRIVING</code> and <code>TWO_WHEELER</code> {@link
 * google.maps.routes.ComputeRoutesRequest.travelMode} and when the {@link
 * google.maps.routes.Waypoint.location} is not a <code>string</code> or
 * a {@link google.maps.places.Place}.
 * @type {boolean|null|undefined}
 */
google.maps.routes.Waypoint.prototype.vehicleStopover;

/**
 * Marks this waypoint as a milestone rather a stopping point. For each
 * non-<code>via</code> waypoint in the {@link
 * google.maps.routes.ComputeRoutesRequest}, {@link
 * google.maps.routes.Route.computeRoutes} appends an entry to the {@link
 * google.maps.routes.Route.legs} array to provide the details for stopovers on
 * that leg of the trip. <br><br> Set this value to <code>true</code> when you
 * want the route to pass through this waypoint without stopping over. Via
 * waypoints don&#39;t cause an entry to be added to the {@link
 * google.maps.routes.Route.legs} array, but they do route the journey through
 * the waypoint. <br><br> Notes: <ul> <li> You can only set this value on
 * waypoints that are intermediates. The request fails if you set this field on
 * terminal waypoints. </li> <li> If {@link
 * google.maps.routes.ComputeRoutesRequest.optimizeWaypointOrder} is set to
 * <code>true</code>, this field cannot be set to true; otherwise, the request
 * fails. </li> </ul>
 * @type {boolean|null|undefined}
 */
google.maps.routes.Waypoint.prototype.via;

/**
 * Details about a waypoint that can be used to customize marker style.
 * @record
 */
google.maps.routes.WaypointMarkerDetails = function() {};

/**
 * The index of the marker.
 * @type {number}
 */
google.maps.routes.WaypointMarkerDetails.prototype.index;

/**
 * The leg that the marker belongs to. Empty if the route has no legs.
 * @type {!google.maps.routes.RouteLeg|undefined}
 */
google.maps.routes.WaypointMarkerDetails.prototype.leg;

/**
 * The total number of markers in the route.
 * @type {number}
 */
google.maps.routes.WaypointMarkerDetails.prototype.totalMarkers;

/**
 * @const
 */
google.maps.visualization = {};

/**
 * A layer that provides a client-side rendered heatmap, depicting the intensity
 * of data at geographical points.
 *
 * Access by calling `const {HeatmapLayer} = await
 * google.maps.importLibrary("visualization")`. See
 * https://developers.google.com/maps/documentation/javascript/libraries.
 * @param {google.maps.visualization.HeatmapLayerOptions=} opts
 * @extends {google.maps.MVCObject}
 * @constructor
 * @deprecated The Heatmap Layer functionality in the Maps JavaScript API is no
 *     longer supported. This API was deprecated in May 2025 and will be made
 *     unavailable in a later version of the Maps JavaScript API, releasing in
 *     May 2026. For more info, see <a
 *     href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>).
 */
google.maps.visualization.HeatmapLayer = function(opts) {};

/**
 * Returns the data points currently displayed by this heatmap.
 * @return {!google.maps.MVCArray<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>}
 */
google.maps.visualization.HeatmapLayer.prototype.getData = function() {};

/**
 * @return {!google.maps.Map|undefined}
 */
google.maps.visualization.HeatmapLayer.prototype.getMap = function() {};

/**
 * Sets the data points to be displayed by this heatmap.
 * @param {!google.maps.MVCArray<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>|!Array<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>}
 *     data
 * @return {undefined}
 */
google.maps.visualization.HeatmapLayer.prototype.setData = function(data) {};

/**
 * Renders the heatmap on the specified map. If map is set to <code>null</code>,
 * the heatmap will be removed.
 * @param {?google.maps.Map} map
 * @return {undefined}
 */
google.maps.visualization.HeatmapLayer.prototype.setMap = function(map) {};

/**
 * @param {?google.maps.visualization.HeatmapLayerOptions} options
 * @return {undefined}
 */
google.maps.visualization.HeatmapLayer.prototype.setOptions = function(
    options) {};

/**
 * This object defines the properties that can be set on a
 * <code>HeatmapLayer</code> object.
 * @record
 */
google.maps.visualization.HeatmapLayerOptions = function() {};

/**
 * The data points to display. Required.
 * @type {!google.maps.MVCArray<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>|!Array<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.data;

/**
 * Specifies whether heatmaps dissipate on zoom. By default, the radius of
 * influence of a data point is specified by the radius option only. When
 * dissipating is disabled, the radius option is interpreted as a radius at zoom
 * level 0.
 * @type {boolean|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.dissipating;

/**
 * The color gradient of the heatmap, specified as an array of CSS color
 * strings. All CSS3 colors are supported except for extended named colors.
 * @type {!Array<string>|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.gradient;

/**
 * The map on which to display the layer.
 * @type {!google.maps.Map|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.map;

/**
 * The maximum intensity of the heatmap. By default, heatmap colors are
 * dynamically scaled according to the greatest concentration of points at any
 * particular pixel on the map. This property allows you to specify a fixed
 * maximum.
 * @type {number|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.maxIntensity;

/**
 * The opacity of the heatmap, expressed as a number between 0 and 1.
 * @default <code>0.6</code>
 * @type {number|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.opacity;

/**
 * The radius of influence for each data point, in pixels.
 * @type {number|null|undefined}
 */
google.maps.visualization.HeatmapLayerOptions.prototype.radius;

/**
 * A data point entry for a heatmap. This is a geographical data point with a
 * weight attribute.
 * @record
 */
google.maps.visualization.WeightedLocation = function() {};

/**
 * The location of the data point.
 * @type {!google.maps.LatLng}
 */
google.maps.visualization.WeightedLocation.prototype.location;

/**
 * The weighting value of the data point.
 * @type {number}
 */
google.maps.visualization.WeightedLocation.prototype.weight;