google-closure-compiler 20260428.0.0 → 20260503.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,6 +14,10 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
+ ////////////////////////////////////////////////////////////////////////////////
18
+ // Generated by an automated process. DO NOT EDIT!
19
+ ////////////////////////////////////////////////////////////////////////////////
20
+
17
21
  /**
18
22
  * @fileoverview Externs for the Google Maps v3 API.
19
23
  * @see https://developers.google.com/maps/documentation/javascript/reference
@@ -5082,8 +5086,7 @@ google.maps.LatLngAltitudeLiteral = function() {};
5082
5086
  /**
5083
5087
  * Distance (in meters) above the ground surface. Negative value means
5084
5088
  * underneath the ground surface.
5085
- * @default <code>0</code>
5086
- * @type {number|null|undefined}
5089
+ * @type {number}
5087
5090
  */
5088
5091
  google.maps.LatLngAltitudeLiteral.prototype.altitude;
5089
5092
 
@@ -8191,6 +8194,16 @@ google.maps.PlacesLibrary.prototype.AccessibilityOptions;
8191
8194
  */
8192
8195
  google.maps.PlacesLibrary.prototype.AddressComponent;
8193
8196
 
8197
+ /**
8198
+ * @type {typeof google.maps.places.AddressDescriptor}
8199
+ */
8200
+ google.maps.PlacesLibrary.prototype.AddressDescriptor;
8201
+
8202
+ /**
8203
+ * @type {typeof google.maps.places.Area}
8204
+ */
8205
+ google.maps.PlacesLibrary.prototype.Area;
8206
+
8194
8207
  /**
8195
8208
  * @type {typeof google.maps.places.Attribution}
8196
8209
  */
@@ -8241,6 +8254,11 @@ google.maps.PlacesLibrary.prototype.ConsumerAlert;
8241
8254
  */
8242
8255
  google.maps.PlacesLibrary.prototype.ConsumerAlertDetails;
8243
8256
 
8257
+ /**
8258
+ * @type {typeof google.maps.places.Containment}
8259
+ */
8260
+ google.maps.PlacesLibrary.prototype.Containment;
8261
+
8244
8262
  /**
8245
8263
  * @type {typeof google.maps.places.ContentBlock}
8246
8264
  */
@@ -8291,6 +8309,11 @@ google.maps.PlacesLibrary.prototype.GenerativeSummary;
8291
8309
  */
8292
8310
  google.maps.PlacesLibrary.prototype.GoogleMapsLinks;
8293
8311
 
8312
+ /**
8313
+ * @type {typeof google.maps.places.Landmark}
8314
+ */
8315
+ google.maps.PlacesLibrary.prototype.Landmark;
8316
+
8294
8317
  /**
8295
8318
  * @type {typeof google.maps.places.Money}
8296
8319
  */
@@ -8421,11 +8444,21 @@ google.maps.PlacesLibrary.prototype.SearchNearbyRankPreference;
8421
8444
  */
8422
8445
  google.maps.PlacesLibrary.prototype.SecondaryOpeningHours;
8423
8446
 
8447
+ /**
8448
+ * @type {typeof google.maps.places.SpatialRelationship}
8449
+ */
8450
+ google.maps.PlacesLibrary.prototype.SpatialRelationship;
8451
+
8424
8452
  /**
8425
8453
  * @type {typeof google.maps.places.StringRange}
8426
8454
  */
8427
8455
  google.maps.PlacesLibrary.prototype.StringRange;
8428
8456
 
8457
+ /**
8458
+ * @type {typeof google.maps.places.TimeZone}
8459
+ */
8460
+ google.maps.PlacesLibrary.prototype.TimeZone;
8461
+
8429
8462
  /**
8430
8463
  *
8431
8464
  * Access by calling `const {Point} = await google.maps.importLibrary("core");`.
@@ -9899,7 +9932,7 @@ google.maps.StreetViewPanoRequest.prototype.pano;
9899
9932
  * google.maps.importLibrary("streetView");`. See
9900
9933
  * https://developers.google.com/maps/documentation/javascript/libraries.
9901
9934
  * @param {!HTMLElement} container
9902
- * @param {?google.maps.StreetViewPanoramaOptions=} opts
9935
+ * @param {!google.maps.StreetViewPanoramaOptions|null=} opts
9903
9936
  * @extends {google.maps.MVCObject}
9904
9937
  * @constructor
9905
9938
  */
@@ -9925,7 +9958,7 @@ google.maps.StreetViewPanorama.prototype.focus = function() {};
9925
9958
 
9926
9959
  /**
9927
9960
  * Returns the set of navigation links for the Street View panorama.
9928
- * @return {?Array<?google.maps.StreetViewLink>}
9961
+ * @return {!Array<!google.maps.StreetViewLink|null>|null}
9929
9962
  */
9930
9963
  google.maps.StreetViewPanorama.prototype.getLinks = function() {};
9931
9964
 
@@ -9962,7 +9995,7 @@ google.maps.StreetViewPanorama.prototype.getPhotographerPov = function() {};
9962
9995
  /**
9963
9996
  * Returns the current <code>LatLng</code> position for the Street View
9964
9997
  * panorama.
9965
- * @return {?google.maps.LatLng}
9998
+ * @return {!google.maps.LatLng|null}
9966
9999
  */
9967
10000
  google.maps.StreetViewPanorama.prototype.getPosition = function() {};
9968
10001
 
@@ -9996,7 +10029,8 @@ google.maps.StreetViewPanorama.prototype.getZoom = function() {};
9996
10029
  /**
9997
10030
  * Set the custom panorama provider called on pano change to load custom
9998
10031
  * panoramas.
9999
- * @param {function(string): ?google.maps.StreetViewPanoramaData} provider
10032
+ * @param {function(string): (!google.maps.StreetViewPanoramaData|null)}
10033
+ * provider
10000
10034
  * @param {!google.maps.PanoProviderOptions=} opt_options
10001
10035
  * @return {undefined}
10002
10036
  */
@@ -10005,7 +10039,7 @@ google.maps.StreetViewPanorama.prototype.registerPanoProvider = function(
10005
10039
 
10006
10040
  /**
10007
10041
  * Sets the set of navigation links for the Street View panorama.
10008
- * @param {?Array<?google.maps.StreetViewLink>} links
10042
+ * @param {!Array<!google.maps.StreetViewLink>} links
10009
10043
  * @return {undefined}
10010
10044
  */
10011
10045
  google.maps.StreetViewPanorama.prototype.setLinks = function(links) {};
@@ -10022,7 +10056,7 @@ google.maps.StreetViewPanorama.prototype.setMotionTracking = function(
10022
10056
 
10023
10057
  /**
10024
10058
  * Sets a collection of key-value pairs.
10025
- * @param {?google.maps.StreetViewPanoramaOptions} options
10059
+ * @param {!google.maps.StreetViewPanoramaOptions|null} options
10026
10060
  * @return {undefined}
10027
10061
  */
10028
10062
  google.maps.StreetViewPanorama.prototype.setOptions = function(options) {};
@@ -10036,7 +10070,7 @@ google.maps.StreetViewPanorama.prototype.setPano = function(pano) {};
10036
10070
 
10037
10071
  /**
10038
10072
  * Sets the current <code>LatLng</code> position for the Street View panorama.
10039
- * @param {google.maps.LatLng|google.maps.LatLngLiteral|null} latLng
10073
+ * @param {!google.maps.LatLng|!google.maps.LatLngLiteral|null} latLng
10040
10074
  * @return {undefined}
10041
10075
  */
10042
10076
  google.maps.StreetViewPanorama.prototype.setPosition = function(latLng) {};
@@ -16603,13 +16637,13 @@ google.maps.maps3d.CameraOptions.prototype.altitudeMode;
16603
16637
 
16604
16638
  /**
16605
16639
  * See {@link google.maps.maps3d.Map3DElement.cameraPosition}.
16606
- * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
16640
+ * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral|null|undefined}
16607
16641
  */
16608
16642
  google.maps.maps3d.CameraOptions.prototype.cameraPosition;
16609
16643
 
16610
16644
  /**
16611
16645
  * See {@link google.maps.maps3d.Map3DElement.center}.
16612
- * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
16646
+ * @type {!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral|null|undefined}
16613
16647
  */
16614
16648
  google.maps.maps3d.CameraOptions.prototype.center;
16615
16649
 
@@ -16728,7 +16762,7 @@ google.maps.maps3d.FlattenerElementOptions = function() {};
16728
16762
 
16729
16763
  /**
16730
16764
  * See {@link google.maps.maps3d.FlattenerElement.innerPaths}.
16731
- * @type {!Iterable<!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral>|!Iterable<!google.maps.LatLngLiteral>>|null|undefined}
16765
+ * @type {!Iterable<!Iterable<!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|!google.maps.LatLngLiteral>>|null|undefined}
16732
16766
  */
16733
16767
  google.maps.maps3d.FlattenerElementOptions.prototype.innerPaths;
16734
16768
 
@@ -18805,6 +18839,54 @@ google.maps.places.AddressComponent.prototype.shortText;
18805
18839
  */
18806
18840
  google.maps.places.AddressComponent.prototype.types;
18807
18841
 
18842
+ /**
18843
+ * A relational description of a location. Includes a ranked set of nearby
18844
+ * landmarks and precise containing areas and their relationship to the target
18845
+ * location.
18846
+ *
18847
+ * Access by calling `const {AddressDescriptor} = await
18848
+ * google.maps.importLibrary("places");`. See
18849
+ * https://developers.google.com/maps/documentation/javascript/libraries.
18850
+ * @constructor
18851
+ */
18852
+ google.maps.places.AddressDescriptor = function() {};
18853
+
18854
+ /**
18855
+ * A ranked list of containing or adjacent areas. The most recognizable and
18856
+ * precise areas are ranked first.
18857
+ * @type {!Array<!google.maps.places.Area>}
18858
+ */
18859
+ google.maps.places.AddressDescriptor.prototype.areas;
18860
+
18861
+ /**
18862
+ * A ranked list of nearby landmarks. The most recognizable and nearby landmarks
18863
+ * are ranked first.
18864
+ * @type {!Array<!google.maps.places.Landmark>}
18865
+ */
18866
+ google.maps.places.AddressDescriptor.prototype.landmarks;
18867
+
18868
+ /**
18869
+ * Area information and the area&#39;s relationship with the target location.
18870
+ *
18871
+ * Access by calling `const {Area} = await
18872
+ * google.maps.importLibrary("places");`. See
18873
+ * https://developers.google.com/maps/documentation/javascript/libraries.
18874
+ * @constructor
18875
+ */
18876
+ google.maps.places.Area = function() {};
18877
+
18878
+ /**
18879
+ * Defines the spatial relationship between the target location and the area.
18880
+ * @type {!google.maps.places.Containment|null}
18881
+ */
18882
+ google.maps.places.Area.prototype.containment;
18883
+
18884
+ /**
18885
+ * The area&#39;s place.
18886
+ * @type {!google.maps.places.Place}
18887
+ */
18888
+ google.maps.places.Area.prototype.place;
18889
+
18808
18890
  /**
18809
18891
  * Information about a data provider for a Place.
18810
18892
  *
@@ -18890,7 +18972,7 @@ google.maps.places.AuthorAttribution.prototype.uri;
18890
18972
  * https://developers.google.com/maps/documentation/javascript/libraries.
18891
18973
  * @param {!HTMLInputElement} inputField The <code>&lt;input&gt;</code> text
18892
18974
  * field to which the <code>Autocomplete</code> should be attached.
18893
- * @param {?google.maps.places.AutocompleteOptions=} opts Options.
18975
+ * @param {!google.maps.places.AutocompleteOptions|null=} opts Options.
18894
18976
  * @extends {google.maps.MVCObject}
18895
18977
  * @constructor
18896
18978
  * @deprecated As of March 1st, 2025, google.maps.places.Autocomplete is not
@@ -18945,7 +19027,7 @@ google.maps.places.Autocomplete.prototype.setBounds = function(bounds) {};
18945
19027
  * Sets the component restrictions. Component restrictions are used to restrict
18946
19028
  * predictions to only those within the parent component. For example, the
18947
19029
  * country.
18948
- * @param {?google.maps.places.ComponentRestrictions} restrictions The
19030
+ * @param {!google.maps.places.ComponentRestrictions|null} restrictions The
18949
19031
  * restrictions to use.
18950
19032
  * @return {undefined}
18951
19033
  */
@@ -18962,7 +19044,7 @@ google.maps.places.Autocomplete.prototype.setComponentRestrictions = function(
18962
19044
  google.maps.places.Autocomplete.prototype.setFields = function(fields) {};
18963
19045
 
18964
19046
  /**
18965
- * @param {?google.maps.places.AutocompleteOptions} options
19047
+ * @param {!google.maps.places.AutocompleteOptions|null} options
18966
19048
  * @return {undefined}
18967
19049
  */
18968
19050
  google.maps.places.Autocomplete.prototype.setOptions = function(options) {};
@@ -18972,7 +19054,7 @@ google.maps.places.Autocomplete.prototype.setOptions = function(options) {};
18972
19054
  * href="https://developers.google.com/maps/documentation/javascript/places-autocomplete#constrain-place-types">
18973
19055
  * developer&#39;s guide</a>. If no types are specified, all types will be
18974
19056
  * returned.
18975
- * @param {?Array<string>} types The types of predictions to be included.
19057
+ * @param {!Array<string>|null} types The types of predictions to be included.
18976
19058
  * @return {undefined}
18977
19059
  */
18978
19060
  google.maps.places.Autocomplete.prototype.setTypes = function(types) {};
@@ -19110,6 +19192,14 @@ google.maps.places.AutocompletePrediction.prototype.types;
19110
19192
  */
19111
19193
  google.maps.places.AutocompleteRequest = function() {};
19112
19194
 
19195
+ /**
19196
+ * Include place predictions for businesses that are not yet open but are
19197
+ * expected to open in the future.
19198
+ * @type {boolean|undefined}
19199
+ */
19200
+ google.maps.places.AutocompleteRequest.prototype
19201
+ .futureOpeningBusinessesIncluded;
19202
+
19113
19203
  /**
19114
19204
  * Included primary <a
19115
19205
  * href="https://developers.google.com/maps/documentation/javascript/place-types">Place
@@ -19181,6 +19271,17 @@ google.maps.places.AutocompleteRequest.prototype.locationRestriction;
19181
19271
  */
19182
19272
  google.maps.places.AutocompleteRequest.prototype.origin;
19183
19273
 
19274
+ /**
19275
+ * Include pure service area businesses if the field is set to true. A pure
19276
+ * service area business is a business that visits or delivers to customers
19277
+ * directly but does not serve customers at their business address. For example,
19278
+ * businesses like cleaning services or plumbers may not have a physical address
19279
+ * or location on Google Maps.
19280
+ * @type {boolean|undefined}
19281
+ */
19282
+ google.maps.places.AutocompleteRequest.prototype
19283
+ .pureServiceAreaBusinessesIncluded;
19284
+
19184
19285
  /**
19185
19286
  * The region code, specified as a CLDR two-character region code. This affects
19186
19287
  * address formatting, result ranking, and may influence what results are
@@ -19465,6 +19566,31 @@ google.maps.places.AutocompletionRequest.prototype.radius;
19465
19566
  */
19466
19567
  google.maps.places.BasicPlaceAutocompleteElement = function(options) {};
19467
19568
 
19569
+ /**
19570
+ * The description to be used for the input element. This will be detected by
19571
+ * screen readers when the input element is focused. See <a
19572
+ * href="https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-describedby">https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-describedby</a>
19573
+ * for details.
19574
+ * @type {string|null}
19575
+ */
19576
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.description;
19577
+
19578
+ /**
19579
+ * Whether the input element is disabled. See <a
19580
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled</a>
19581
+ * for details.
19582
+ * @type {boolean|null}
19583
+ */
19584
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.disabled;
19585
+
19586
+ /**
19587
+ * Whether to include places that are not yet open but are expected to open in
19588
+ * the future.
19589
+ * @type {boolean|null}
19590
+ */
19591
+ google.maps.places.BasicPlaceAutocompleteElement.prototype
19592
+ .futureOpeningBusinessesIncluded;
19593
+
19468
19594
  /**
19469
19595
  * Included primary <a
19470
19596
  * href="https://developers.google.com/maps/documentation/places/javascript/place-types">Place
@@ -19497,6 +19623,14 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.locationBias;
19497
19623
  */
19498
19624
  google.maps.places.BasicPlaceAutocompleteElement.prototype.locationRestriction;
19499
19625
 
19626
+ /**
19627
+ * The maximum number of characters that the user can enter. See <a
19628
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength</a>
19629
+ * for details.
19630
+ * @type {number|null}
19631
+ */
19632
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.maxlength;
19633
+
19500
19634
  /**
19501
19635
  * The name to be used for the input element. See <a
19502
19636
  * 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>
@@ -19508,6 +19642,12 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.locationRestriction;
19508
19642
  */
19509
19643
  google.maps.places.BasicPlaceAutocompleteElement.prototype.name;
19510
19644
 
19645
+ /**
19646
+ * Whether to hide the input icon.
19647
+ * @type {boolean|null}
19648
+ */
19649
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.noInputIcon;
19650
+
19511
19651
  /**
19512
19652
  * The origin from which to calculate distance. If not specified, distance is
19513
19653
  * not calculated. The altitude, if given, is not used in the calculation.
@@ -19515,6 +19655,29 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.name;
19515
19655
  */
19516
19656
  google.maps.places.BasicPlaceAutocompleteElement.prototype.origin;
19517
19657
 
19658
+ /**
19659
+ * The placeholder text to be used for the input element. See <a
19660
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder</a>
19661
+ * for details.
19662
+ * @type {string|null}
19663
+ */
19664
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.placeholder;
19665
+
19666
+ /**
19667
+ * Whether to include places that are pure service area businesses.
19668
+ * @type {boolean|null}
19669
+ */
19670
+ google.maps.places.BasicPlaceAutocompleteElement.prototype
19671
+ .pureServiceAreaBusinessesIncluded;
19672
+
19673
+ /**
19674
+ * Whether the input element is read-only. See <a
19675
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly</a>
19676
+ * for details.
19677
+ * @type {boolean|null}
19678
+ */
19679
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.readonly;
19680
+
19518
19681
  /**
19519
19682
  * A language identifier for the language in which the results should be
19520
19683
  * returned, if possible. Results in the selected language may be given a higher
@@ -19552,6 +19715,24 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.unitSystem;
19552
19715
  */
19553
19716
  google.maps.places.BasicPlaceAutocompleteElementOptions = function() {};
19554
19717
 
19718
+ /**
19719
+ * The description to be used for the input element. This will be detected by
19720
+ * screen readers when the input element is focused.
19721
+ * @type {string|null|undefined}
19722
+ */
19723
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.description;
19724
+
19725
+ /**
19726
+ * @type {boolean|null|undefined}
19727
+ */
19728
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.disabled;
19729
+
19730
+ /**
19731
+ * @type {boolean|null|undefined}
19732
+ */
19733
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19734
+ .futureOpeningBusinessesIncluded;
19735
+
19555
19736
  /**
19556
19737
  * @type {!Array<string>|null|undefined}
19557
19738
  */
@@ -19575,16 +19756,42 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.locationBias;
19575
19756
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19576
19757
  .locationRestriction;
19577
19758
 
19759
+ /**
19760
+ * @type {number|null|undefined}
19761
+ */
19762
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.maxlength;
19763
+
19578
19764
  /**
19579
19765
  * @type {string|null|undefined}
19580
19766
  */
19581
19767
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.name;
19582
19768
 
19769
+ /**
19770
+ * @type {boolean|null|undefined}
19771
+ */
19772
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.noInputIcon;
19773
+
19583
19774
  /**
19584
19775
  * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
19585
19776
  */
19586
19777
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.origin;
19587
19778
 
19779
+ /**
19780
+ * @type {string|null|undefined}
19781
+ */
19782
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.placeholder;
19783
+
19784
+ /**
19785
+ * @type {boolean|null|undefined}
19786
+ */
19787
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19788
+ .pureServiceAreaBusinessesIncluded;
19789
+
19790
+ /**
19791
+ * @type {boolean|null|undefined}
19792
+ */
19793
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.readonly;
19794
+
19588
19795
  /**
19589
19796
  * @type {string|null|undefined}
19590
19797
  */
@@ -19623,6 +19830,10 @@ google.maps.places.BusinessStatus = {
19623
19830
  * The business is closed temporarily.
19624
19831
  */
19625
19832
  CLOSED_TEMPORARILY: 'CLOSED_TEMPORARILY',
19833
+ /**
19834
+ * The business will open in the future.
19835
+ */
19836
+ FUTURE_OPENING: 'FUTURE_OPENING',
19626
19837
  /**
19627
19838
  * The business is operating normally.
19628
19839
  */
@@ -19756,6 +19967,29 @@ google.maps.places.ConsumerAlertDetails.prototype.description;
19756
19967
  */
19757
19968
  google.maps.places.ConsumerAlertDetails.prototype.title;
19758
19969
 
19970
+ /**
19971
+ * Defines the spatial relationship between the target location and the area.
19972
+ *
19973
+ * Access by calling `const {Containment} = await
19974
+ * google.maps.importLibrary("places");`. See
19975
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19976
+ * @enum {string}
19977
+ */
19978
+ google.maps.places.Containment = {
19979
+ /**
19980
+ * The target location is outside the area region, but close by.
19981
+ */
19982
+ NEAR: 'NEAR',
19983
+ /**
19984
+ * The target location is within the area region, close to the edge.
19985
+ */
19986
+ OUTSKIRTS: 'OUTSKIRTS',
19987
+ /**
19988
+ * The target location is within the area region, close to the center.
19989
+ */
19990
+ WITHIN: 'WITHIN',
19991
+ };
19992
+
19759
19993
  /**
19760
19994
  * ContentBlock describes the content of a summary and where it came from.
19761
19995
  *
@@ -20285,6 +20519,46 @@ google.maps.places.GoogleMapsLinks.prototype.reviewsURI;
20285
20519
  */
20286
20520
  google.maps.places.GoogleMapsLinks.prototype.writeAReviewURI;
20287
20521
 
20522
+ /**
20523
+ * Basic landmark information and the landmark&#39;s relationship with the
20524
+ * target location. Landmarks are prominent places that can be used to describe
20525
+ * a location.
20526
+ *
20527
+ * Access by calling `const {Landmark} = await
20528
+ * google.maps.importLibrary("places");`. See
20529
+ * https://developers.google.com/maps/documentation/javascript/libraries.
20530
+ * @constructor
20531
+ */
20532
+ google.maps.places.Landmark = function() {};
20533
+
20534
+ /**
20535
+ * The landmark&#39;s place.
20536
+ * @type {!google.maps.places.Place}
20537
+ */
20538
+ google.maps.places.Landmark.prototype.place;
20539
+
20540
+ /**
20541
+ * The spatial relationship between the target location and the landmark.
20542
+ * @type {!google.maps.places.SpatialRelationship}
20543
+ */
20544
+ google.maps.places.Landmark.prototype.spatialRelationship;
20545
+
20546
+ /**
20547
+ * The straight line distance, in meters, between the center point of the target
20548
+ * and the center point of the landmark. In some situations, this value can be
20549
+ * longer than <code>travelDistanceMeters</code>.
20550
+ * @type {number}
20551
+ */
20552
+ google.maps.places.Landmark.prototype.straightLineDistanceMeters;
20553
+
20554
+ /**
20555
+ * The travel distance, in meters, along the road network from the target to the
20556
+ * landmark, if known. This value does not take into account the mode of
20557
+ * transportation, such as walking, driving, biking.
20558
+ * @type {number|null}
20559
+ */
20560
+ google.maps.places.Landmark.prototype.travelDistanceMeters;
20561
+
20288
20562
  /**
20289
20563
  * @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}
20290
20564
  */
@@ -20682,6 +20956,15 @@ google.maps.places.Place.prototype.accessibilityOptions;
20682
20956
  */
20683
20957
  google.maps.places.Place.prototype.addressComponents;
20684
20958
 
20959
+ /**
20960
+ * The address descriptor for this place. Address descriptors include additional
20961
+ * information that help describe a location using landmarks and areas. See
20962
+ * address descriptor regional coverage in <a
20963
+ * href="https://developers.google.com/maps/documentation/geocoding/address-descriptors/coverage">https://developers.google.com/maps/documentation/geocoding/address-descriptors/coverage</a>.
20964
+ * @type {!google.maps.places.AddressDescriptor|null|undefined}
20965
+ */
20966
+ google.maps.places.Place.prototype.addressDescriptor;
20967
+
20685
20968
  /**
20686
20969
  * The representation of the Place’s address in the <a
20687
20970
  * href="http://microformats.org/wiki/adr">adr microformat</a>.
@@ -20714,6 +20997,13 @@ google.maps.places.Place.prototype.businessStatus;
20714
20997
  */
20715
20998
  google.maps.places.Place.prototype.consumerAlert;
20716
20999
 
21000
+ /**
21001
+ * The list of containing places for this place. Containing places are places
21002
+ * that contain the place.
21003
+ * @type {!Array<!google.maps.places.Place>|undefined}
21004
+ */
21005
+ google.maps.places.Place.prototype.containingPlaces;
21006
+
20717
21007
  /**
20718
21008
  * The hours of operation for the next seven days (including today). This
20719
21009
  * includes exceptional hours like holidays and irregular closures.
@@ -20787,6 +21077,15 @@ google.maps.places.Place.prototype.formattedAddress;
20787
21077
  */
20788
21078
  google.maps.places.Place.prototype.fuelOptions;
20789
21079
 
21080
+ /**
21081
+ * The date this place will open, if its <code>businessStatus</code> is
21082
+ * <code>FUTURE_OPENING</code>. When the field is not requested, this field will
21083
+ * be undefined. Otherwise, this field will be populated with the opening date
21084
+ * if it is available, and null if it is not.
21085
+ * @type {!Date|null|undefined}
21086
+ */
21087
+ google.maps.places.Place.prototype.futureOpeningDate;
21088
+
20790
21089
  /**
20791
21090
  * The GenerativeSummary for this place.
20792
21091
  * @type {!google.maps.places.GenerativeSummary|null|undefined}
@@ -20893,6 +21192,16 @@ google.maps.places.Place.prototype.isGoodForGroups;
20893
21192
  */
20894
21193
  google.maps.places.Place.prototype.isGoodForWatchingSports;
20895
21194
 
21195
+ /**
21196
+ * Indicates whether the place is a pure service area business. A pure service
21197
+ * area business is a business that visits or delivers to customers directly but
21198
+ * does not serve customers at their business address. For example, businesses
21199
+ * like cleaning services or plumbers may not have a physical address or
21200
+ * location on Google Maps.
21201
+ * @type {boolean|null|undefined}
21202
+ */
21203
+ google.maps.places.Place.prototype.isPureServiceAreaBusiness;
21204
+
20896
21205
  /**
20897
21206
  * Whether a place is reservable. Returns &#39;true&#39; or &#39;false&#39; if
20898
21207
  * the value is known. Returns &#39;null&#39; if the value is unknown. Returns
@@ -21137,6 +21446,12 @@ google.maps.places.Place.prototype.subDestinations;
21137
21446
  */
21138
21447
  google.maps.places.Place.prototype.svgIconMaskURI;
21139
21448
 
21449
+ /**
21450
+ * The TimeZone for this place.
21451
+ * @type {!google.maps.places.TimeZone|null|undefined}
21452
+ */
21453
+ google.maps.places.Place.prototype.timeZone;
21454
+
21140
21455
  /**
21141
21456
  * An array of <a
21142
21457
  * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">types
@@ -21410,6 +21725,31 @@ google.maps.places.PlaceAttributionElementOptions.prototype.lightSchemeColor;
21410
21725
  */
21411
21726
  google.maps.places.PlaceAutocompleteElement = function(options) {};
21412
21727
 
21728
+ /**
21729
+ * The description to be used for the input element. This will be detected by
21730
+ * screen readers when the input element is focused. See <a
21731
+ * href="https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-describedby">https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Attributes/aria-describedby</a>
21732
+ * for details.
21733
+ * @type {string|null}
21734
+ */
21735
+ google.maps.places.PlaceAutocompleteElement.prototype.description;
21736
+
21737
+ /**
21738
+ * Whether the input element is disabled. See <a
21739
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled</a>
21740
+ * for details.
21741
+ * @type {boolean|null}
21742
+ */
21743
+ google.maps.places.PlaceAutocompleteElement.prototype.disabled;
21744
+
21745
+ /**
21746
+ * Whether to include places that are not yet open but are expected to open in
21747
+ * the future.
21748
+ * @type {boolean|null}
21749
+ */
21750
+ google.maps.places.PlaceAutocompleteElement.prototype
21751
+ .futureOpeningBusinessesIncluded;
21752
+
21413
21753
  /**
21414
21754
  * Included primary <a
21415
21755
  * href="https://developers.google.com/maps/documentation/places/javascript/place-types">Place
@@ -21442,6 +21782,14 @@ google.maps.places.PlaceAutocompleteElement.prototype.locationBias;
21442
21782
  */
21443
21783
  google.maps.places.PlaceAutocompleteElement.prototype.locationRestriction;
21444
21784
 
21785
+ /**
21786
+ * The maximum number of characters that the user can enter. See <a
21787
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength</a>
21788
+ * for details.
21789
+ * @type {number|null}
21790
+ */
21791
+ google.maps.places.PlaceAutocompleteElement.prototype.maxlength;
21792
+
21445
21793
  /**
21446
21794
  * The name to be used for the input element. See <a
21447
21795
  * 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>
@@ -21453,6 +21801,12 @@ google.maps.places.PlaceAutocompleteElement.prototype.locationRestriction;
21453
21801
  */
21454
21802
  google.maps.places.PlaceAutocompleteElement.prototype.name;
21455
21803
 
21804
+ /**
21805
+ * Whether to hide the input icon.
21806
+ * @type {boolean|null}
21807
+ */
21808
+ google.maps.places.PlaceAutocompleteElement.prototype.noInputIcon;
21809
+
21456
21810
  /**
21457
21811
  * The origin from which to calculate distance. If not specified, distance is
21458
21812
  * not calculated. The altitude, if given, is not used in the calculation.
@@ -21461,11 +21815,28 @@ google.maps.places.PlaceAutocompleteElement.prototype.name;
21461
21815
  google.maps.places.PlaceAutocompleteElement.prototype.origin;
21462
21816
 
21463
21817
  /**
21464
- * The placeholder text to display in the input element.
21818
+ * The placeholder text to be used for the input element. See <a
21819
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder</a>
21820
+ * for details.
21465
21821
  * @type {string|null}
21466
21822
  */
21467
21823
  google.maps.places.PlaceAutocompleteElement.prototype.placeholder;
21468
21824
 
21825
+ /**
21826
+ * Whether to include places that are pure service area businesses.
21827
+ * @type {boolean|null}
21828
+ */
21829
+ google.maps.places.PlaceAutocompleteElement.prototype
21830
+ .pureServiceAreaBusinessesIncluded;
21831
+
21832
+ /**
21833
+ * Whether the input element is read-only. See <a
21834
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly</a>
21835
+ * for details.
21836
+ * @type {boolean|null}
21837
+ */
21838
+ google.maps.places.PlaceAutocompleteElement.prototype.readonly;
21839
+
21469
21840
  /**
21470
21841
  * A language identifier for the language in which the results should be
21471
21842
  * returned, if possible. Results in the selected language may be given a higher
@@ -21511,6 +21882,24 @@ google.maps.places.PlaceAutocompleteElement.prototype.value;
21511
21882
  */
21512
21883
  google.maps.places.PlaceAutocompleteElementOptions = function() {};
21513
21884
 
21885
+ /**
21886
+ * The description to be used for the input element. This will be detected by
21887
+ * screen readers when the input element is focused.
21888
+ * @type {string|null|undefined}
21889
+ */
21890
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.description;
21891
+
21892
+ /**
21893
+ * @type {boolean|null|undefined}
21894
+ */
21895
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.disabled;
21896
+
21897
+ /**
21898
+ * @type {boolean|null|undefined}
21899
+ */
21900
+ google.maps.places.PlaceAutocompleteElementOptions.prototype
21901
+ .futureOpeningBusinessesIncluded;
21902
+
21514
21903
  /**
21515
21904
  * @type {!Array<string>|null|undefined}
21516
21905
  */
@@ -21534,16 +21923,42 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype.locationBias;
21534
21923
  google.maps.places.PlaceAutocompleteElementOptions.prototype
21535
21924
  .locationRestriction;
21536
21925
 
21926
+ /**
21927
+ * @type {number|null|undefined}
21928
+ */
21929
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.maxlength;
21930
+
21537
21931
  /**
21538
21932
  * @type {string|null|undefined}
21539
21933
  */
21540
21934
  google.maps.places.PlaceAutocompleteElementOptions.prototype.name;
21541
21935
 
21936
+ /**
21937
+ * @type {boolean|null|undefined}
21938
+ */
21939
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.noInputIcon;
21940
+
21542
21941
  /**
21543
21942
  * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
21544
21943
  */
21545
21944
  google.maps.places.PlaceAutocompleteElementOptions.prototype.origin;
21546
21945
 
21946
+ /**
21947
+ * @type {string|null|undefined}
21948
+ */
21949
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.placeholder;
21950
+
21951
+ /**
21952
+ * @type {boolean|null|undefined}
21953
+ */
21954
+ google.maps.places.PlaceAutocompleteElementOptions.prototype
21955
+ .pureServiceAreaBusinessesIncluded;
21956
+
21957
+ /**
21958
+ * @type {boolean|null|undefined}
21959
+ */
21960
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.readonly;
21961
+
21547
21962
  /**
21548
21963
  * @type {string|null|undefined}
21549
21964
  */
@@ -22148,6 +22563,14 @@ google.maps.places.PlaceNearbySearchRequestElement.prototype
22148
22563
  */
22149
22564
  google.maps.places.PlaceNearbySearchRequestElement.prototype.excludedTypes;
22150
22565
 
22566
+ /**
22567
+ * Include place predictions for businesses that are not yet open but are
22568
+ * expected to open in the future.
22569
+ * @type {boolean|null|undefined}
22570
+ */
22571
+ google.maps.places.PlaceNearbySearchRequestElement.prototype
22572
+ .futureOpeningBusinessesIncluded;
22573
+
22151
22574
  /**
22152
22575
  * Included primary place type.
22153
22576
  * @default <code>null</code>
@@ -22210,6 +22633,14 @@ google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
22210
22633
  google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
22211
22634
  .excludedTypes;
22212
22635
 
22636
+ /**
22637
+ * Include place predictions for businesses that are not yet open but are
22638
+ * expected to open in the future.
22639
+ * @type {boolean|null|undefined}
22640
+ */
22641
+ google.maps.places.PlaceNearbySearchRequestElementOptions.prototype
22642
+ .futureOpeningBusinessesIncluded;
22643
+
22213
22644
  /**
22214
22645
  * Included primary place types. See {@link
22215
22646
  * google.maps.places.PlaceNearbySearchRequestElement.includedPrimaryTypes}
@@ -23447,6 +23878,14 @@ google.maps.places.PlaceTextSearchRequestElement.prototype.evConnectorTypes;
23447
23878
  google.maps.places.PlaceTextSearchRequestElement.prototype
23448
23879
  .evMinimumChargingRateKw;
23449
23880
 
23881
+ /**
23882
+ * Include place predictions for businesses that are not yet open but are
23883
+ * expected to open in the future.
23884
+ * @type {boolean|null|undefined}
23885
+ */
23886
+ google.maps.places.PlaceTextSearchRequestElement.prototype
23887
+ .futureOpeningBusinessesIncluded;
23888
+
23450
23889
  /**
23451
23890
  * The requested place type.
23452
23891
  * @default <code>null</code>
@@ -23547,6 +23986,14 @@ google.maps.places.PlaceTextSearchRequestElementOptions.prototype
23547
23986
  google.maps.places.PlaceTextSearchRequestElementOptions.prototype
23548
23987
  .evMinimumChargingRateKw;
23549
23988
 
23989
+ /**
23990
+ * Include place predictions for businesses that are not yet open but are
23991
+ * expected to open in the future.
23992
+ * @type {boolean|null|undefined}
23993
+ */
23994
+ google.maps.places.PlaceTextSearchRequestElementOptions.prototype
23995
+ .futureOpeningBusinessesIncluded;
23996
+
23550
23997
  /**
23551
23998
  * The requested place type. See {@link
23552
23999
  * google.maps.places.SearchByTextRequest.includedType} and {@link
@@ -24450,6 +24897,13 @@ google.maps.places.SearchByTextRequest.prototype.evSearchOptions;
24450
24897
  */
24451
24898
  google.maps.places.SearchByTextRequest.prototype.fields;
24452
24899
 
24900
+ /**
24901
+ * Include places that are not yet open but are expected to open in the future.
24902
+ * @type {boolean|undefined}
24903
+ */
24904
+ google.maps.places.SearchByTextRequest.prototype
24905
+ .futureOpeningBusinessesIncluded;
24906
+
24453
24907
  /**
24454
24908
  * The requested place type. Full list of types supported: <a
24455
24909
  * href="https://developers.google.com/maps/documentation/places/web-service/place-types">https://developers.google.com/maps/documentation/places/web-service/place-types</a>.
@@ -24516,6 +24970,19 @@ google.maps.places.SearchByTextRequest.prototype.minRating;
24516
24970
  */
24517
24971
  google.maps.places.SearchByTextRequest.prototype.priceLevels;
24518
24972
 
24973
+ /**
24974
+ * Include pure service area businesses if the field is set to true. A pure
24975
+ * service area business is a business that visits or delivers to customers
24976
+ * directly but does not serve customers at their business address. For example,
24977
+ * businesses like cleaning services or plumbers may not have a physical address
24978
+ * or location on Google Maps. Places will not return fields including
24979
+ * <code>location</code>, <code>plusCode</code>, and other location related
24980
+ * fields for these businesses.
24981
+ * @type {boolean|undefined}
24982
+ */
24983
+ google.maps.places.SearchByTextRequest.prototype
24984
+ .pureServiceAreaBusinessesIncluded;
24985
+
24519
24986
  /**
24520
24987
  * How results will be ranked in the response.
24521
24988
  * @default <code>SearchByTextRankPreference.RELEVANCE</code>
@@ -24625,6 +25092,13 @@ google.maps.places.SearchNearbyRequest.prototype.excludedTypes;
24625
25092
  */
24626
25093
  google.maps.places.SearchNearbyRequest.prototype.fields;
24627
25094
 
25095
+ /**
25096
+ * Include places that are not yet open but are expected to open in the future.
25097
+ * @type {boolean|undefined}
25098
+ */
25099
+ google.maps.places.SearchNearbyRequest.prototype
25100
+ .futureOpeningBusinessesIncluded;
25101
+
24628
25102
  /**
24629
25103
  * Included primary place types. See the <a
24630
25104
  * href="https://developers.google.com/maps/documentation/places/web-service/place-types">full
@@ -24710,6 +25184,46 @@ google.maps.places.SecondaryOpeningHours = function() {};
24710
25184
  */
24711
25185
  google.maps.places.SecondaryOpeningHours.prototype.type;
24712
25186
 
25187
+ /**
25188
+ * Defines the spatial relationship between the target location and the landmark
25189
+ *
25190
+ * Access by calling `const {SpatialRelationship} = await
25191
+ * google.maps.importLibrary("places");`. See
25192
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25193
+ * @enum {string}
25194
+ */
25195
+ google.maps.places.SpatialRelationship = {
25196
+ /**
25197
+ * The target is directly opposite the landmark on the other side of the road.
25198
+ */
25199
+ ACROSS_THE_ROAD: 'ACROSS_THE_ROAD',
25200
+ /**
25201
+ * Not on the same route as the landmark but a single turn away.
25202
+ */
25203
+ AROUND_THE_CORNER: 'AROUND_THE_CORNER',
25204
+ /**
25205
+ * Close to the landmark&#39;s structure but further away from its street
25206
+ * entrances.
25207
+ */
25208
+ BEHIND: 'BEHIND',
25209
+ /**
25210
+ * The target is directly adjacent to the landmark.
25211
+ */
25212
+ BESIDE: 'BESIDE',
25213
+ /**
25214
+ * On the same route as the landmark but not besides or across.
25215
+ */
25216
+ DOWN_THE_ROAD: 'DOWN_THE_ROAD',
25217
+ /**
25218
+ * The default relationship when nothing more specific below applies.
25219
+ */
25220
+ NEAR: 'NEAR',
25221
+ /**
25222
+ * The landmark has a spatial geometry and the target is within its bounds.
25223
+ */
25224
+ WITHIN: 'WITHIN',
25225
+ };
25226
+
24713
25227
  /**
24714
25228
  * Identifies a substring within a given text.
24715
25229
  *
@@ -24834,14 +25348,38 @@ google.maps.places.TextSearchRequest.prototype.region;
24834
25348
  */
24835
25349
  google.maps.places.TextSearchRequest.prototype.type;
24836
25350
 
25351
+ /**
25352
+ * Represents a time zone from the IANA Time Zone Database <a
25353
+ * href="https://www.iana.org/time-zones">https://www.iana.org/time-zones</a>.
25354
+ *
25355
+ * Access by calling `const {TimeZone} = await
25356
+ * google.maps.importLibrary("places");`. See
25357
+ * https://developers.google.com/maps/documentation/javascript/libraries.
25358
+ * @constructor
25359
+ */
25360
+ google.maps.places.TimeZone = function() {};
25361
+
25362
+ /**
25363
+ * IANA Time Zone Database time zone. For example &quot;America/New_York&quot;.
25364
+ * @type {string|null}
25365
+ */
25366
+ google.maps.places.TimeZone.prototype.id;
25367
+
25368
+ /**
25369
+ * IANA Time Zone Database version number. For example &quot;2019a&quot;.
25370
+ * @type {string|null}
25371
+ */
25372
+ google.maps.places.TimeZone.prototype.version;
25373
+
24837
25374
  /**
24838
25375
  * @const
24839
25376
  */
24840
25377
  google.maps.routes = {};
24841
25378
 
24842
25379
  /**
24843
- * Extra computations to perform for a {@link
24844
- * google.maps.routes.RouteMatrix.computeRouteMatrix} request.
25380
+ * Extra computations to perform while completing the request. See the <a
25381
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25382
+ * service documentation</a> for more information.
24845
25383
  *
24846
25384
  * Access by calling `const {ComputeRouteMatrixExtraComputation} = await
24847
25385
  * google.maps.importLibrary("routes");`. See
@@ -24850,7 +25388,9 @@ google.maps.routes = {};
24850
25388
  */
24851
25389
  google.maps.routes.ComputeRouteMatrixExtraComputation = {
24852
25390
  /**
24853
- * Toll information for the matrix item(s).
25391
+ * Toll information for the matrix element(s). See the <a
25392
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25393
+ * service documentation</a> for more information.
24854
25394
  */
24855
25395
  TOLLS: 'TOLLS',
24856
25396
  };
@@ -25009,8 +25549,9 @@ google.maps.routes.ComputeRouteMatrixRequest.prototype.travelMode;
25009
25549
  google.maps.routes.ComputeRouteMatrixRequest.prototype.units;
25010
25550
 
25011
25551
  /**
25012
- * Extra computations to perform for a {@link
25013
- * google.maps.routes.Route.computeRoutes} request.
25552
+ * Extra computations to perform while completing the request. See the <a
25553
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25554
+ * service documentation</a> for more information.
25014
25555
  *
25015
25556
  * Access by calling `const {ComputeRoutesExtraComputation} = await
25016
25557
  * google.maps.importLibrary("routes");`. See
@@ -25019,38 +25560,40 @@ google.maps.routes.ComputeRouteMatrixRequest.prototype.units;
25019
25560
  */
25020
25561
  google.maps.routes.ComputeRoutesExtraComputation = {
25021
25562
  /**
25022
- * Flyover information for the route(s). The
25023
- * <code>&quot;polylineDetails&quot;</code> field must be specified in {@link
25024
- * google.maps.routes.ComputeRoutesRequest.fields} to return this information.
25025
- * This data will only currently be populated for certain metros in India.
25026
- * This feature is experimental, and the SKU/charge is subject to change.
25563
+ * Flyover information for the route(s). See the <a
25564
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25565
+ * service documentation</a> for more information.
25027
25566
  */
25028
25567
  FLYOVER_INFO_ON_POLYLINE: 'FLYOVER_INFO_ON_POLYLINE',
25029
25568
  /**
25030
- * Estimated fuel consumption for the route(s).
25569
+ * Estimated fuel consumption for the route(s). See the <a
25570
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25571
+ * service documentation</a> for more information.
25031
25572
  */
25032
25573
  FUEL_CONSUMPTION: 'FUEL_CONSUMPTION',
25033
25574
  /**
25034
- * Navigation instructions presented as a formatted HTML text string. This
25035
- * content is meant to be read as-is and is for display only. Do not
25036
- * programmatically parse it.
25575
+ * See the <a
25576
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25577
+ * service documentation</a> for more information.
25037
25578
  */
25038
25579
  HTML_FORMATTED_NAVIGATION_INSTRUCTIONS:
25039
25580
  'HTML_FORMATTED_NAVIGATION_INSTRUCTIONS',
25040
25581
  /**
25041
- * Narrow road information for the route(s). The
25042
- * <code>&quot;polylineDetails&quot;</code> field must be specified in {@link
25043
- * google.maps.routes.ComputeRoutesRequest.fields} to return this information.
25044
- * This data will only currently be populated for certain metros in India.
25045
- * This feature is experimental, and the SKU/charge is subject to change.
25582
+ * Narrow road information for the route(s). See the <a
25583
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25584
+ * service documentation</a> for more information.
25046
25585
  */
25047
25586
  NARROW_ROAD_INFO_ON_POLYLINE: 'NARROW_ROAD_INFO_ON_POLYLINE',
25048
25587
  /**
25049
- * Toll information for the route(s).
25588
+ * Toll information for the route(s). See the <a
25589
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25590
+ * service documentation</a> for more information.
25050
25591
  */
25051
25592
  TOLLS: 'TOLLS',
25052
25593
  /**
25053
- * Traffic aware polylines for the route(s).
25594
+ * Traffic aware polylines for the route(s). See the <a
25595
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#extracomputation">web
25596
+ * service documentation</a> for more information.
25054
25597
  */
25055
25598
  TRAFFIC_ON_POLYLINE: 'TRAFFIC_ON_POLYLINE',
25056
25599
  };
@@ -25274,7 +25817,7 @@ google.maps.routes.DirectionalLocation.prototype.heading;
25274
25817
  /**
25275
25818
  * Converts to a plain object.
25276
25819
  * @param {string=} key
25277
- * @return {!google.maps.LatLngAltitudeLiteral}
25820
+ * @return {!google.maps.routes.DirectionalLocationLiteral}
25278
25821
  */
25279
25822
  google.maps.routes.DirectionalLocation.prototype.toJSON = function(key) {};
25280
25823
 
@@ -25327,8 +25870,9 @@ google.maps.routes.FallbackInfo.prototype.reason;
25327
25870
  google.maps.routes.FallbackInfo.prototype.routingMode;
25328
25871
 
25329
25872
  /**
25330
- * The reason that a fallback response was returned in a {@link
25331
- * google.maps.routes.Route.computeRoutes} response.
25873
+ * Reasons for using fallback response. See the <a
25874
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#fallbackreason">web
25875
+ * service documentation</a> for more information.
25332
25876
  *
25333
25877
  * Access by calling `const {FallbackReason} = await
25334
25878
  * google.maps.importLibrary("routes");`. See
@@ -25339,20 +25883,25 @@ google.maps.routes.FallbackReason = {
25339
25883
  /**
25340
25884
  * We were not able to finish the calculation with your preferred routing mode
25341
25885
  * on time, but we were able to return a result calculated by an alternative
25342
- * mode.
25886
+ * mode. See the <a
25887
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#fallbackreason">web
25888
+ * service documentation</a> for more information.
25343
25889
  */
25344
25890
  LATENCY_EXCEEDED: 'LATENCY_EXCEEDED',
25345
25891
  /**
25346
25892
  * A server error happened while calculating routes with your preferred
25347
25893
  * routing mode, but we were able to return a result calculated by an
25348
- * alternative mode.
25894
+ * alternative mode. See the <a
25895
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#fallbackreason">web
25896
+ * service documentation</a> for more information.
25349
25897
  */
25350
25898
  SERVER_ERROR: 'SERVER_ERROR',
25351
25899
  };
25352
25900
 
25353
25901
  /**
25354
- * The actual routing mode used when a fallback response is returned in a {@link
25355
- * google.maps.routes.Route.computeRoutes} response.
25902
+ * Actual routing mode used for returned fallback response. See the <a
25903
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#fallbackroutingmode">web
25904
+ * service documentation</a> for more information.
25356
25905
  *
25357
25906
  * Access by calling `const {FallbackRoutingMode} = await
25358
25907
  * google.maps.importLibrary("routes");`. See
@@ -25361,13 +25910,15 @@ google.maps.routes.FallbackReason = {
25361
25910
  */
25362
25911
  google.maps.routes.FallbackRoutingMode = {
25363
25912
  /**
25364
- * Indicates the <code>TRAFFIC_AWARE</code> {@link
25365
- * google.maps.routes.RoutingPreference} was used to compute the response.
25913
+ * See the <a
25914
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#fallbackroutingmode">web
25915
+ * service documentation</a> for more information.
25366
25916
  */
25367
25917
  TRAFFIC_AWARE: 'TRAFFIC_AWARE',
25368
25918
  /**
25369
- * Indicates the <code>TRAFFIC_UNAWARE</code> {@link
25370
- * google.maps.routes.RoutingPreference} was used to compute the response.
25919
+ * See the <a
25920
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#fallbackroutingmode">web
25921
+ * service documentation</a> for more information.
25371
25922
  */
25372
25923
  TRAFFIC_UNAWARE: 'TRAFFIC_UNAWARE',
25373
25924
  };
@@ -25553,7 +26104,9 @@ google.maps.routes.PolylineDetails.prototype.flyoverInfo;
25553
26104
  google.maps.routes.PolylineDetails.prototype.narrowRoadInfo;
25554
26105
 
25555
26106
  /**
25556
- * Specifies the quality of the polyline.
26107
+ * A set of values that specify the quality of the polyline. See the <a
26108
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#polylinequality">web
26109
+ * service documentation</a> for more information.
25557
26110
  *
25558
26111
  * Access by calling `const {PolylineQuality} = await
25559
26112
  * google.maps.importLibrary("routes");`. See
@@ -25562,23 +26115,26 @@ google.maps.routes.PolylineDetails.prototype.narrowRoadInfo;
25562
26115
  */
25563
26116
  google.maps.routes.PolylineQuality = {
25564
26117
  /**
25565
- * Specifies a high-quality polyline that is composed using more points than
25566
- * <code>OVERVIEW</code> at the cost of increased response size. Use this
25567
- * value when you need more precision.
26118
+ * Specifies a high-quality polyline - which is composed using more points
26119
+ * than <code>OVERVIEW</code>, at the cost of increased response size. See the
26120
+ * <a
26121
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#polylinequality">web
26122
+ * service documentation</a> for more information.
25568
26123
  */
25569
26124
  HIGH_QUALITY: 'HIGH_QUALITY',
25570
26125
  /**
25571
- * Specifies an overview polyline that is composed using a small number of
25572
- * points. Using this option has a lower request latency compared to
25573
- * <code>HIGH_QUALITY</code>. Use this value when displaying an overview of
25574
- * the route.
26126
+ * Specifies an overview polyline - which is composed using a small number of
26127
+ * points. See the <a
26128
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#polylinequality">web
26129
+ * service documentation</a> for more information.
25575
26130
  */
25576
26131
  OVERVIEW: 'OVERVIEW',
25577
26132
  };
25578
26133
 
25579
26134
  /**
25580
- * A supported reference route on a {@link
25581
- * google.maps.routes.ComputeRoutesRequest}.
26135
+ * A supported reference route on the ComputeRoutesRequest. See the <a
26136
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#referenceroute">web
26137
+ * service documentation</a> for more information.
25582
26138
  *
25583
26139
  * Access by calling `const {ReferenceRoute} = await
25584
26140
  * google.maps.importLibrary("routes");`. See
@@ -25587,17 +26143,24 @@ google.maps.routes.PolylineQuality = {
25587
26143
  */
25588
26144
  google.maps.routes.ReferenceRoute = {
25589
26145
  /**
25590
- * Fuel efficient route.
26146
+ * Fuel efficient route. See the <a
26147
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#referenceroute">web
26148
+ * service documentation</a> for more information.
25591
26149
  */
25592
26150
  FUEL_EFFICIENT: 'FUEL_EFFICIENT',
25593
26151
  /**
25594
- * Route with shorter travel distance.
26152
+ * Route with shorter travel distance. See the <a
26153
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#referenceroute">web
26154
+ * service documentation</a> for more information.
25595
26155
  */
25596
26156
  SHORTER_DISTANCE: 'SHORTER_DISTANCE',
25597
26157
  };
25598
26158
 
25599
26159
  /**
25600
- * Encapsulates the states of road features along a stretch of polyline.
26160
+ * Encapsulates the states of road features along a stretch of polyline. See the
26161
+ * <a
26162
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#roadfeaturestate">web
26163
+ * service documentation</a> for more information.
25601
26164
  *
25602
26165
  * Access by calling `const {RoadFeatureState} = await
25603
26166
  * google.maps.importLibrary("routes");`. See
@@ -25606,11 +26169,15 @@ google.maps.routes.ReferenceRoute = {
25606
26169
  */
25607
26170
  google.maps.routes.RoadFeatureState = {
25608
26171
  /**
25609
- * The road feature does not exist.
26172
+ * The road feature does not exist. See the <a
26173
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#roadfeaturestate">web
26174
+ * service documentation</a> for more information.
25610
26175
  */
25611
26176
  DOES_NOT_EXIST: 'DOES_NOT_EXIST',
25612
26177
  /**
25613
- * The road feature exists.
26178
+ * The road feature exists. See the <a
26179
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#roadfeaturestate">web
26180
+ * service documentation</a> for more information.
25614
26181
  */
25615
26182
  EXISTS: 'EXISTS',
25616
26183
  };
@@ -25958,8 +26525,9 @@ google.maps.routes.Route3DElementOptions.prototype.routingPreference;
25958
26525
  google.maps.routes.Route3DElementOptions.prototype.travelMode;
25959
26526
 
25960
26527
  /**
25961
- * Labels for the route that are useful to identify specific properties to
25962
- * compare against others.
26528
+ * See the <a
26529
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routelabel">web
26530
+ * service documentation</a> for more information.
25963
26531
  *
25964
26532
  * Access by calling `const {RouteLabel} = await
25965
26533
  * google.maps.importLibrary("routes");`. See
@@ -25968,23 +26536,28 @@ google.maps.routes.Route3DElementOptions.prototype.travelMode;
25968
26536
  */
25969
26537
  google.maps.routes.RouteLabel = {
25970
26538
  /**
25971
- * The default &quot;best&quot; route returned for the route computation.
26539
+ * The default &quot;best&quot; route returned for the route computation. See
26540
+ * the <a
26541
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routelabel">web
26542
+ * service documentation</a> for more information.
25972
26543
  */
25973
26544
  DEFAULT_ROUTE: 'DEFAULT_ROUTE',
25974
26545
  /**
25975
- * An alternative to the default &quot;best&quot; route. Routes like this will
25976
- * be returned when {@link
25977
- * google.maps.routes.ComputeRoutesRequest.computeAlternativeRoutes} is
25978
- * specified.
26546
+ * An alternative to the default &quot;best&quot; route. See the <a
26547
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routelabel">web
26548
+ * service documentation</a> for more information.
25979
26549
  */
25980
26550
  DEFAULT_ROUTE_ALTERNATE: 'DEFAULT_ROUTE_ALTERNATE',
25981
26551
  /**
25982
- * Fuel efficient route. Routes labeled with this value are determined to be
25983
- * optimized for eco parameters such as fuel consumption.
26552
+ * Fuel efficient route. See the <a
26553
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routelabel">web
26554
+ * service documentation</a> for more information.
25984
26555
  */
25985
26556
  FUEL_EFFICIENT: 'FUEL_EFFICIENT',
25986
26557
  /**
25987
- * Shorter travel distance route. This is an experimental feature.
26558
+ * Shorter travel distance route. See the <a
26559
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routelabel">web
26560
+ * service documentation</a> for more information.
25988
26561
  */
25989
26562
  SHORTER_DISTANCE: 'SHORTER_DISTANCE',
25990
26563
  };
@@ -26490,7 +27063,9 @@ google.maps.routes.RouteMatrixItem.prototype.staticDurationMillis;
26490
27063
  google.maps.routes.RouteMatrixItem.prototype.travelAdvisory;
26491
27064
 
26492
27065
  /**
26493
- * The condition of a route for a given origin/destination pair.
27066
+ * The condition of the route being returned. See the <a
27067
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routematrixelementcondition">web
27068
+ * service documentation</a> for more information.
26494
27069
  *
26495
27070
  * Access by calling `const {RouteMatrixItemCondition} = await
26496
27071
  * google.maps.importLibrary("routes");`. See
@@ -26499,11 +27074,16 @@ google.maps.routes.RouteMatrixItem.prototype.travelAdvisory;
26499
27074
  */
26500
27075
  google.maps.routes.RouteMatrixItemCondition = {
26501
27076
  /**
26502
- * A route was found.
27077
+ * A route was found, and the corresponding information was filled out for the
27078
+ * element. See the <a
27079
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routematrixelementcondition">web
27080
+ * service documentation</a> for more information.
26503
27081
  */
26504
27082
  ROUTE_EXISTS: 'ROUTE_EXISTS',
26505
27083
  /**
26506
- * No route could be found.
27084
+ * No route could be found. See the <a
27085
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routematrixelementcondition">web
27086
+ * service documentation</a> for more information.
26507
27087
  */
26508
27088
  ROUTE_NOT_FOUND: 'ROUTE_NOT_FOUND',
26509
27089
  };
@@ -26835,7 +27415,10 @@ google.maps.routes.RouteTravelAdvisory.prototype.tollInfo;
26835
27415
  google.maps.routes.RouteTravelAdvisory.prototype.transitFare;
26836
27416
 
26837
27417
  /**
26838
- * Factors to take into consideration when calculating a route.
27418
+ * A set of values that specify factors to take into consideration when
27419
+ * calculating the route. See the <a
27420
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routingpreference">web
27421
+ * service documentation</a> for more information.
26839
27422
  *
26840
27423
  * Access by calling `const {RoutingPreference} = await
26841
27424
  * google.maps.importLibrary("routes");`. See
@@ -26844,27 +27427,32 @@ google.maps.routes.RouteTravelAdvisory.prototype.transitFare;
26844
27427
  */
26845
27428
  google.maps.routes.RoutingPreference = {
26846
27429
  /**
26847
- * Calculates routes taking live traffic conditions into consideration. In
26848
- * contrast to <code>TRAFFIC_AWARE_OPTIMAL</code>, some optimizations are
26849
- * applied to significantly reduce latency.
27430
+ * Calculates routes taking live traffic conditions into consideration. See
27431
+ * the <a
27432
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routingpreference">web
27433
+ * service documentation</a> for more information.
26850
27434
  */
26851
27435
  TRAFFIC_AWARE: 'TRAFFIC_AWARE',
26852
27436
  /**
26853
27437
  * Calculates the routes taking live traffic conditions into consideration,
26854
- * without applying most performance optimizations. Using this value produces
26855
- * the highest latency.
27438
+ * without applying most performance optimizations. See the <a
27439
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routingpreference">web
27440
+ * service documentation</a> for more information.
26856
27441
  */
26857
27442
  TRAFFIC_AWARE_OPTIMAL: 'TRAFFIC_AWARE_OPTIMAL',
26858
27443
  /**
26859
27444
  * Computes routes without taking live traffic conditions into consideration.
26860
- * Suitable when traffic conditions don&#39;t matter or are not applicable.
26861
- * Using this value produces the lowest latency.
27445
+ * See the <a
27446
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#routingpreference">web
27447
+ * service documentation</a> for more information.
26862
27448
  */
26863
27449
  TRAFFIC_UNAWARE: 'TRAFFIC_UNAWARE',
26864
27450
  };
26865
27451
 
26866
27452
  /**
26867
- * The classification of polyline speed based on traffic data.
27453
+ * The classification of polyline speed based on traffic data. See the <a
27454
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#speed">web
27455
+ * service documentation</a> for more information.
26868
27456
  *
26869
27457
  * Access by calling `const {Speed} = await
26870
27458
  * google.maps.importLibrary("routes");`. See
@@ -26873,15 +27461,21 @@ google.maps.routes.RoutingPreference = {
26873
27461
  */
26874
27462
  google.maps.routes.Speed = {
26875
27463
  /**
26876
- * Normal speed, no traffic delays.
27464
+ * Normal speed, no traffic delays. See the <a
27465
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#speed">web
27466
+ * service documentation</a> for more information.
26877
27467
  */
26878
27468
  NORMAL: 'NORMAL',
26879
27469
  /**
26880
- * Slowdown detected, medium amount of traffic.
27470
+ * Slowdown detected, medium amount of traffic. See the <a
27471
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#speed">web
27472
+ * service documentation</a> for more information.
26881
27473
  */
26882
27474
  SLOW: 'SLOW',
26883
27475
  /**
26884
- * Traffic delays.
27476
+ * Traffic delays. See the <a
27477
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#speed">web
27478
+ * service documentation</a> for more information.
26885
27479
  */
26886
27480
  TRAFFIC_JAM: 'TRAFFIC_JAM',
26887
27481
  };
@@ -27231,8 +27825,9 @@ google.maps.routes.TransitVehicle.prototype.nameLanguage;
27231
27825
  google.maps.routes.TransitVehicle.prototype.vehicleType;
27232
27826
 
27233
27827
  /**
27234
- * A set of values describing the vehicle&#39;s emission type. Applies only to
27235
- * the <code>DRIVING</code> travel mode.
27828
+ * A set of values describing the vehicle&#39;s emission type. See the <a
27829
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#vehicleemissiontype">web
27830
+ * service documentation</a> for more information.
27236
27831
  *
27237
27832
  * Access by calling `const {VehicleEmissionType} = await
27238
27833
  * google.maps.importLibrary("routes");`. See
@@ -27241,19 +27836,27 @@ google.maps.routes.TransitVehicle.prototype.vehicleType;
27241
27836
  */
27242
27837
  google.maps.routes.VehicleEmissionType = {
27243
27838
  /**
27244
- * Diesel fueled vehicle.
27839
+ * Diesel fueled vehicle. See the <a
27840
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#vehicleemissiontype">web
27841
+ * service documentation</a> for more information.
27245
27842
  */
27246
27843
  DIESEL: 'DIESEL',
27247
27844
  /**
27248
- * Electricity powered vehicle.
27845
+ * Electricity powered vehicle. See the <a
27846
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#vehicleemissiontype">web
27847
+ * service documentation</a> for more information.
27249
27848
  */
27250
27849
  ELECTRIC: 'ELECTRIC',
27251
27850
  /**
27252
- * Gasoline/petrol fueled vehicle.
27851
+ * Gasoline/petrol fueled vehicle. See the <a
27852
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#vehicleemissiontype">web
27853
+ * service documentation</a> for more information.
27253
27854
  */
27254
27855
  GASOLINE: 'GASOLINE',
27255
27856
  /**
27256
- * Hybrid fuel (such as gasoline + electric) vehicle.
27857
+ * Hybrid fuel (such as gasoline + electric) vehicle. See the <a
27858
+ * href="https://developers.google.com/maps/documentation/routes/reference/rpc/google.maps.routing.v2#vehicleemissiontype">web
27859
+ * service documentation</a> for more information.
27257
27860
  */
27258
27861
  HYBRID: 'HYBRID',
27259
27862
  };