google-closure-compiler 20260909.0.0 → 20260914.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.
@@ -1171,7 +1171,7 @@ google.maps.Data.DataOptions.prototype.style;
1171
1171
  *
1172
1172
  * Access by calling `const {Data} = await google.maps.importLibrary("maps");`.
1173
1173
  * See https://developers.google.com/maps/documentation/javascript/libraries.
1174
- * @param {?google.maps.Data.FeatureOptions=} options
1174
+ * @param {!google.maps.Data.FeatureOptions|null=} options
1175
1175
  * @constructor
1176
1176
  */
1177
1177
  google.maps.Data.Feature = function(options) {};
@@ -1186,7 +1186,7 @@ google.maps.Data.Feature.prototype.forEachProperty = function(callback) {};
1186
1186
 
1187
1187
  /**
1188
1188
  * Returns the feature's geometry.
1189
- * @return {?google.maps.Data.Geometry}
1189
+ * @return {!google.maps.Data.Geometry|null}
1190
1190
  */
1191
1191
  google.maps.Data.Feature.prototype.getGeometry = function() {};
1192
1192
 
@@ -1213,7 +1213,7 @@ google.maps.Data.Feature.prototype.removeProperty = function(name) {};
1213
1213
 
1214
1214
  /**
1215
1215
  * Sets the feature's geometry.
1216
- * @param {google.maps.Data.Geometry|google.maps.LatLng|google.maps.LatLngLiteral|null}
1216
+ * @param {!google.maps.Data.Geometry|!google.maps.LatLng|!google.maps.LatLngLiteral|null}
1217
1217
  * newGeometry
1218
1218
  * @return {undefined}
1219
1219
  */
@@ -3889,8 +3889,9 @@ google.maps.GeometryLibrary.prototype.spherical;
3889
3889
  * google.maps.importLibrary("maps");`. See
3890
3890
  * https://developers.google.com/maps/documentation/javascript/libraries.
3891
3891
  * @param {string} url
3892
- * @param {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null} bounds
3893
- * @param {?google.maps.GroundOverlayOptions=} opts
3892
+ * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null}
3893
+ * bounds
3894
+ * @param {!google.maps.GroundOverlayOptions|null=} opts
3894
3895
  * @extends {google.maps.MVCObject}
3895
3896
  * @constructor
3896
3897
  */
@@ -3898,13 +3899,13 @@ google.maps.GroundOverlay = function(url, bounds, opts) {};
3898
3899
 
3899
3900
  /**
3900
3901
  * Gets the <code>LatLngBounds</code> of this overlay.
3901
- * @return {?google.maps.LatLngBounds}
3902
+ * @return {!google.maps.LatLngBounds|null}
3902
3903
  */
3903
3904
  google.maps.GroundOverlay.prototype.getBounds = function() {};
3904
3905
 
3905
3906
  /**
3906
3907
  * Returns the map on which this ground overlay is displayed.
3907
- * @return {?google.maps.Map}
3908
+ * @return {!google.maps.Map|null}
3908
3909
  */
3909
3910
  google.maps.GroundOverlay.prototype.getMap = function() {};
3910
3911
 
@@ -3923,15 +3924,15 @@ google.maps.GroundOverlay.prototype.getUrl = function() {};
3923
3924
  /**
3924
3925
  * Renders the ground overlay on the specified map. If map is set to
3925
3926
  * <code>null</code>, the overlay is removed.
3926
- * @param {?google.maps.Map} map
3927
- * @return {undefined}
3927
+ * @param {!google.maps.Map|null} map
3928
+ * @return {void}
3928
3929
  */
3929
3930
  google.maps.GroundOverlay.prototype.setMap = function(map) {};
3930
3931
 
3931
3932
  /**
3932
3933
  * Sets the opacity of this ground overlay.
3933
3934
  * @param {number} opacity
3934
- * @return {undefined}
3935
+ * @return {void}
3935
3936
  */
3936
3937
  google.maps.GroundOverlay.prototype.setOpacity = function(opacity) {};
3937
3938
 
@@ -5117,9 +5118,9 @@ google.maps.LatLngAltitudeLiteral.prototype.lng;
5117
5118
  * Access by calling `const {LatLngBounds} = await
5118
5119
  * google.maps.importLibrary("core");`. See
5119
5120
  * https://developers.google.com/maps/documentation/javascript/libraries.
5120
- * @param {google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null=}
5121
+ * @param {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null=}
5121
5122
  * swOrLatLngBounds
5122
- * @param {google.maps.LatLng|google.maps.LatLngLiteral|null=} ne
5123
+ * @param {!google.maps.LatLng|!google.maps.LatLngLiteral|null=} ne
5123
5124
  * @constructor
5124
5125
  */
5125
5126
  google.maps.LatLngBounds = function(swOrLatLngBounds, ne) {};
@@ -5134,7 +5135,8 @@ google.maps.LatLngBounds.prototype.contains = function(latLng) {};
5134
5135
  /**
5135
5136
  * Returns <code>true</code> if this bounds approximately equals the given
5136
5137
  * bounds.
5137
- * @param {google.maps.LatLngBounds|google.maps.LatLngBoundsLiteral|null} other
5138
+ * @param {!google.maps.LatLngBounds|!google.maps.LatLngBoundsLiteral|null}
5139
+ * other
5138
5140
  * @return {boolean}
5139
5141
  */
5140
5142
  google.maps.LatLngBounds.prototype.equals = function(other) {};
@@ -6005,7 +6007,7 @@ google.maps.MapElement.prototype.innerMap;
6005
6007
  * Only unique values will be sent. Changes to this value after instantiation
6006
6008
  * may be ignored.
6007
6009
  * @default <code>null</code>
6008
- * @type {!Iterable<string>|null}
6010
+ * @type {!Iterable<string>|null|undefined}
6009
6011
  */
6010
6012
  google.maps.MapElement.prototype.internalUsageAttributionIds;
6011
6013
 
@@ -6830,6 +6832,12 @@ google.maps.Maps3DLibrary.prototype.FlattenerElement;
6830
6832
  */
6831
6833
  google.maps.Maps3DLibrary.prototype.GestureHandling;
6832
6834
 
6835
+ /**
6836
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
6837
+ * @type {typeof google.maps.maps3d.Label3DElement}
6838
+ */
6839
+ google.maps.Maps3DLibrary.prototype.Label3DElement;
6840
+
6833
6841
  /**
6834
6842
  * @type {typeof google.maps.maps3d.LocationClickEvent}
6835
6843
  */
@@ -7967,14 +7975,14 @@ google.maps.OverlayView.preventMapHitsFrom = function(element) {};
7967
7975
  google.maps.OverlayView.prototype.draw = function() {};
7968
7976
 
7969
7977
  /**
7970
- * @return {!google.maps.Map|!google.maps.StreetViewPanorama}
7978
+ * @return {!google.maps.Map|!google.maps.StreetViewPanorama|null|undefined}
7971
7979
  */
7972
7980
  google.maps.OverlayView.prototype.getMap = function() {};
7973
7981
 
7974
7982
  /**
7975
7983
  * Returns the panes in which this OverlayView can be rendered. The panes are
7976
7984
  * not initialized until <code>onAdd</code> is called by the API.
7977
- * @return {!google.maps.MapPanes|null}
7985
+ * @return {!google.maps.MapPanes|null|undefined}
7978
7986
  */
7979
7987
  google.maps.OverlayView.prototype.getPanes = function() {};
7980
7988
 
@@ -8191,6 +8199,18 @@ google.maps.PlacesLibrary = function() {};
8191
8199
  */
8192
8200
  google.maps.PlacesLibrary.prototype.AccessibilityOptions;
8193
8201
 
8202
+ /**
8203
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8204
+ * @type {typeof google.maps.places.ActionButtonPosition}
8205
+ */
8206
+ google.maps.PlacesLibrary.prototype.ActionButtonPosition;
8207
+
8208
+ /**
8209
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8210
+ * @type {typeof google.maps.places.ActionLinkType}
8211
+ */
8212
+ google.maps.PlacesLibrary.prototype.ActionLinkType;
8213
+
8194
8214
  /**
8195
8215
  * @type {typeof google.maps.places.AddressComponent}
8196
8216
  */
@@ -8201,6 +8221,30 @@ google.maps.PlacesLibrary.prototype.AddressComponent;
8201
8221
  */
8202
8222
  google.maps.PlacesLibrary.prototype.AddressDescriptor;
8203
8223
 
8224
+ /**
8225
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8226
+ * @type {typeof google.maps.places.AdvancedPlaceDetailsCompactElement}
8227
+ */
8228
+ google.maps.PlacesLibrary.prototype.AdvancedPlaceDetailsCompactElement;
8229
+
8230
+ /**
8231
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8232
+ * @type {typeof google.maps.places.AdvancedPlaceDetailsElement}
8233
+ */
8234
+ google.maps.PlacesLibrary.prototype.AdvancedPlaceDetailsElement;
8235
+
8236
+ /**
8237
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8238
+ * @type {typeof google.maps.places.AdvancedPlaceListElement}
8239
+ */
8240
+ google.maps.PlacesLibrary.prototype.AdvancedPlaceListElement;
8241
+
8242
+ /**
8243
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8244
+ * @type {typeof google.maps.places.AdvancedPlaceSearchElement}
8245
+ */
8246
+ google.maps.PlacesLibrary.prototype.AdvancedPlaceSearchElement;
8247
+
8204
8248
  /**
8205
8249
  * @type {typeof google.maps.places.Area}
8206
8250
  */
@@ -8211,6 +8255,11 @@ google.maps.PlacesLibrary.prototype.Area;
8211
8255
  */
8212
8256
  google.maps.PlacesLibrary.prototype.Attribution;
8213
8257
 
8258
+ /**
8259
+ * @type {typeof google.maps.places.AttributionColor}
8260
+ */
8261
+ google.maps.PlacesLibrary.prototype.AttributionColor;
8262
+
8214
8263
  /**
8215
8264
  * @type {typeof google.maps.places.AuthorAttribution}
8216
8265
  */
@@ -8236,6 +8285,11 @@ google.maps.PlacesLibrary.prototype.AutocompleteSessionToken;
8236
8285
  */
8237
8286
  google.maps.PlacesLibrary.prototype.AutocompleteSuggestion;
8238
8287
 
8288
+ /**
8289
+ * @type {typeof google.maps.places.BasicPlaceAutocompleteElement}
8290
+ */
8291
+ google.maps.PlacesLibrary.prototype.BasicPlaceAutocompleteElement;
8292
+
8239
8293
  /**
8240
8294
  * @type {typeof google.maps.places.BusinessStatus}
8241
8295
  */
@@ -8316,6 +8370,11 @@ google.maps.PlacesLibrary.prototype.GoogleMapsLinks;
8316
8370
  */
8317
8371
  google.maps.PlacesLibrary.prototype.Landmark;
8318
8372
 
8373
+ /**
8374
+ * @type {typeof google.maps.places.MediaSize}
8375
+ */
8376
+ google.maps.PlacesLibrary.prototype.MediaSize;
8377
+
8319
8378
  /**
8320
8379
  * @type {typeof google.maps.places.Money}
8321
8380
  */
@@ -8361,6 +8420,48 @@ google.maps.PlacesLibrary.prototype.Photo;
8361
8420
  */
8362
8421
  google.maps.PlacesLibrary.prototype.Place;
8363
8422
 
8423
+ /**
8424
+ * @type {typeof google.maps.places.PlaceAccessibleEntranceIconElement}
8425
+ */
8426
+ google.maps.PlacesLibrary.prototype.PlaceAccessibleEntranceIconElement;
8427
+
8428
+ /**
8429
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8430
+ * @type {typeof google.maps.places.PlaceActionEvent}
8431
+ */
8432
+ google.maps.PlacesLibrary.prototype.PlaceActionEvent;
8433
+
8434
+ /**
8435
+ * @type {typeof google.maps.places.PlaceAddressElement}
8436
+ */
8437
+ google.maps.PlacesLibrary.prototype.PlaceAddressElement;
8438
+
8439
+ /**
8440
+ * @type {typeof google.maps.places.PlaceAllContentElement}
8441
+ */
8442
+ google.maps.PlacesLibrary.prototype.PlaceAllContentElement;
8443
+
8444
+ /**
8445
+ * @type {typeof google.maps.places.PlaceAttributionElement}
8446
+ */
8447
+ google.maps.PlacesLibrary.prototype.PlaceAttributionElement;
8448
+
8449
+ /**
8450
+ * @type {typeof google.maps.places.PlaceAutocompleteElement}
8451
+ */
8452
+ google.maps.PlacesLibrary.prototype.PlaceAutocompleteElement;
8453
+
8454
+ /**
8455
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8456
+ * @type {typeof google.maps.places.PlaceButtonElement}
8457
+ */
8458
+ google.maps.PlacesLibrary.prototype.PlaceButtonElement;
8459
+
8460
+ /**
8461
+ * @type {typeof google.maps.places.PlaceContentConfigElement}
8462
+ */
8463
+ google.maps.PlacesLibrary.prototype.PlaceContentConfigElement;
8464
+
8364
8465
  /**
8365
8466
  * @type {typeof google.maps.places.PlaceContextualElement}
8366
8467
  */
@@ -8376,11 +8477,128 @@ google.maps.PlacesLibrary.prototype.PlaceContextualListConfigElement;
8376
8477
  */
8377
8478
  google.maps.PlacesLibrary.prototype.PlaceContextualListLayout;
8378
8479
 
8480
+ /**
8481
+ * @type {typeof google.maps.places.PlaceDetailsCompactElement}
8482
+ */
8483
+ google.maps.PlacesLibrary.prototype.PlaceDetailsCompactElement;
8484
+
8485
+ /**
8486
+ * @type {typeof google.maps.places.PlaceDetailsElement}
8487
+ */
8488
+ google.maps.PlacesLibrary.prototype.PlaceDetailsElement;
8489
+
8490
+ /**
8491
+ * @type {typeof google.maps.places.PlaceDetailsLocationRequestElement}
8492
+ */
8493
+ google.maps.PlacesLibrary.prototype.PlaceDetailsLocationRequestElement;
8494
+
8495
+ /**
8496
+ * @type {typeof google.maps.places.PlaceDetailsOrientation}
8497
+ */
8498
+ google.maps.PlacesLibrary.prototype.PlaceDetailsOrientation;
8499
+
8500
+ /**
8501
+ * @type {typeof google.maps.places.PlaceDetailsPlaceRequestElement}
8502
+ */
8503
+ google.maps.PlacesLibrary.prototype.PlaceDetailsPlaceRequestElement;
8504
+
8505
+ /**
8506
+ * @type {typeof google.maps.places.PlaceFeatureListElement}
8507
+ */
8508
+ google.maps.PlacesLibrary.prototype.PlaceFeatureListElement;
8509
+
8510
+ /**
8511
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8512
+ * @type {typeof google.maps.places.PlaceLinkElement}
8513
+ */
8514
+ google.maps.PlacesLibrary.prototype.PlaceLinkElement;
8515
+
8516
+ /**
8517
+ * @type {typeof google.maps.places.PlaceMediaElement}
8518
+ */
8519
+ google.maps.PlacesLibrary.prototype.PlaceMediaElement;
8520
+
8521
+ /**
8522
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
8523
+ * @type {typeof google.maps.places.PlaceNameElement}
8524
+ */
8525
+ google.maps.PlacesLibrary.prototype.PlaceNameElement;
8526
+
8527
+ /**
8528
+ * @type {typeof google.maps.places.PlaceNearbySearchRequestElement}
8529
+ */
8530
+ google.maps.PlacesLibrary.prototype.PlaceNearbySearchRequestElement;
8531
+
8532
+ /**
8533
+ * @type {typeof google.maps.places.PlaceOpeningHoursElement}
8534
+ */
8535
+ google.maps.PlacesLibrary.prototype.PlaceOpeningHoursElement;
8536
+
8537
+ /**
8538
+ * @type {typeof google.maps.places.PlaceOpenNowStatusElement}
8539
+ */
8540
+ google.maps.PlacesLibrary.prototype.PlaceOpenNowStatusElement;
8541
+
8542
+ /**
8543
+ * @type {typeof google.maps.places.PlacePhoneNumberElement}
8544
+ */
8545
+ google.maps.PlacesLibrary.prototype.PlacePhoneNumberElement;
8546
+
8547
+ /**
8548
+ * @type {typeof google.maps.places.PlacePlusCodeElement}
8549
+ */
8550
+ google.maps.PlacesLibrary.prototype.PlacePlusCodeElement;
8551
+
8379
8552
  /**
8380
8553
  * @type {typeof google.maps.places.PlacePrediction}
8381
8554
  */
8382
8555
  google.maps.PlacesLibrary.prototype.PlacePrediction;
8383
8556
 
8557
+ /**
8558
+ * @type {typeof google.maps.places.PlacePredictionSelectEvent}
8559
+ */
8560
+ google.maps.PlacesLibrary.prototype.PlacePredictionSelectEvent;
8561
+
8562
+ /**
8563
+ * @type {typeof google.maps.places.PlacePriceElement}
8564
+ */
8565
+ google.maps.PlacesLibrary.prototype.PlacePriceElement;
8566
+
8567
+ /**
8568
+ * @type {typeof google.maps.places.PlaceRatingElement}
8569
+ */
8570
+ google.maps.PlacesLibrary.prototype.PlaceRatingElement;
8571
+
8572
+ /**
8573
+ * @type {typeof google.maps.places.PlaceReviewsElement}
8574
+ */
8575
+ google.maps.PlacesLibrary.prototype.PlaceReviewsElement;
8576
+
8577
+ /**
8578
+ * @type {typeof google.maps.places.PlaceReviewSummaryElement}
8579
+ */
8580
+ google.maps.PlacesLibrary.prototype.PlaceReviewSummaryElement;
8581
+
8582
+ /**
8583
+ * @type {typeof google.maps.places.PlaceSearchAttributionPosition}
8584
+ */
8585
+ google.maps.PlacesLibrary.prototype.PlaceSearchAttributionPosition;
8586
+
8587
+ /**
8588
+ * @type {typeof google.maps.places.PlaceSearchElement}
8589
+ */
8590
+ google.maps.PlacesLibrary.prototype.PlaceSearchElement;
8591
+
8592
+ /**
8593
+ * @type {typeof google.maps.places.PlaceSearchOrientation}
8594
+ */
8595
+ google.maps.PlacesLibrary.prototype.PlaceSearchOrientation;
8596
+
8597
+ /**
8598
+ * @type {typeof google.maps.places.PlaceSelectEvent}
8599
+ */
8600
+ google.maps.PlacesLibrary.prototype.PlaceSelectEvent;
8601
+
8384
8602
  /**
8385
8603
  * @type {typeof google.maps.places.PlacesService}
8386
8604
  */
@@ -8391,6 +8609,36 @@ google.maps.PlacesLibrary.prototype.PlacesService;
8391
8609
  */
8392
8610
  google.maps.PlacesLibrary.prototype.PlacesServiceStatus;
8393
8611
 
8612
+ /**
8613
+ * @type {typeof google.maps.places.PlaceStandardContentElement}
8614
+ */
8615
+ google.maps.PlacesLibrary.prototype.PlaceStandardContentElement;
8616
+
8617
+ /**
8618
+ * @type {typeof google.maps.places.PlaceSummaryElement}
8619
+ */
8620
+ google.maps.PlacesLibrary.prototype.PlaceSummaryElement;
8621
+
8622
+ /**
8623
+ * @type {typeof google.maps.places.PlaceTextSearchRequestElement}
8624
+ */
8625
+ google.maps.PlacesLibrary.prototype.PlaceTextSearchRequestElement;
8626
+
8627
+ /**
8628
+ * @type {typeof google.maps.places.PlaceTypeElement}
8629
+ */
8630
+ google.maps.PlacesLibrary.prototype.PlaceTypeElement;
8631
+
8632
+ /**
8633
+ * @type {typeof google.maps.places.PlaceTypeSpecificHighlightsElement}
8634
+ */
8635
+ google.maps.PlacesLibrary.prototype.PlaceTypeSpecificHighlightsElement;
8636
+
8637
+ /**
8638
+ * @type {typeof google.maps.places.PlaceWebsiteElement}
8639
+ */
8640
+ google.maps.PlacesLibrary.prototype.PlaceWebsiteElement;
8641
+
8394
8642
  /**
8395
8643
  * @type {typeof google.maps.places.PlusCode}
8396
8644
  */
@@ -8461,6 +8709,36 @@ google.maps.PlacesLibrary.prototype.StringRange;
8461
8709
  */
8462
8710
  google.maps.PlacesLibrary.prototype.TimeZone;
8463
8711
 
8712
+ /**
8713
+ * @type {typeof google.maps.places.TransitAgency}
8714
+ */
8715
+ google.maps.PlacesLibrary.prototype.TransitAgency;
8716
+
8717
+ /**
8718
+ * @type {typeof google.maps.places.TransitIcon}
8719
+ */
8720
+ google.maps.PlacesLibrary.prototype.TransitIcon;
8721
+
8722
+ /**
8723
+ * @type {typeof google.maps.places.TransitLine}
8724
+ */
8725
+ google.maps.PlacesLibrary.prototype.TransitLine;
8726
+
8727
+ /**
8728
+ * @type {typeof google.maps.places.TransitStation}
8729
+ */
8730
+ google.maps.PlacesLibrary.prototype.TransitStation;
8731
+
8732
+ /**
8733
+ * @type {typeof google.maps.places.TransitStop}
8734
+ */
8735
+ google.maps.PlacesLibrary.prototype.TransitStop;
8736
+
8737
+ /**
8738
+ * @type {typeof google.maps.places.TransitVehicleType}
8739
+ */
8740
+ google.maps.PlacesLibrary.prototype.TransitVehicleType;
8741
+
8464
8742
  /**
8465
8743
  *
8466
8744
  * Access by calling `const {Point} = await google.maps.importLibrary("core");`.
@@ -10536,8 +10814,10 @@ google.maps.StrokePosition = {
10536
10814
  * Access by calling `const {StyledMapType} = await
10537
10815
  * google.maps.importLibrary("maps");`. See
10538
10816
  * https://developers.google.com/maps/documentation/javascript/libraries.
10539
- * @param {?Array<?google.maps.MapTypeStyle>} styles
10540
- * @param {?google.maps.StyledMapTypeOptions=} options
10817
+ * @param {!Array<!google.maps.MapTypeStyle|null>|null} styles The styles to
10818
+ * apply.
10819
+ * @param {!google.maps.StyledMapTypeOptions|null=} options The styled map type
10820
+ * options.
10541
10821
  * @implements {google.maps.MapType}
10542
10822
  * @extends {google.maps.MVCObject}
10543
10823
  * @constructor
@@ -10565,7 +10845,7 @@ google.maps.StyledMapType.prototype.minZoom;
10565
10845
  google.maps.StyledMapType.prototype.name;
10566
10846
 
10567
10847
  /**
10568
- * @type {?google.maps.Projection}
10848
+ * @type {!google.maps.Projection|null}
10569
10849
  */
10570
10850
  google.maps.StyledMapType.prototype.projection;
10571
10851
 
@@ -10575,24 +10855,22 @@ google.maps.StyledMapType.prototype.projection;
10575
10855
  google.maps.StyledMapType.prototype.radius;
10576
10856
 
10577
10857
  /**
10578
- * @type {?google.maps.Size}
10858
+ * @type {!google.maps.Size|null}
10579
10859
  */
10580
10860
  google.maps.StyledMapType.prototype.tileSize;
10581
10861
 
10582
10862
  /**
10583
- * @param {?google.maps.Point} tileCoord Tile coordinates.
10863
+ * @param {!google.maps.Point|null} tileCoord Tile coordinates.
10584
10864
  * @param {number} zoom Tile zoom.
10585
- * @param {?Document} ownerDocument The document which owns this tile.
10586
- * @return {?Element} Resulting tile.
10587
- * @override
10865
+ * @param {!Document|null} ownerDocument The document which owns this tile.
10866
+ * @return {!Element|null} Resulting tile.
10588
10867
  */
10589
10868
  google.maps.StyledMapType.prototype.getTile = function(
10590
10869
  tileCoord, zoom, ownerDocument) {};
10591
10870
 
10592
10871
  /**
10593
- * @param {?Element} tile Tile to release.
10594
- * @return {undefined}
10595
- * @override
10872
+ * @param {!Element|null} tile Tile to release.
10873
+ * @return {void}
10596
10874
  */
10597
10875
  google.maps.StyledMapType.prototype.releaseTile = function(tile) {};
10598
10876
 
@@ -11885,6 +12163,13 @@ google.maps.addressValidation.AddressValidationRequest = function() {};
11885
12163
  */
11886
12164
  google.maps.addressValidation.AddressValidationRequest.prototype.address;
11887
12165
 
12166
+ /**
12167
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
12168
+ * @type {!Iterable<string>|null|undefined}
12169
+ */
12170
+ google.maps.addressValidation.AddressValidationRequest.prototype
12171
+ .internalUsageAttributionIds;
12172
+
11888
12173
  /**
11889
12174
  * If using a PlaceAutocompleteElement, include it here to link the
11890
12175
  * AddressValidation API calls with the autocomplete session token.
@@ -12563,33 +12848,6 @@ google.maps.airQuality.AirQualityMeterElementOptions.prototype
12563
12848
  */
12564
12849
  google.maps.drawing = {};
12565
12850
 
12566
- /**
12567
- * Options for the rendering of the drawing control.
12568
- * @record
12569
- */
12570
- google.maps.drawing.DrawingControlOptions = function() {};
12571
-
12572
- /**
12573
- * The drawing modes to display in the drawing control, in the order in which
12574
- * they are to be displayed. The hand icon (which corresponds to the
12575
- * <code>null</code> drawing mode) is always available and is not to be
12576
- * specified in this array.
12577
- * @default <code>[{@link google.maps.drawing.OverlayType.MARKER}, {@link
12578
- * google.maps.drawing.OverlayType.POLYLINE}, {@link
12579
- * google.maps.drawing.OverlayType.RECTANGLE}, {@link
12580
- * google.maps.drawing.OverlayType.CIRCLE}, {@link
12581
- * google.maps.drawing.OverlayType.POLYGON}]</code>
12582
- * @type {!Array<!google.maps.drawing.OverlayType>|null|undefined}
12583
- */
12584
- google.maps.drawing.DrawingControlOptions.prototype.drawingModes;
12585
-
12586
- /**
12587
- * Position id. Used to specify the position of the control on the map.
12588
- * @default {@link google.maps.ControlPosition.TOP_LEFT}
12589
- * @type {!google.maps.ControlPosition|null|undefined}
12590
- */
12591
- google.maps.drawing.DrawingControlOptions.prototype.position;
12592
-
12593
12851
  /**
12594
12852
  * Allows users to draw markers, polygons, polylines, rectangles, and circles on
12595
12853
  * the map. The <code>DrawingManager</code>&#39;s drawing mode defines the type
@@ -12599,197 +12857,53 @@ google.maps.drawing.DrawingControlOptions.prototype.position;
12599
12857
  * Access by calling `const {DrawingManager} = await
12600
12858
  * google.maps.importLibrary("drawing");`. See
12601
12859
  * https://developers.google.com/maps/documentation/javascript/libraries.
12602
- * @param {?google.maps.drawing.DrawingManagerOptions=} options
12603
12860
  * @extends {google.maps.MVCObject}
12604
12861
  * @constructor
12605
- * @deprecated Drawing library functionality in the Maps JavaScript API is
12606
- * deprecated. This API was deprecated in August 2025 and will be made
12607
- * unavailable in a later version of the Maps JavaScript API, releasing in
12608
- * May 2026. For more info, see <a
12609
- * href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>
12862
+ * @deprecated The DrawingManager functionality in the Maps JavaScript API is no
12863
+ * longer available in the Maps JavaScript API as of version 3.65. For more
12864
+ * info, see <a
12865
+ * href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>.
12610
12866
  */
12611
- google.maps.drawing.DrawingManager = function(options) {};
12867
+ google.maps.drawing.DrawingManager = function() {};
12612
12868
 
12613
12869
  /**
12614
- * Returns the <code>DrawingManager</code>&#39;s drawing mode.
12615
- * @return {?google.maps.drawing.OverlayType}
12616
- */
12617
- google.maps.drawing.DrawingManager.prototype.getDrawingMode = function() {};
12618
-
12619
- /**
12620
- * Returns the <code>Map</code> to which the <code>DrawingManager</code> is
12621
- * attached, which is the <code>Map</code> on which the overlays created will be
12622
- * placed.
12623
- * @return {?google.maps.Map}
12870
+ * The types of overlay that may be created by the <code>DrawingManager</code>.
12871
+ * Specify these by value, or by using the constant&#39;s name. For example,
12872
+ * <code>'polygon'</code> or
12873
+ * <code>google.maps.drawing.OverlayType.POLYGON</code>.
12874
+ *
12875
+ * Access by calling `const {OverlayType} = await
12876
+ * google.maps.importLibrary("drawing");`. See
12877
+ * https://developers.google.com/maps/documentation/javascript/libraries.
12878
+ * @enum {string}
12624
12879
  */
12625
- google.maps.drawing.DrawingManager.prototype.getMap = function() {};
12626
-
12627
- /**
12628
- * Changes the <code>DrawingManager</code>&#39;s drawing mode, which defines the
12629
- * type of overlay to be added on the map. Accepted values are
12630
- * <code>'marker'</code>, <code>'polygon'</code>, <code>'polyline'</code>,
12631
- * <code>'rectangle'</code>, <code>'circle'</code>, or <code>null</code>. A
12632
- * drawing mode of <code>null</code> means that the user can interact with the
12633
- * map as normal, and clicks do not draw anything.
12634
- * @param {?google.maps.drawing.OverlayType} drawingMode
12635
- * @return {undefined}
12636
- */
12637
- google.maps.drawing.DrawingManager.prototype.setDrawingMode = function(
12638
- drawingMode) {};
12639
-
12640
- /**
12641
- * Attaches the <code>DrawingManager</code> object to the specified
12642
- * <code>Map</code>.
12643
- * @param {?google.maps.Map} map
12644
- * @return {undefined}
12645
- */
12646
- google.maps.drawing.DrawingManager.prototype.setMap = function(map) {};
12647
-
12648
- /**
12649
- * Sets the <code>DrawingManager</code>&#39;s options.
12650
- * @param {?google.maps.drawing.DrawingManagerOptions} options
12651
- * @return {undefined}
12652
- */
12653
- google.maps.drawing.DrawingManager.prototype.setOptions = function(options) {};
12654
-
12655
- /**
12656
- * Options for the drawing manager.
12657
- * @record
12658
- */
12659
- google.maps.drawing.DrawingManagerOptions = function() {};
12660
-
12661
- /**
12662
- * Options to apply to any new circles created with this
12663
- * <code>DrawingManager</code>. The <code>center</code> and <code>radius</code>
12664
- * properties are ignored, and the <code>map</code> property of a new circle is
12665
- * always set to the <code>DrawingManager</code>&#39;s map.
12666
- * @type {!google.maps.CircleOptions|null|undefined}
12667
- */
12668
- google.maps.drawing.DrawingManagerOptions.prototype.circleOptions;
12669
-
12670
- /**
12671
- * The enabled/disabled state of the drawing control.
12672
- * @default <code>true</code>
12673
- * @type {boolean|null|undefined}
12674
- */
12675
- google.maps.drawing.DrawingManagerOptions.prototype.drawingControl;
12676
-
12677
- /**
12678
- * The display options for the drawing control.
12679
- * @type {!google.maps.drawing.DrawingControlOptions|null|undefined}
12680
- */
12681
- google.maps.drawing.DrawingManagerOptions.prototype.drawingControlOptions;
12682
-
12683
- /**
12684
- * The <code>DrawingManager</code>&#39;s drawing mode, which defines the type of
12685
- * overlay to be added on the map. Accepted values are <code>'marker'</code>,
12686
- * <code>'polygon'</code>, <code>'polyline'</code>, <code>'rectangle'</code>,
12687
- * <code>'circle'</code>, or <code>null</code>. A drawing mode of
12688
- * <code>null</code> means that the user can interact with the map as normal,
12689
- * and clicks do not draw anything.
12690
- * @type {!google.maps.drawing.OverlayType|null|undefined}
12691
- */
12692
- google.maps.drawing.DrawingManagerOptions.prototype.drawingMode;
12693
-
12694
- /**
12695
- * The <code>Map</code> to which the <code>DrawingManager</code> is attached,
12696
- * which is the <code>Map</code> on which the overlays created will be placed.
12697
- * @type {!google.maps.Map|null|undefined}
12698
- */
12699
- google.maps.drawing.DrawingManagerOptions.prototype.map;
12700
-
12701
- /**
12702
- * Options to apply to any new markers created with this
12703
- * <code>DrawingManager</code>. The <code>position</code> property is ignored,
12704
- * and the <code>map</code> property of a new marker is always set to the
12705
- * <code>DrawingManager</code>&#39;s map.
12706
- * @type {!google.maps.MarkerOptions|null|undefined}
12707
- */
12708
- google.maps.drawing.DrawingManagerOptions.prototype.markerOptions;
12709
-
12710
- /**
12711
- * Options to apply to any new polygons created with this
12712
- * <code>DrawingManager</code>. The <code>paths</code> property is ignored, and
12713
- * the <code>map</code> property of a new polygon is always set to the
12714
- * <code>DrawingManager</code>&#39;s map.
12715
- * @type {!google.maps.PolygonOptions|null|undefined}
12716
- */
12717
- google.maps.drawing.DrawingManagerOptions.prototype.polygonOptions;
12718
-
12719
- /**
12720
- * Options to apply to any new polylines created with this
12721
- * <code>DrawingManager</code>. The <code>path</code> property is ignored, and
12722
- * the <code>map</code> property of a new polyline is always set to the
12723
- * <code>DrawingManager</code>&#39;s map.
12724
- * @type {!google.maps.PolylineOptions|null|undefined}
12725
- */
12726
- google.maps.drawing.DrawingManagerOptions.prototype.polylineOptions;
12727
-
12728
- /**
12729
- * Options to apply to any new rectangles created with this
12730
- * <code>DrawingManager</code>. The <code>bounds</code> property is ignored, and
12731
- * the <code>map</code> property of a new rectangle is always set to the
12732
- * <code>DrawingManager</code>&#39;s map.
12733
- * @type {!google.maps.RectangleOptions|null|undefined}
12734
- */
12735
- google.maps.drawing.DrawingManagerOptions.prototype.rectangleOptions;
12736
-
12737
- /**
12738
- * The properties of an overlaycomplete event on a <code>DrawingManager</code>.
12739
- * @record
12740
- */
12741
- google.maps.drawing.OverlayCompleteEvent = function() {};
12742
-
12743
- /**
12744
- * The completed overlay.
12745
- * @type {!google.maps.Marker|!google.maps.Polygon|!google.maps.Polyline|!google.maps.Rectangle|!google.maps.Circle}
12746
- */
12747
- google.maps.drawing.OverlayCompleteEvent.prototype.overlay;
12748
-
12749
- /**
12750
- * The completed overlay&#39;s type.
12751
- * @type {!google.maps.drawing.OverlayType}
12752
- */
12753
- google.maps.drawing.OverlayCompleteEvent.prototype.type;
12754
-
12755
- /**
12756
- * The types of overlay that may be created by the <code>DrawingManager</code>.
12757
- * Specify these by value, or by using the constant&#39;s name. For example,
12758
- * <code>'polygon'</code> or
12759
- * <code>google.maps.drawing.OverlayType.POLYGON</code>.
12760
- *
12761
- * Access by calling `const {OverlayType} = await
12762
- * google.maps.importLibrary("drawing");`. See
12763
- * https://developers.google.com/maps/documentation/javascript/libraries.
12764
- * @enum {string}
12765
- */
12766
- google.maps.drawing.OverlayType = {
12767
- /**
12768
- * Specifies that the <code>DrawingManager</code> creates circles, and that
12769
- * the overlay given in the <code>overlaycomplete</code> event is a circle.
12770
- */
12771
- CIRCLE: 'circle',
12772
- /**
12773
- * Specifies that the <code>DrawingManager</code> creates markers, and that
12774
- * the overlay given in the <code>overlaycomplete</code> event is a marker.
12775
- */
12776
- MARKER: 'marker',
12777
- /**
12778
- * Specifies that the <code>DrawingManager</code> creates polygons, and that
12779
- * the overlay given in the <code>overlaycomplete</code> event is a polygon.
12780
- */
12781
- POLYGON: 'polygon',
12782
- /**
12783
- * Specifies that the <code>DrawingManager</code> creates polylines, and that
12784
- * the overlay given in the <code>overlaycomplete</code> event is a polyline.
12785
- */
12786
- POLYLINE: 'polyline',
12787
- /**
12788
- * Specifies that the <code>DrawingManager</code> creates rectangles, and that
12789
- * the overlay given in the <code>overlaycomplete</code> event is a rectangle.
12790
- */
12791
- RECTANGLE: 'rectangle',
12792
- };
12880
+ google.maps.drawing.OverlayType = {
12881
+ /**
12882
+ * Specifies that the <code>DrawingManager</code> creates circles, and that
12883
+ * the overlay given in the <code>overlaycomplete</code> event is a circle.
12884
+ */
12885
+ CIRCLE: 'circle',
12886
+ /**
12887
+ * Specifies that the <code>DrawingManager</code> creates markers, and that
12888
+ * the overlay given in the <code>overlaycomplete</code> event is a marker.
12889
+ */
12890
+ MARKER: 'marker',
12891
+ /**
12892
+ * Specifies that the <code>DrawingManager</code> creates polygons, and that
12893
+ * the overlay given in the <code>overlaycomplete</code> event is a polygon.
12894
+ */
12895
+ POLYGON: 'polygon',
12896
+ /**
12897
+ * Specifies that the <code>DrawingManager</code> creates polylines, and that
12898
+ * the overlay given in the <code>overlaycomplete</code> event is a polyline.
12899
+ */
12900
+ POLYLINE: 'polyline',
12901
+ /**
12902
+ * Specifies that the <code>DrawingManager</code> creates rectangles, and that
12903
+ * the overlay given in the <code>overlaycomplete</code> event is a rectangle.
12904
+ */
12905
+ RECTANGLE: 'rectangle',
12906
+ };
12793
12907
 
12794
12908
  /**
12795
12909
  * Namespace for all public event functions
@@ -16861,6 +16975,58 @@ google.maps.maps3d.GestureHandling = {
16861
16975
  GREEDY: 'GREEDY',
16862
16976
  };
16863
16977
 
16978
+ /**
16979
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
16980
+ *
16981
+ * Represents a text label associated with a 3D marker on a map, allowing
16982
+ * independent configuration of properties such as collision behavior.
16983
+ *
16984
+ * Access by calling `const {Label3DElement} = await
16985
+ * google.maps.importLibrary("maps3d");`. See
16986
+ * https://developers.google.com/maps/documentation/javascript/libraries.
16987
+ * @param {!google.maps.maps3d.Label3DElementOptions=} options
16988
+ * @implements {google.maps.maps3d.Label3DElementOptions}
16989
+ * @extends {HTMLElement}
16990
+ * @constructor
16991
+ */
16992
+ google.maps.maps3d.Label3DElement = function(options) {};
16993
+
16994
+ /**
16995
+ * An enumeration specifying how the label of a Marker3DElement should behave
16996
+ * when it collides with another element.
16997
+ * @default {@link google.maps.CollisionBehavior.REQUIRED}
16998
+ * @type {!google.maps.CollisionBehavior|null|undefined}
16999
+ */
17000
+ google.maps.maps3d.Label3DElement.prototype.collisionBehavior;
17001
+
17002
+ /**
17003
+ * The Marker3DElement that this label is for.
17004
+ * @type {string|!HTMLElement|null|undefined}
17005
+ */
17006
+ google.maps.maps3d.Label3DElement.prototype.for;
17007
+
17008
+ /**
17009
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
17010
+ *
17011
+ * Label3DElementOptions object used to define the properties that can be set on
17012
+ * a Label3DElement.
17013
+ * @record
17014
+ */
17015
+ google.maps.maps3d.Label3DElementOptions = function() {};
17016
+
17017
+ /**
17018
+ * An enumeration specifying how the label of a Marker3DElement should behave
17019
+ * when it collides with another element.
17020
+ * @type {!google.maps.CollisionBehavior|null|undefined}
17021
+ */
17022
+ google.maps.maps3d.Label3DElementOptions.prototype.collisionBehavior;
17023
+
17024
+ /**
17025
+ * The Marker3DElement that this label is for.
17026
+ * @type {string|!HTMLElement|null|undefined}
17027
+ */
17028
+ google.maps.maps3d.Label3DElementOptions.prototype.for;
17029
+
16864
17030
  /**
16865
17031
  * This event is created from clicking a Map3DElement.
16866
17032
  *
@@ -17541,7 +17707,11 @@ google.maps.maps3d.Marker3DInteractiveElementOptions.prototype.title;
17541
17707
 
17542
17708
  /**
17543
17709
  * Shows a position on a 3D map. Note that the <code>position</code> must be set
17544
- * for the <code>MarkerElement</code> to display.
17710
+ * for the <code>MarkerElement</code> to display.<br><br>
17711
+ * <code>MarkerElement</code> supports high customization via custom HTML
17712
+ * elements, but has lower interaction performance than
17713
+ * <code>Marker3DElement</code>, especially when handling more than 1000 markers
17714
+ * on a map.
17545
17715
  *
17546
17716
  * Access by calling `const {MarkerElement} = await
17547
17717
  * google.maps.importLibrary("maps3d");`. See
@@ -18536,6 +18706,8 @@ google.maps.marker.AdvancedMarkerElement.prototype.content;
18536
18706
  * @param {string} eventName Observed event.
18537
18707
  * @param {!Function} handler Function to handle events.
18538
18708
  * @return {!google.maps.MapsEventListener} Resulting event listener.
18709
+ * @deprecated Use the standard DOM <code>addEventListener()</code> method
18710
+ * instead.
18539
18711
  */
18540
18712
  google.maps.marker.AdvancedMarkerElement.prototype.addListener = function(
18541
18713
  eventName, handler) {};
@@ -18843,6 +19015,69 @@ google.maps.places.AccessibilityOptions.prototype
18843
19015
  google.maps.places.AccessibilityOptions.prototype
18844
19016
  .hasWheelchairAccessibleSeating;
18845
19017
 
19018
+ /**
19019
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19020
+ *
19021
+ * The slotted position of the control in the place details widget.
19022
+ *
19023
+ * Access by calling `const {ActionButtonPosition} = await
19024
+ * google.maps.importLibrary("places");`. See
19025
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19026
+ * @enum {string}
19027
+ */
19028
+ google.maps.places.ActionButtonPosition = {
19029
+ /**
19030
+ * The control is rendered in the corner of the widget. Corner controls render
19031
+ * only an icon.
19032
+ */
19033
+ ACTION_CORNER: 'ACTION_CORNER',
19034
+ /**
19035
+ * The control is rendered in the main content area of the widget. Labels and
19036
+ * icons are rendered.
19037
+ */
19038
+ ACTION_MAIN: 'ACTION_MAIN',
19039
+ };
19040
+
19041
+ /**
19042
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19043
+ *
19044
+ * The action taken by a {@link google.maps.places.PlaceLinkElement} when
19045
+ * clicked. Determines the icon, label and href destination.
19046
+ *
19047
+ * Access by calling `const {ActionLinkType} = await
19048
+ * google.maps.importLibrary("places");`. See
19049
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19050
+ * @enum {string}
19051
+ */
19052
+ google.maps.places.ActionLinkType = {
19053
+ /**
19054
+ * Triggers a tel: link to call the place. Behavior is operating system
19055
+ * dependent.
19056
+ */
19057
+ CALL: 'CALL',
19058
+ /**
19059
+ * Use this action type for custom links. When using this action type, the
19060
+ * <code>href</code> attribute must be set on the {@link
19061
+ * google.maps.places.PlaceLinkElement}.
19062
+ */
19063
+ CUSTOM: 'CUSTOM',
19064
+ /**
19065
+ * Opens directions to the place in the location specified by {@link
19066
+ * google.maps.places.PlaceLinkElement.target}.
19067
+ */
19068
+ OPEN_DIRECTIONS: 'OPEN_DIRECTIONS',
19069
+ /**
19070
+ * Opens the map in the location specified by {@link
19071
+ * google.maps.places.PlaceLinkElement.target}.
19072
+ */
19073
+ OPEN_MAP: 'OPEN_MAP',
19074
+ /**
19075
+ * Opens the place&#39;s website in the location specified by {@link
19076
+ * google.maps.places.PlaceLinkElement.target}.
19077
+ */
19078
+ OPEN_WEBSITE: 'OPEN_WEBSITE',
19079
+ };
19080
+
18846
19081
  /**
18847
19082
  * Address component for the Place&#39;s location.
18848
19083
  *
@@ -18900,99 +19135,452 @@ google.maps.places.AddressDescriptor.prototype.areas;
18900
19135
  google.maps.places.AddressDescriptor.prototype.landmarks;
18901
19136
 
18902
19137
  /**
18903
- * Area information and the area&#39;s relationship with the target location.
19138
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
18904
19139
  *
18905
- * Access by calling `const {Area} = await
19140
+ * Displays details for a place in a compact layout. Append a {@link
19141
+ * google.maps.places.PlaceDetailsPlaceRequestElement} or {@link
19142
+ * google.maps.places.PlaceDetailsLocationRequestElement} to specify the place
19143
+ * to be rendered. Append a {@link
19144
+ * google.maps.places.PlaceStandardContentElement}, {@link
19145
+ * google.maps.places.PlaceAllContentElement} or specify specific content
19146
+ * children to configure the content to render. <br><br> To use this element,
19147
+ * enable the <a
19148
+ * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
19149
+ * >Places UI Kit API</a> for your project in the Google Cloud console.
19150
+ *
19151
+ * Access by calling `const {AdvancedPlaceDetailsCompactElement} = await
18906
19152
  * google.maps.importLibrary("places");`. See
18907
19153
  * https://developers.google.com/maps/documentation/javascript/libraries.
19154
+ * @param {!google.maps.places.AdvancedPlaceDetailsCompactElementOptions=}
19155
+ * options
19156
+ * @implements {google.maps.places.AdvancedPlaceDetailsCompactElementOptions}
19157
+ * @extends {google.maps.places.PlaceDetailsCompactElement}
18908
19158
  * @constructor
18909
19159
  */
18910
- google.maps.places.Area = function() {};
19160
+ google.maps.places.AdvancedPlaceDetailsCompactElement = function(options) {};
18911
19161
 
18912
19162
  /**
18913
- * Defines the spatial relationship between the target location and the area.
18914
- * @type {!google.maps.places.Containment|null}
19163
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19164
+ * @type {!Iterable<string>|null|undefined}
18915
19165
  */
18916
- google.maps.places.Area.prototype.containment;
19166
+ google.maps.places.AdvancedPlaceDetailsCompactElement.prototype
19167
+ .internalUsageAttributionIds;
18917
19168
 
18918
19169
  /**
18919
- * The area&#39;s place.
18920
- * @type {!google.maps.places.Place}
19170
+ * Read only. Place object containing the ID, location, and viewport of the
19171
+ * currently rendered place.
19172
+ * @type {!google.maps.places.Place|undefined}
18921
19173
  */
18922
- google.maps.places.Area.prototype.place;
19174
+ google.maps.places.AdvancedPlaceDetailsCompactElement.prototype.place;
18923
19175
 
18924
19176
  /**
18925
- * Information about a data provider for a Place.
19177
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
18926
19178
  *
18927
- * Access by calling `const {Attribution} = await
18928
- * google.maps.importLibrary("places");`. See
18929
- * https://developers.google.com/maps/documentation/javascript/libraries.
18930
- * @constructor
18931
- */
18932
- google.maps.places.Attribution = function() {};
18933
-
18934
- /**
18935
- * Name of the Place&#39;s data provider.
18936
- * @type {string|null}
19179
+ * Options for <code>AdvancedPlaceDetailsCompactElement</code>.
19180
+ * @extends {google.maps.places.PlaceDetailsCompactElementOptions}
19181
+ * @record
18937
19182
  */
18938
- google.maps.places.Attribution.prototype.provider;
19183
+ google.maps.places.AdvancedPlaceDetailsCompactElementOptions = function() {};
18939
19184
 
18940
19185
  /**
18941
- * URI to the Place&#39;s data provider.
18942
- * @type {string|null}
19186
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19187
+ * @type {!Iterable<string>|null|undefined}
18943
19188
  */
18944
- google.maps.places.Attribution.prototype.providerURI;
19189
+ google.maps.places.AdvancedPlaceDetailsCompactElementOptions.prototype
19190
+ .internalUsageAttributionIds;
18945
19191
 
18946
19192
  /**
18947
- * Color options for Google Maps attribution text. Attribution may be customized
18948
- * to use any of these colors.
19193
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
18949
19194
  *
18950
- * Access by calling `const {AttributionColor} = await
18951
- * google.maps.importLibrary("places");`. See
18952
- * https://developers.google.com/maps/documentation/javascript/libraries.
18953
- * @enum {string}
18954
- */
18955
- google.maps.places.AttributionColor = {
18956
- /**
18957
- * Black attribution text.
18958
- */
18959
- BLACK: 'BLACK',
18960
- /**
18961
- * Gray attribution text.
18962
- */
18963
- GRAY: 'GRAY',
18964
- /**
18965
- * White attribution text.
18966
- */
18967
- WHITE: 'WHITE',
18968
- };
18969
-
18970
- /**
18971
- * Information about the author of user-generated content.
19195
+ * Displays details for a place in a full layout. Append either a {@link
19196
+ * google.maps.places.PlaceDetailsPlaceRequestElement} or {@link
19197
+ * google.maps.places.PlaceDetailsLocationRequestElement} to specify the place
19198
+ * to be rendered. Append a {@link
19199
+ * google.maps.places.PlaceStandardContentElement}, {@link
19200
+ * google.maps.places.PlaceAllContentElement} or place details elements directly
19201
+ * to configure the content to render. <br><br> Example: <pre><code>
19202
+ * &lt;gmp-advanced-place-details&gt;<br>
19203
+ * &nbsp;&nbsp;&lt;gmp-place-details-place-request<br>
19204
+ * &nbsp;&nbsp;&nbsp;&nbsp;place="<var>PLACE_ID</var>"<br>
19205
+ * &nbsp;&nbsp;&gt;&lt;/gmp-place-details-place-request&gt;<br>
19206
+ * &nbsp;&nbsp;&lt;gmp-place-standard-content&gt;<br>
19207
+ * &nbsp;&nbsp;&lt;/gmp-place-standard-content&gt;<br>
19208
+ * &lt;/gmp-advanced-place-details&gt; </code></pre> <br> To use this element,
19209
+ * enable the <a
19210
+ * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
19211
+ * >Places UI Kit API</a> for your project in the Google Cloud console.
18972
19212
  *
18973
- * Access by calling `const {AuthorAttribution} = await
19213
+ * Access by calling `const {AdvancedPlaceDetailsElement} = await
18974
19214
  * google.maps.importLibrary("places");`. See
18975
19215
  * https://developers.google.com/maps/documentation/javascript/libraries.
19216
+ * @param {!google.maps.places.AdvancedPlaceDetailsElementOptions=} options
19217
+ * @implements {google.maps.places.AdvancedPlaceDetailsElementOptions}
19218
+ * @extends {google.maps.places.PlaceDetailsElement}
18976
19219
  * @constructor
18977
19220
  */
18978
- google.maps.places.AuthorAttribution = function() {};
19221
+ google.maps.places.AdvancedPlaceDetailsElement = function(options) {};
18979
19222
 
18980
19223
  /**
18981
- * Author&#39;s name for this result.
18982
- * @type {string}
19224
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19225
+ * @type {!Iterable<string>|null|undefined}
18983
19226
  */
18984
- google.maps.places.AuthorAttribution.prototype.displayName;
19227
+ google.maps.places.AdvancedPlaceDetailsElement.prototype
19228
+ .internalUsageAttributionIds;
18985
19229
 
18986
19230
  /**
18987
- * Author&#39;s photo URI for this result. This may not always be available.
18988
- * @type {string|null}
19231
+ * Read only. Place object containing the ID, location, and viewport of the
19232
+ * currently rendered place.
19233
+ * @type {!google.maps.places.Place|undefined}
18989
19234
  */
18990
- google.maps.places.AuthorAttribution.prototype.photoURI;
19235
+ google.maps.places.AdvancedPlaceDetailsElement.prototype.place;
18991
19236
 
18992
19237
  /**
18993
- * Author&#39;s profile URI for this result.
18994
- * @type {string|null}
18995
- */
19238
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19239
+ *
19240
+ * Options for <code>AdvancedPlaceDetailsElement</code>.
19241
+ * @extends {google.maps.places.PlaceDetailsElementOptions}
19242
+ * @record
19243
+ */
19244
+ google.maps.places.AdvancedPlaceDetailsElementOptions = function() {};
19245
+
19246
+ /**
19247
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19248
+ * @type {!Iterable<string>|null|undefined}
19249
+ */
19250
+ google.maps.places.AdvancedPlaceDetailsElementOptions.prototype
19251
+ .internalUsageAttributionIds;
19252
+
19253
+ /**
19254
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19255
+ *
19256
+ * Displays the results of a place search in a list. Append one or more {@link
19257
+ * google.maps.places.PlaceDetailsPlaceRequestElement} or set the
19258
+ * <code>places</code> property to specify the places to display. Append
19259
+ * a {@link google.maps.places.PlaceStandardContentElement} or {@link
19260
+ * google.maps.places.PlaceAllContentElement} to specify which content to
19261
+ * render. <br><br> Example: <pre><code> &lt;gmp-advanced-place-list&gt;<br>
19262
+ * &nbsp;&nbsp;&lt;gmp-place-details-place-request<br>
19263
+ * &nbsp;&nbsp;&nbsp;&nbsp;place="<var>PLACE_ID</var>"<br>
19264
+ * &nbsp;&nbsp;&lt;/gmp-place-details-place-request&gt;<br>
19265
+ * &nbsp;&nbsp;&lt;template slot="details-item"&gt;<br>
19266
+ * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
19267
+ * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
19268
+ * &nbsp;&nbsp;&lt;/template&gt;<br> &lt;/gmp-advanced-place-list&gt;
19269
+ * </code></pre> <br> To use the Advanced Place List Element, enable the <a
19270
+ * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
19271
+ * >Places UI Kit API</a> for your project in the Google Cloud console.
19272
+ *
19273
+ * Access by calling `const {AdvancedPlaceListElement} = await
19274
+ * google.maps.importLibrary("places");`. See
19275
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19276
+ * @param {!google.maps.places.AdvancedPlaceListElementOptions=} options
19277
+ * @implements {google.maps.places.AdvancedPlaceListElementOptions}
19278
+ * @extends {HTMLElement}
19279
+ * @constructor
19280
+ */
19281
+ google.maps.places.AdvancedPlaceListElement = function(options) {};
19282
+
19283
+ /**
19284
+ * The position of the attribution logo and legal disclosure button.
19285
+ * @default <code>PlaceSearchAttributionPosition.TOP</code>
19286
+ * @type {!google.maps.places.PlaceSearchAttributionPosition|null|undefined}
19287
+ */
19288
+ google.maps.places.AdvancedPlaceListElement.prototype.attributionPosition;
19289
+
19290
+ /**
19291
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19292
+ * @type {!Iterable<string>|null|undefined}
19293
+ */
19294
+ google.maps.places.AdvancedPlaceListElement.prototype
19295
+ .internalUsageAttributionIds;
19296
+
19297
+ /**
19298
+ * The orientation variant (vertical or horizontal) of the element.
19299
+ * @default <code>PlaceSearchOrientation.VERTICAL</code>
19300
+ * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
19301
+ */
19302
+ google.maps.places.AdvancedPlaceListElement.prototype.orientation;
19303
+
19304
+ /**
19305
+ * List of Place objects containing the IDs which should be displayed in this
19306
+ * element. Note that all Places set in the places property might not be
19307
+ * displayed if they could not be rendered(e.g. invalid ID, network request
19308
+ * error, etc.). The places property can be read to retrieve the currently
19309
+ * displayed places.
19310
+ * @type {!Iterable<!google.maps.places.Place|string>|null|undefined}
19311
+ */
19312
+ google.maps.places.AdvancedPlaceListElement.prototype.places;
19313
+
19314
+ /**
19315
+ * Whether or not the list items are selectable. If true, the list items will be
19316
+ * buttons that dispatch the <code>gmp-select</code> event when clicked.
19317
+ * Accessible keyboard navigation and selection is also supported.
19318
+ * @default <code>false</code>
19319
+ * @type {boolean|null|undefined}
19320
+ */
19321
+ google.maps.places.AdvancedPlaceListElement.prototype.selectable;
19322
+
19323
+ /**
19324
+ * If true, truncates certain lines of content to fit on one line instead of
19325
+ * wrapping.
19326
+ * @default <code>false</code>
19327
+ * @type {boolean|null|undefined}
19328
+ */
19329
+ google.maps.places.AdvancedPlaceListElement.prototype.truncationPreferred;
19330
+
19331
+ /**
19332
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19333
+ *
19334
+ * Options for <code>AdvancedPlaceListElement</code>.
19335
+ * @record
19336
+ */
19337
+ google.maps.places.AdvancedPlaceListElementOptions = function() {};
19338
+
19339
+ /**
19340
+ * See {@link google.maps.places.PlaceSearchElement.attributionPosition}.
19341
+ * @type {!google.maps.places.PlaceSearchAttributionPosition|null|undefined}
19342
+ */
19343
+ google.maps.places.AdvancedPlaceListElementOptions.prototype
19344
+ .attributionPosition;
19345
+
19346
+ /**
19347
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19348
+ * @type {!Iterable<string>|null|undefined}
19349
+ */
19350
+ google.maps.places.AdvancedPlaceListElementOptions.prototype
19351
+ .internalUsageAttributionIds;
19352
+
19353
+ /**
19354
+ * See {@link google.maps.places.PlaceSearchElement.orientation}.
19355
+ * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
19356
+ */
19357
+ google.maps.places.AdvancedPlaceListElementOptions.prototype.orientation;
19358
+
19359
+ /**
19360
+ * See {@link google.maps.places.AdvancedPlaceListElement.places}.
19361
+ * @type {!Iterable<!google.maps.places.Place|string>|null|undefined}
19362
+ */
19363
+ google.maps.places.AdvancedPlaceListElementOptions.prototype.places;
19364
+
19365
+ /**
19366
+ * See {@link google.maps.places.PlaceSearchElement.selectable}
19367
+ * @type {boolean|null|undefined}
19368
+ */
19369
+ google.maps.places.AdvancedPlaceListElementOptions.prototype.selectable;
19370
+
19371
+ /**
19372
+ * See {@link google.maps.places.PlaceSearchElement.truncationPreferred}.
19373
+ * @type {boolean|null|undefined}
19374
+ */
19375
+ google.maps.places.AdvancedPlaceListElementOptions.prototype
19376
+ .truncationPreferred;
19377
+
19378
+ /**
19379
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19380
+ *
19381
+ * Displays the results of an advanced place search in a list. Append a {@link
19382
+ * google.maps.places.PlaceTextSearchRequestElement} or {@link
19383
+ * google.maps.places.PlaceNearbySearchRequestElement} to specify the request to
19384
+ * render results for. Append a {@link
19385
+ * google.maps.places.PlaceStandardContentElement}, {@link
19386
+ * google.maps.places.PlaceAllContentElement}, or a <code>&lt;template
19387
+ * slot=&quot;details-item&quot;&gt;</code> to specify which content to render.
19388
+ * <br><br> Example: <pre><code> &lt;gmp-advanced-place-search&gt;<br>
19389
+ * &nbsp;&nbsp;&lt;gmp-place-text-search-request<br>
19390
+ * &nbsp;&nbsp;&nbsp;&nbsp;text-query="<var>QUERY</var>"<br>
19391
+ * &nbsp;&nbsp;&gt;&lt;/gmp-place-text-search-request&gt;<br>
19392
+ * &nbsp;&nbsp;&lt;template slot="details-item"&gt;<br>
19393
+ * &nbsp;&nbsp;&nbsp;&nbsp;&lt;gmp-place-media
19394
+ * lightbox-preferred&gt;&lt;/gmp-place-media&gt;<br>
19395
+ * &nbsp;&nbsp;&lt;/template&gt;<br> &lt;/gmp-advanced-place-search&gt;
19396
+ * </code></pre> <br> To use the Advanced Place Search Element, enable the <a
19397
+ * href="https://console.cloud.google.com/marketplace/product/google/placewidgets.googleapis.com"
19398
+ * >Places UI Kit API</a> for your project in the Google Cloud console.
19399
+ *
19400
+ * Access by calling `const {AdvancedPlaceSearchElement} = await
19401
+ * google.maps.importLibrary("places");`. See
19402
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19403
+ * @param {!google.maps.places.AdvancedPlaceSearchElementOptions=} options
19404
+ * @implements {google.maps.places.AdvancedPlaceSearchElementOptions}
19405
+ * @extends {google.maps.places.PlaceSearchElement}
19406
+ * @constructor
19407
+ */
19408
+ google.maps.places.AdvancedPlaceSearchElement = function(options) {};
19409
+
19410
+ /**
19411
+ * The position of the attribution logo and legal disclosure button.
19412
+ * @default <code>PlaceSearchAttributionPosition.TOP</code>
19413
+ * @type {!google.maps.places.PlaceSearchAttributionPosition|null|undefined}
19414
+ */
19415
+ google.maps.places.AdvancedPlaceSearchElement.prototype.attributionPosition;
19416
+
19417
+ /**
19418
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19419
+ * @type {!Iterable<string>|null|undefined}
19420
+ */
19421
+ google.maps.places.AdvancedPlaceSearchElement.prototype
19422
+ .internalUsageAttributionIds;
19423
+
19424
+ /**
19425
+ * The orientation variant (vertical or horizontal) of the element.
19426
+ * @default <code>PlaceSearchOrientation.VERTICAL</code>
19427
+ * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
19428
+ */
19429
+ google.maps.places.AdvancedPlaceSearchElement.prototype.orientation;
19430
+
19431
+ /**
19432
+ * Whether or not the list items are selectable. If true, the list items will be
19433
+ * buttons that dispatch the <code>gmp-select</code> event when clicked.
19434
+ * Accessible keyboard navigation and selection is also supported.
19435
+ * @default <code>false</code>
19436
+ * @type {boolean|null|undefined}
19437
+ */
19438
+ google.maps.places.AdvancedPlaceSearchElement.prototype.selectable;
19439
+
19440
+ /**
19441
+ * If true, truncates certain lines of content to fit on one line instead of
19442
+ * wrapping.
19443
+ * @default <code>false</code>
19444
+ * @type {boolean|null|undefined}
19445
+ */
19446
+ google.maps.places.AdvancedPlaceSearchElement.prototype.truncationPreferred;
19447
+
19448
+ /**
19449
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19450
+ *
19451
+ * Options for <code>AdvancedPlaceSearchElement</code>.
19452
+ * @extends {google.maps.places.PlaceSearchElementOptions}
19453
+ * @record
19454
+ */
19455
+ google.maps.places.AdvancedPlaceSearchElementOptions = function() {};
19456
+
19457
+ /**
19458
+ * See {@link google.maps.places.PlaceSearchElement.attributionPosition}.
19459
+ * @type {!google.maps.places.PlaceSearchAttributionPosition|null|undefined}
19460
+ */
19461
+ google.maps.places.AdvancedPlaceSearchElementOptions.prototype
19462
+ .attributionPosition;
19463
+
19464
+ /**
19465
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19466
+ * @type {!Iterable<string>|null|undefined}
19467
+ */
19468
+ google.maps.places.AdvancedPlaceSearchElementOptions.prototype
19469
+ .internalUsageAttributionIds;
19470
+
19471
+ /**
19472
+ * See {@link google.maps.places.PlaceSearchElement.orientation}.
19473
+ * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
19474
+ */
19475
+ google.maps.places.AdvancedPlaceSearchElementOptions.prototype.orientation;
19476
+
19477
+ /**
19478
+ * See {@link google.maps.places.PlaceSearchElement.selectable}
19479
+ * @type {boolean|null|undefined}
19480
+ */
19481
+ google.maps.places.AdvancedPlaceSearchElementOptions.prototype.selectable;
19482
+
19483
+ /**
19484
+ * See {@link google.maps.places.PlaceSearchElement.truncationPreferred}.
19485
+ * @type {boolean|null|undefined}
19486
+ */
19487
+ google.maps.places.AdvancedPlaceSearchElementOptions.prototype
19488
+ .truncationPreferred;
19489
+
19490
+ /**
19491
+ * Area information and the area&#39;s relationship with the target location.
19492
+ *
19493
+ * Access by calling `const {Area} = await
19494
+ * google.maps.importLibrary("places");`. See
19495
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19496
+ * @constructor
19497
+ */
19498
+ google.maps.places.Area = function() {};
19499
+
19500
+ /**
19501
+ * Defines the spatial relationship between the target location and the area.
19502
+ * @type {!google.maps.places.Containment|null}
19503
+ */
19504
+ google.maps.places.Area.prototype.containment;
19505
+
19506
+ /**
19507
+ * The area&#39;s place.
19508
+ * @type {!google.maps.places.Place}
19509
+ */
19510
+ google.maps.places.Area.prototype.place;
19511
+
19512
+ /**
19513
+ * Information about a data provider for a Place.
19514
+ *
19515
+ * Access by calling `const {Attribution} = await
19516
+ * google.maps.importLibrary("places");`. See
19517
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19518
+ * @constructor
19519
+ */
19520
+ google.maps.places.Attribution = function() {};
19521
+
19522
+ /**
19523
+ * Name of the Place&#39;s data provider.
19524
+ * @type {string|null}
19525
+ */
19526
+ google.maps.places.Attribution.prototype.provider;
19527
+
19528
+ /**
19529
+ * URI to the Place&#39;s data provider.
19530
+ * @type {string|null}
19531
+ */
19532
+ google.maps.places.Attribution.prototype.providerURI;
19533
+
19534
+ /**
19535
+ * Color options for Google Maps attribution text. Attribution may be customized
19536
+ * to use any of these colors.
19537
+ *
19538
+ * Access by calling `const {AttributionColor} = await
19539
+ * google.maps.importLibrary("places");`. See
19540
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19541
+ * @enum {string}
19542
+ */
19543
+ google.maps.places.AttributionColor = {
19544
+ /**
19545
+ * Black attribution text.
19546
+ */
19547
+ BLACK: 'BLACK',
19548
+ /**
19549
+ * Gray attribution text.
19550
+ */
19551
+ GRAY: 'GRAY',
19552
+ /**
19553
+ * White attribution text.
19554
+ */
19555
+ WHITE: 'WHITE',
19556
+ };
19557
+
19558
+ /**
19559
+ * Information about the author of user-generated content.
19560
+ *
19561
+ * Access by calling `const {AuthorAttribution} = await
19562
+ * google.maps.importLibrary("places");`. See
19563
+ * https://developers.google.com/maps/documentation/javascript/libraries.
19564
+ * @constructor
19565
+ */
19566
+ google.maps.places.AuthorAttribution = function() {};
19567
+
19568
+ /**
19569
+ * Author&#39;s name for this result.
19570
+ * @type {string}
19571
+ */
19572
+ google.maps.places.AuthorAttribution.prototype.displayName;
19573
+
19574
+ /**
19575
+ * Author&#39;s photo URI for this result. This may not always be available.
19576
+ * @type {string|null}
19577
+ */
19578
+ google.maps.places.AuthorAttribution.prototype.photoURI;
19579
+
19580
+ /**
19581
+ * Author&#39;s profile URI for this result.
19582
+ * @type {string|null}
19583
+ */
18996
19584
  google.maps.places.AuthorAttribution.prototype.uri;
18997
19585
 
18998
19586
  /**
@@ -19269,6 +19857,12 @@ google.maps.places.AutocompleteRequest.prototype.input;
19269
19857
  */
19270
19858
  google.maps.places.AutocompleteRequest.prototype.inputOffset;
19271
19859
 
19860
+ /**
19861
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
19862
+ * @type {!Iterable<string>|null|undefined}
19863
+ */
19864
+ google.maps.places.AutocompleteRequest.prototype.internalUsageAttributionIds;
19865
+
19272
19866
  /**
19273
19867
  * The language in which to return results. Will default to the browser&#39;s
19274
19868
  * language preference. The results may be in mixed languages if the language
@@ -19593,7 +20187,7 @@ google.maps.places.AutocompletionRequest.prototype.radius;
19593
20187
  * Access by calling `const {BasicPlaceAutocompleteElement} = await
19594
20188
  * google.maps.importLibrary("places");`. See
19595
20189
  * https://developers.google.com/maps/documentation/javascript/libraries.
19596
- * @param {!google.maps.places.BasicPlaceAutocompleteElementOptions} options
20190
+ * @param {!google.maps.places.BasicPlaceAutocompleteElementOptions=} options
19597
20191
  * @implements {google.maps.places.BasicPlaceAutocompleteElementOptions}
19598
20192
  * @extends {HTMLElement}
19599
20193
  * @constructor
@@ -19613,7 +20207,7 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.description;
19613
20207
  * Whether the input element is disabled. See <a
19614
20208
  * 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>
19615
20209
  * for details.
19616
- * @type {boolean|null}
20210
+ * @type {boolean|null|undefined}
19617
20211
  */
19618
20212
  google.maps.places.BasicPlaceAutocompleteElement.prototype.disabled;
19619
20213
 
@@ -19643,7 +20237,14 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.includedPrimaryTypes;
19643
20237
  * are set, the results will be located in the area of intersection.
19644
20238
  * @type {!Array<string>|null}
19645
20239
  */
19646
- google.maps.places.BasicPlaceAutocompleteElement.prototype.includedRegionCodes;
20240
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.includedRegionCodes;
20241
+
20242
+ /**
20243
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
20244
+ * @type {!Iterable<string>|null|undefined}
20245
+ */
20246
+ google.maps.places.BasicPlaceAutocompleteElement.prototype
20247
+ .internalUsageAttributionIds;
19647
20248
 
19648
20249
  /**
19649
20250
  * A soft boundary or hint to use when searching for places.
@@ -19676,9 +20277,15 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype.maxlength;
19676
20277
  */
19677
20278
  google.maps.places.BasicPlaceAutocompleteElement.prototype.name;
19678
20279
 
20280
+ /**
20281
+ * Whether to hide the clear button.
20282
+ * @type {boolean|null|undefined}
20283
+ */
20284
+ google.maps.places.BasicPlaceAutocompleteElement.prototype.noClearButton;
20285
+
19679
20286
  /**
19680
20287
  * Whether to hide the input icon.
19681
- * @type {boolean|null}
20288
+ * @type {boolean|null|undefined}
19682
20289
  */
19683
20290
  google.maps.places.BasicPlaceAutocompleteElement.prototype.noInputIcon;
19684
20291
 
@@ -19708,7 +20315,7 @@ google.maps.places.BasicPlaceAutocompleteElement.prototype
19708
20315
  * Whether the input element is read-only. See <a
19709
20316
  * 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>
19710
20317
  * for details.
19711
- * @type {boolean|null}
20318
+ * @type {boolean|null|undefined}
19712
20319
  */
19713
20320
  google.maps.places.BasicPlaceAutocompleteElement.prototype.readonly;
19714
20321
 
@@ -19779,6 +20386,12 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19779
20386
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19780
20387
  .includedRegionCodes;
19781
20388
 
20389
+ /**
20390
+ * @type {!Iterable<string>|null|undefined}
20391
+ */
20392
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
20393
+ .internalUsageAttributionIds;
20394
+
19782
20395
  /**
19783
20396
  * @type {!google.maps.places.LocationBias|null|undefined}
19784
20397
  */
@@ -19800,6 +20413,11 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.maxlength;
19800
20413
  */
19801
20414
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.name;
19802
20415
 
20416
+ /**
20417
+ * @type {boolean|null|undefined}
20418
+ */
20419
+ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.noClearButton;
20420
+
19803
20421
  /**
19804
20422
  * @type {boolean|null|undefined}
19805
20423
  */
@@ -19844,11 +20462,9 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19844
20462
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.unitSystem;
19845
20463
 
19846
20464
  /**
19847
- * The operational status of the Place, if it is a business, returned in a
19848
- * PlaceResult (indicates whether the place is operational, or closed either
19849
- * temporarily or permanently). Specify these by value, or the constant&#39;s
19850
- * name (example: <code>&#39;OPERATIONAL&#39;</code> or
19851
- * <code>google.maps.places.BusinessStatus.OPERATIONAL</code>).
20465
+ * Business status for the place. See the <a
20466
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
20467
+ * service documentation</a> for more information.
19852
20468
  *
19853
20469
  * Access by calling `const {BusinessStatus} = await
19854
20470
  * google.maps.importLibrary("places");`. See
@@ -19857,19 +20473,27 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.unitSystem;
19857
20473
  */
19858
20474
  google.maps.places.BusinessStatus = {
19859
20475
  /**
19860
- * The business is closed permanently.
20476
+ * The establishment is permanently closed. See the <a
20477
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
20478
+ * service documentation</a> for more information.
19861
20479
  */
19862
20480
  CLOSED_PERMANENTLY: 'CLOSED_PERMANENTLY',
19863
20481
  /**
19864
- * The business is closed temporarily.
20482
+ * The establishment is temporarily closed. See the <a
20483
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
20484
+ * service documentation</a> for more information.
19865
20485
  */
19866
20486
  CLOSED_TEMPORARILY: 'CLOSED_TEMPORARILY',
19867
20487
  /**
19868
- * The business will open in the future.
20488
+ * The establishment will open in the future. See the <a
20489
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
20490
+ * service documentation</a> for more information.
19869
20491
  */
19870
20492
  FUTURE_OPENING: 'FUTURE_OPENING',
19871
20493
  /**
19872
- * The business is operating normally.
20494
+ * The establishment is operational, not necessarily open now. See the <a
20495
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
20496
+ * service documentation</a> for more information.
19873
20497
  */
19874
20498
  OPERATIONAL: 'OPERATIONAL',
19875
20499
  };
@@ -20003,6 +20627,9 @@ google.maps.places.ConsumerAlertDetails.prototype.title;
20003
20627
 
20004
20628
  /**
20005
20629
  * Defines the spatial relationship between the target location and the area.
20630
+ * See the <a
20631
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20632
+ * service documentation</a> for more information.
20006
20633
  *
20007
20634
  * Access by calling `const {Containment} = await
20008
20635
  * google.maps.importLibrary("places");`. See
@@ -20011,15 +20638,23 @@ google.maps.places.ConsumerAlertDetails.prototype.title;
20011
20638
  */
20012
20639
  google.maps.places.Containment = {
20013
20640
  /**
20014
- * The target location is outside the area region, but close by.
20641
+ * The target location is outside the area region, but close by. See the <a
20642
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20643
+ * service documentation</a> for more information.
20015
20644
  */
20016
20645
  NEAR: 'NEAR',
20017
20646
  /**
20018
- * The target location is within the area region, close to the edge.
20647
+ * The target location is within the area region, close to the edge. See the
20648
+ * <a
20649
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20650
+ * service documentation</a> for more information.
20019
20651
  */
20020
20652
  OUTSKIRTS: 'OUTSKIRTS',
20021
20653
  /**
20022
- * The target location is within the area region, close to the center.
20654
+ * The target location is within the area region, close to the center. See the
20655
+ * <a
20656
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20657
+ * service documentation</a> for more information.
20023
20658
  */
20024
20659
  WITHIN: 'WITHIN',
20025
20660
  };
@@ -20133,7 +20768,11 @@ google.maps.places.EVChargeOptions.prototype.connectorAggregations;
20133
20768
  google.maps.places.EVChargeOptions.prototype.connectorCount;
20134
20769
 
20135
20770
  /**
20136
- * EV charging connector types.
20771
+ * See <a
20772
+ * href="http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6872107">http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6872107</a>
20773
+ * for additional information/context on EV charging connector types. See the <a
20774
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20775
+ * service documentation</a> for more information.
20137
20776
  *
20138
20777
  * Access by calling `const {EVConnectorType} = await
20139
20778
  * google.maps.importLibrary("places");`. See
@@ -20142,48 +20781,64 @@ google.maps.places.EVChargeOptions.prototype.connectorCount;
20142
20781
  */
20143
20782
  google.maps.places.EVConnectorType = {
20144
20783
  /**
20145
- * Combined Charging System (AC and DC). Based on SAE Type-1 J-1772 connector.
20784
+ * Combined Charging System (AC and DC). See the <a
20785
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20786
+ * service documentation</a> for more information.
20146
20787
  */
20147
20788
  CCS_COMBO_1: 'CCS_COMBO_1',
20148
20789
  /**
20149
- * Combined Charging System (AC and DC). Based on Type-2 Mennekes connector.
20790
+ * Combined Charging System (AC and DC). See the <a
20791
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20792
+ * service documentation</a> for more information.
20150
20793
  */
20151
20794
  CCS_COMBO_2: 'CCS_COMBO_2',
20152
20795
  /**
20153
- * CHAdeMO type connector.
20796
+ * CHAdeMO type connector. See the <a
20797
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20798
+ * service documentation</a> for more information.
20154
20799
  */
20155
20800
  CHADEMO: 'CHADEMO',
20156
20801
  /**
20157
- * J1772 type 1 connector.
20802
+ * J1772 type 1 connector. See the <a
20803
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20804
+ * service documentation</a> for more information.
20158
20805
  */
20159
20806
  J1772: 'J1772',
20160
20807
  /**
20161
- * The North American Charging System (NACS), standardized as SAE J3400.
20808
+ * The North American Charging System (NACS), standardized as SAE J3400. See
20809
+ * the <a
20810
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20811
+ * service documentation</a> for more information.
20162
20812
  */
20163
20813
  NACS: 'NACS',
20164
20814
  /**
20165
- * Other connector types.
20815
+ * Other connector types. See the <a
20816
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20817
+ * service documentation</a> for more information.
20166
20818
  */
20167
20819
  OTHER: 'OTHER',
20168
20820
  /**
20169
- * The generic TESLA connector. This is NACS in the North America but can be
20170
- * non-NACS in other parts of the world (e.g. CCS Combo 2 (CCS2) or GB/T).
20171
- * This value is less representative of an actual connector type, and more
20172
- * represents the ability to charge a Tesla brand vehicle at a Tesla owned
20173
- * charging station.
20821
+ * The generic TESLA connector. See the <a
20822
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20823
+ * service documentation</a> for more information.
20174
20824
  */
20175
20825
  TESLA: 'TESLA',
20176
20826
  /**
20177
- * IEC 62196 type 2 connector. Often referred to as MENNEKES.
20827
+ * IEC 62196 type 2 connector. See the <a
20828
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20829
+ * service documentation</a> for more information.
20178
20830
  */
20179
20831
  TYPE_2: 'TYPE_2',
20180
20832
  /**
20181
- * GB/T type corresponds to the GB/T standard in China. This type covers all
20182
- * GB_T types.
20833
+ * GB/T type corresponds to the GB/T standard in China. See the <a
20834
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20835
+ * service documentation</a> for more information.
20183
20836
  */
20184
20837
  UNSPECIFIED_GB_T: 'UNSPECIFIED_GB_T',
20185
20838
  /**
20186
- * Unspecified wall outlet.
20839
+ * Unspecified wall outlet. See the <a
20840
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20841
+ * service documentation</a> for more information.
20187
20842
  */
20188
20843
  UNSPECIFIED_WALL_OUTLET: 'UNSPECIFIED_WALL_OUTLET',
20189
20844
  };
@@ -20216,10 +20871,16 @@ google.maps.places.FetchFieldsRequest = function() {};
20216
20871
 
20217
20872
  /**
20218
20873
  * List of fields to be fetched.
20219
- * @type {!Array<string>}
20874
+ * @type {!Iterable<string>}
20220
20875
  */
20221
20876
  google.maps.places.FetchFieldsRequest.prototype.fields;
20222
20877
 
20878
+ /**
20879
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
20880
+ * @type {!Iterable<string>|null|undefined}
20881
+ */
20882
+ google.maps.places.FetchFieldsRequest.prototype.internalUsageAttributionIds;
20883
+
20223
20884
  /**
20224
20885
  * A find place from text search request to be sent to {@link
20225
20886
  * google.maps.places.PlacesService.findPlaceFromPhoneNumber}.
@@ -20334,6 +20995,13 @@ google.maps.places.FormattableText.prototype.matches;
20334
20995
  */
20335
20996
  google.maps.places.FormattableText.prototype.text;
20336
20997
 
20998
+ /**
20999
+ * Returns {@link google.maps.places.FormattableText.text}.
21000
+ * @return {string}
21001
+ * @override
21002
+ */
21003
+ google.maps.places.FormattableText.prototype.toString = function() {};
21004
+
20337
21005
  /**
20338
21006
  * The most recent information about fuel options in a gas station. This
20339
21007
  * information is updated regularly.
@@ -20381,7 +21049,9 @@ google.maps.places.FuelPrice.prototype.type;
20381
21049
  google.maps.places.FuelPrice.prototype.updateTime;
20382
21050
 
20383
21051
  /**
20384
- * Types of fuel.
21052
+ * Types of fuel. See the <a
21053
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21054
+ * service documentation</a> for more information.
20385
21055
  *
20386
21056
  * Access by calling `const {FuelType} = await
20387
21057
  * google.maps.importLibrary("places");`. See
@@ -20390,83 +21060,123 @@ google.maps.places.FuelPrice.prototype.updateTime;
20390
21060
  */
20391
21061
  google.maps.places.FuelType = {
20392
21062
  /**
20393
- * Bio-diesel.
21063
+ * Bio-diesel. See the <a
21064
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21065
+ * service documentation</a> for more information.
20394
21066
  */
20395
21067
  BIO_DIESEL: 'BIO_DIESEL',
20396
21068
  /**
20397
- * Diesel fuel.
21069
+ * Diesel fuel. See the <a
21070
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21071
+ * service documentation</a> for more information.
20398
21072
  */
20399
21073
  DIESEL: 'DIESEL',
20400
21074
  /**
20401
- * Diesel plus fuel.
21075
+ * Diesel plus fuel. See the <a
21076
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21077
+ * service documentation</a> for more information.
20402
21078
  */
20403
21079
  DIESEL_PLUS: 'DIESEL_PLUS',
20404
21080
  /**
20405
- * E 100.
21081
+ * E 100. See the <a
21082
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21083
+ * service documentation</a> for more information.
20406
21084
  */
20407
21085
  E100: 'E100',
20408
21086
  /**
20409
- * E 80.
21087
+ * E 80. See the <a
21088
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21089
+ * service documentation</a> for more information.
20410
21090
  */
20411
21091
  E80: 'E80',
20412
21092
  /**
20413
- * E 85.
21093
+ * E 85. See the <a
21094
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21095
+ * service documentation</a> for more information.
20414
21096
  */
20415
21097
  E85: 'E85',
20416
21098
  /**
20417
- * LPG.
21099
+ * Liquefied Petroleum Gas. See the <a
21100
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21101
+ * service documentation</a> for more information.
20418
21102
  */
20419
21103
  LPG: 'LPG',
20420
21104
  /**
20421
- * Methane.
21105
+ * Methane. See the <a
21106
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21107
+ * service documentation</a> for more information.
20422
21108
  */
20423
21109
  METHANE: 'METHANE',
20424
21110
  /**
20425
- * Midgrade.
21111
+ * Midgrade. See the <a
21112
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21113
+ * service documentation</a> for more information.
20426
21114
  */
20427
21115
  MIDGRADE: 'MIDGRADE',
20428
21116
  /**
20429
- * Premium.
21117
+ * Premium. See the <a
21118
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21119
+ * service documentation</a> for more information.
20430
21120
  */
20431
21121
  PREMIUM: 'PREMIUM',
20432
21122
  /**
20433
- * Regular unleaded.
21123
+ * Regular unleaded. See the <a
21124
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21125
+ * service documentation</a> for more information.
20434
21126
  */
20435
21127
  REGULAR_UNLEADED: 'REGULAR_UNLEADED',
20436
21128
  /**
20437
- * SP 100.
21129
+ * SP 100. See the <a
21130
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21131
+ * service documentation</a> for more information.
20438
21132
  */
20439
21133
  SP100: 'SP100',
20440
21134
  /**
20441
- * SP 91.
21135
+ * SP 91. See the <a
21136
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21137
+ * service documentation</a> for more information.
20442
21138
  */
20443
21139
  SP91: 'SP91',
20444
21140
  /**
20445
- * SP 91 E10.
21141
+ * SP 91 E10. See the <a
21142
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21143
+ * service documentation</a> for more information.
20446
21144
  */
20447
21145
  SP91_E10: 'SP91_E10',
20448
21146
  /**
20449
- * SP 92.
21147
+ * SP 92. See the <a
21148
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21149
+ * service documentation</a> for more information.
20450
21150
  */
20451
21151
  SP92: 'SP92',
20452
21152
  /**
20453
- * SP 95.
21153
+ * SP 95. See the <a
21154
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21155
+ * service documentation</a> for more information.
20454
21156
  */
20455
21157
  SP95: 'SP95',
20456
21158
  /**
20457
- * SP95 E10.
21159
+ * SP95 E10. See the <a
21160
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21161
+ * service documentation</a> for more information.
20458
21162
  */
20459
21163
  SP95_E10: 'SP95_E10',
20460
21164
  /**
20461
- * SP 98.
21165
+ * SP 98. See the <a
21166
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21167
+ * service documentation</a> for more information.
20462
21168
  */
20463
21169
  SP98: 'SP98',
20464
21170
  /**
20465
- * SP 99.
21171
+ * SP 99. See the <a
21172
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21173
+ * service documentation</a> for more information.
20466
21174
  */
20467
21175
  SP99: 'SP99',
20468
21176
  /**
20469
- * Truck diesel.
21177
+ * Truck diesel. See the <a
21178
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
21179
+ * service documentation</a> for more information.
20470
21180
  */
20471
21181
  TRUCK_DIESEL: 'TRUCK_DIESEL',
20472
21182
  };
@@ -21486,6 +22196,13 @@ google.maps.places.Place.prototype.svgIconMaskURI;
21486
22196
  */
21487
22197
  google.maps.places.Place.prototype.timeZone;
21488
22198
 
22199
+ /**
22200
+ * Information about the transit station. <code>undefined</code> if the transit
22201
+ * data has not been loaded from the server.
22202
+ * @type {!google.maps.places.TransitStation|null|undefined}
22203
+ */
22204
+ google.maps.places.Place.prototype.transitStation;
22205
+
21489
22206
  /**
21490
22207
  * An array of <a
21491
22208
  * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">types
@@ -21607,6 +22324,25 @@ google.maps.places.PlaceAccessibleEntranceIconElement = function(options) {};
21607
22324
  */
21608
22325
  google.maps.places.PlaceAccessibleEntranceIconElementOptions = function() {};
21609
22326
 
22327
+ /**
22328
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
22329
+ *
22330
+ * The event fired when the action button is clicked.
22331
+ *
22332
+ * Access by calling `const {PlaceActionEvent} = await
22333
+ * google.maps.importLibrary("places");`. See
22334
+ * https://developers.google.com/maps/documentation/javascript/libraries.
22335
+ * @extends {Event}
22336
+ * @constructor
22337
+ */
22338
+ google.maps.places.PlaceActionEvent = function() {};
22339
+
22340
+ /**
22341
+ * The place that was clicked.
22342
+ * @type {!google.maps.places.Place}
22343
+ */
22344
+ google.maps.places.PlaceActionEvent.prototype.place;
22345
+
21610
22346
  /**
21611
22347
  * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
21612
22348
  * google.maps.places.PlaceDetailsElement}, or {@link
@@ -21752,7 +22488,7 @@ google.maps.places.PlaceAttributionElementOptions.prototype.lightSchemeColor;
21752
22488
  * Access by calling `const {PlaceAutocompleteElement} = await
21753
22489
  * google.maps.importLibrary("places");`. See
21754
22490
  * https://developers.google.com/maps/documentation/javascript/libraries.
21755
- * @param {!google.maps.places.PlaceAutocompleteElementOptions} options
22491
+ * @param {!google.maps.places.PlaceAutocompleteElementOptions=} options
21756
22492
  * @implements {google.maps.places.PlaceAutocompleteElementOptions}
21757
22493
  * @extends {HTMLElement}
21758
22494
  * @constructor
@@ -21772,7 +22508,7 @@ google.maps.places.PlaceAutocompleteElement.prototype.description;
21772
22508
  * Whether the input element is disabled. See <a
21773
22509
  * 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>
21774
22510
  * for details.
21775
- * @type {boolean|null}
22511
+ * @type {boolean|null|undefined}
21776
22512
  */
21777
22513
  google.maps.places.PlaceAutocompleteElement.prototype.disabled;
21778
22514
 
@@ -21804,6 +22540,13 @@ google.maps.places.PlaceAutocompleteElement.prototype.includedPrimaryTypes;
21804
22540
  */
21805
22541
  google.maps.places.PlaceAutocompleteElement.prototype.includedRegionCodes;
21806
22542
 
22543
+ /**
22544
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
22545
+ * @type {!Iterable<string>|null|undefined}
22546
+ */
22547
+ google.maps.places.PlaceAutocompleteElement.prototype
22548
+ .internalUsageAttributionIds;
22549
+
21807
22550
  /**
21808
22551
  * A soft boundary or hint to use when searching for places.
21809
22552
  * @type {!google.maps.places.LocationBias|null}
@@ -21835,9 +22578,15 @@ google.maps.places.PlaceAutocompleteElement.prototype.maxlength;
21835
22578
  */
21836
22579
  google.maps.places.PlaceAutocompleteElement.prototype.name;
21837
22580
 
22581
+ /**
22582
+ * Whether to hide the clear button.
22583
+ * @type {boolean|null|undefined}
22584
+ */
22585
+ google.maps.places.PlaceAutocompleteElement.prototype.noClearButton;
22586
+
21838
22587
  /**
21839
22588
  * Whether to hide the input icon.
21840
- * @type {boolean|null}
22589
+ * @type {boolean|null|undefined}
21841
22590
  */
21842
22591
  google.maps.places.PlaceAutocompleteElement.prototype.noInputIcon;
21843
22592
 
@@ -21867,7 +22616,7 @@ google.maps.places.PlaceAutocompleteElement.prototype
21867
22616
  * Whether the input element is read-only. See <a
21868
22617
  * 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>
21869
22618
  * for details.
21870
- * @type {boolean|null}
22619
+ * @type {boolean|null|undefined}
21871
22620
  */
21872
22621
  google.maps.places.PlaceAutocompleteElement.prototype.readonly;
21873
22622
 
@@ -21946,6 +22695,12 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype
21946
22695
  google.maps.places.PlaceAutocompleteElementOptions.prototype
21947
22696
  .includedRegionCodes;
21948
22697
 
22698
+ /**
22699
+ * @type {!Iterable<string>|null|undefined}
22700
+ */
22701
+ google.maps.places.PlaceAutocompleteElementOptions.prototype
22702
+ .internalUsageAttributionIds;
22703
+
21949
22704
  /**
21950
22705
  * @type {!google.maps.places.LocationBias|null|undefined}
21951
22706
  */
@@ -21967,6 +22722,11 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype.maxlength;
21967
22722
  */
21968
22723
  google.maps.places.PlaceAutocompleteElementOptions.prototype.name;
21969
22724
 
22725
+ /**
22726
+ * @type {boolean|null|undefined}
22727
+ */
22728
+ google.maps.places.PlaceAutocompleteElementOptions.prototype.noClearButton;
22729
+
21970
22730
  /**
21971
22731
  * @type {boolean|null|undefined}
21972
22732
  */
@@ -22014,6 +22774,70 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype.unitSystem;
22014
22774
  */
22015
22775
  google.maps.places.PlaceAutocompleteElementOptions.prototype.value;
22016
22776
 
22777
+ /**
22778
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
22779
+ *
22780
+ * Displays a button slotted into either the <code>action-main</code> slot or
22781
+ * the <code>action-corner</code> slot. <code>PlaceButtonElement</code> has no
22782
+ * default behavior. Attach an event listener to the element to define its
22783
+ * behavior. By default the button will be shown in the <code>action-main</code>
22784
+ * slot.
22785
+ *
22786
+ * Access by calling `const {PlaceButtonElement} = await
22787
+ * google.maps.importLibrary("places");`. See
22788
+ * https://developers.google.com/maps/documentation/javascript/libraries.
22789
+ * @implements {google.maps.places.PlaceButtonElementOptions}
22790
+ * @extends {HTMLElement}
22791
+ * @constructor
22792
+ */
22793
+ google.maps.places.PlaceButtonElement = function() {};
22794
+
22795
+ /**
22796
+ * The ARIA label for the internal control. Icon-only controls should always
22797
+ * have an aria-label to describe their purpose and behavior. Controls rendered
22798
+ * in the corner do not show a label so an aria-label is recommended to be used
22799
+ * instead of the label for corner controls.
22800
+ * @default <code>undefined</code>
22801
+ * @type {string|undefined}
22802
+ */
22803
+ google.maps.places.PlaceButtonElement.prototype.actionAriaLabel;
22804
+
22805
+ /**
22806
+ * The label to display in the control. For links with predefined action types,
22807
+ * this attribute is ignored. Links and buttons rendered in the action-corner
22808
+ * slot do not display a label. It&#39;s recommended to use the
22809
+ * <code>action-aria-label</code> attribute instead for corner controls.
22810
+ * @default <code>undefined</code>
22811
+ * @type {string|undefined}
22812
+ */
22813
+ google.maps.places.PlaceButtonElement.prototype.label;
22814
+
22815
+ /**
22816
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
22817
+ *
22818
+ * Options for <code>PlaceButtonElement</code>.
22819
+ * @record
22820
+ */
22821
+ google.maps.places.PlaceButtonElementOptions = function() {};
22822
+
22823
+ /**
22824
+ * The ARIA label for the internal control. Icon-only controls should always
22825
+ * have an aria-label to describe their purpose and behavior. Controls rendered
22826
+ * in the corner do not show a label so an aria-label is recommended to be used
22827
+ * instead of the label for corner controls.
22828
+ * @type {string|undefined}
22829
+ */
22830
+ google.maps.places.PlaceButtonElementOptions.prototype.actionAriaLabel;
22831
+
22832
+ /**
22833
+ * The label to display in the control. For links with predefined action types,
22834
+ * this attribute is ignored. Links and buttons rendered in the action-corner
22835
+ * slot do not display a label. It&#39;s recommended to use the
22836
+ * <code>action-aria-label</code> attribute instead for corner controls.
22837
+ * @type {string|undefined}
22838
+ */
22839
+ google.maps.places.PlaceButtonElementOptions.prototype.label;
22840
+
22017
22841
  /**
22018
22842
  * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
22019
22843
  * google.maps.places.PlaceDetailsElement} or {@link
@@ -22208,6 +23032,13 @@ google.maps.places.PlaceContextualListLayout = {
22208
23032
  */
22209
23033
  google.maps.places.PlaceDetailsCompactElement = function(options) {};
22210
23034
 
23035
+ /**
23036
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
23037
+ * @type {!Iterable<string>|null|undefined}
23038
+ */
23039
+ google.maps.places.PlaceDetailsCompactElement.prototype
23040
+ .internalUsageAttributionIds;
23041
+
22211
23042
  /**
22212
23043
  * The orientation variant (vertical or horizontal) of the element.
22213
23044
  * @default <code>PlaceDetailsOrientation.VERTICAL</code>
@@ -22236,6 +23067,13 @@ google.maps.places.PlaceDetailsCompactElement.prototype.truncationPreferred;
22236
23067
  */
22237
23068
  google.maps.places.PlaceDetailsCompactElementOptions = function() {};
22238
23069
 
23070
+ /**
23071
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
23072
+ * @type {!Iterable<string>|null|undefined}
23073
+ */
23074
+ google.maps.places.PlaceDetailsCompactElementOptions.prototype
23075
+ .internalUsageAttributionIds;
23076
+
22239
23077
  /**
22240
23078
  * See {@link google.maps.places.PlaceDetailsCompactElement.orientation}.
22241
23079
  * @type {!google.maps.places.PlaceDetailsOrientation|null|undefined}
@@ -22280,6 +23118,12 @@ google.maps.places.PlaceDetailsCompactElementOptions.prototype
22280
23118
  */
22281
23119
  google.maps.places.PlaceDetailsElement = function(options) {};
22282
23120
 
23121
+ /**
23122
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
23123
+ * @type {!Iterable<string>|null|undefined}
23124
+ */
23125
+ google.maps.places.PlaceDetailsElement.prototype.internalUsageAttributionIds;
23126
+
22283
23127
  /**
22284
23128
  * Read only. Place object containing the ID, location, and viewport of the
22285
23129
  * currently rendered place.
@@ -22293,6 +23137,13 @@ google.maps.places.PlaceDetailsElement.prototype.place;
22293
23137
  */
22294
23138
  google.maps.places.PlaceDetailsElementOptions = function() {};
22295
23139
 
23140
+ /**
23141
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
23142
+ * @type {!Iterable<string>|null|undefined}
23143
+ */
23144
+ google.maps.places.PlaceDetailsElementOptions.prototype
23145
+ .internalUsageAttributionIds;
23146
+
22296
23147
  /**
22297
23148
  * Configures a {@link google.maps.places.PlaceDetailsCompactElement} or {@link
22298
23149
  * google.maps.places.PlaceDetailsElement} to load data based on a location.
@@ -22498,6 +23349,115 @@ google.maps.places.PlaceGeometry.prototype.location;
22498
23349
  */
22499
23350
  google.maps.places.PlaceGeometry.prototype.viewport;
22500
23351
 
23352
+ /**
23353
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
23354
+ *
23355
+ * Displays a link slotted into either the <code>action-main</code> slot or the
23356
+ * <code>action-corner</code> slot. By default the link will be shown in the
23357
+ * <code>action-main</code> slot. Use the <code>action</code> attribute to
23358
+ * specify the behavior of the link. Several action types are available to use
23359
+ * listed in {@link google.maps.places.ActionLinkType}. For a custom link,
23360
+ * specify the <code>custom</code> action type and set the <code>href</code> and
23361
+ * <code>label</code> attributes.
23362
+ *
23363
+ * Access by calling `const {PlaceLinkElement} = await
23364
+ * google.maps.importLibrary("places");`. See
23365
+ * https://developers.google.com/maps/documentation/javascript/libraries.
23366
+ * @implements {google.maps.places.PlaceLinkElementOptions}
23367
+ * @extends {HTMLElement}
23368
+ * @constructor
23369
+ */
23370
+ google.maps.places.PlaceLinkElement = function() {};
23371
+
23372
+ /**
23373
+ * The type of action to perform when the link is clicked. Determines the
23374
+ * default label, icon and destination href of the link. Use the
23375
+ * <code>custom</code> type and specify the <code>href</code> attribute to set a
23376
+ * destination manually.
23377
+ * @type {!google.maps.places.ActionLinkType|undefined}
23378
+ */
23379
+ google.maps.places.PlaceLinkElement.prototype.action;
23380
+
23381
+ /**
23382
+ * The ARIA label for the internal control. Icon-only controls should always
23383
+ * have an aria-label to describe their purpose and behavior. Controls rendered
23384
+ * in the corner do not show a label so an aria-label is recommended to be used
23385
+ * instead of the label for corner controls.
23386
+ * @default <code>undefined</code>
23387
+ * @type {string|undefined}
23388
+ */
23389
+ google.maps.places.PlaceLinkElement.prototype.actionAriaLabel;
23390
+
23391
+ /**
23392
+ * The URL to open when the link is clicked. This is only used when the
23393
+ * <code>action</code> attribute is set to <code>custom</code>.
23394
+ * @default <code>undefined</code>
23395
+ * @type {string|undefined}
23396
+ */
23397
+ google.maps.places.PlaceLinkElement.prototype.href;
23398
+
23399
+ /**
23400
+ * The label to display in the control. For links with predefined action types,
23401
+ * this attribute is ignored. Links and buttons rendered in the action-corner
23402
+ * slot do not display a label. It&#39;s recommended to use the
23403
+ * <code>action-aria-label</code> attribute instead for corner controls.
23404
+ * @default <code>undefined</code>
23405
+ * @type {string|undefined}
23406
+ */
23407
+ google.maps.places.PlaceLinkElement.prototype.label;
23408
+
23409
+ /**
23410
+ * Determines where the link opens. See <a
23411
+ * href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target">https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target</a>.
23412
+ * @default <code>undefined</code>
23413
+ * @type {string|undefined}
23414
+ */
23415
+ google.maps.places.PlaceLinkElement.prototype.target;
23416
+
23417
+ /**
23418
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
23419
+ *
23420
+ * Options for <code>PlaceLinkElement</code>.
23421
+ * @record
23422
+ */
23423
+ google.maps.places.PlaceLinkElementOptions = function() {};
23424
+
23425
+ /**
23426
+ * See {@link google.maps.places.PlaceLinkElement.action}.
23427
+ * @type {!google.maps.places.ActionLinkType|undefined}
23428
+ */
23429
+ google.maps.places.PlaceLinkElementOptions.prototype.action;
23430
+
23431
+ /**
23432
+ * The ARIA label for the internal control. Icon-only controls should always
23433
+ * have an aria-label to describe their purpose and behavior. Controls rendered
23434
+ * in the corner do not show a label so an aria-label is recommended to be used
23435
+ * instead of the label for corner controls.
23436
+ * @type {string|undefined}
23437
+ */
23438
+ google.maps.places.PlaceLinkElementOptions.prototype.actionAriaLabel;
23439
+
23440
+ /**
23441
+ * See {@link google.maps.places.PlaceLinkElement.href}.
23442
+ * @type {string|undefined}
23443
+ */
23444
+ google.maps.places.PlaceLinkElementOptions.prototype.href;
23445
+
23446
+ /**
23447
+ * The label to display in the control. For links with predefined action types,
23448
+ * this attribute is ignored. Links and buttons rendered in the action-corner
23449
+ * slot do not display a label. It&#39;s recommended to use the
23450
+ * <code>action-aria-label</code> attribute instead for corner controls.
23451
+ * @type {string|undefined}
23452
+ */
23453
+ google.maps.places.PlaceLinkElementOptions.prototype.label;
23454
+
23455
+ /**
23456
+ * See {@link google.maps.places.PlaceLinkElement.target}.
23457
+ * @type {string|undefined}
23458
+ */
23459
+ google.maps.places.PlaceLinkElementOptions.prototype.target;
23460
+
22501
23461
  /**
22502
23462
  * Configures a {@link google.maps.places.PlaceDetailsCompactElement}, {@link
22503
23463
  * google.maps.places.PlaceDetailsElement}, or {@link
@@ -22555,6 +23515,28 @@ google.maps.places.PlaceMediaElementOptions.prototype.lightboxPreferred;
22555
23515
  */
22556
23516
  google.maps.places.PlaceMediaElementOptions.prototype.preferredSize;
22557
23517
 
23518
+ /**
23519
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
23520
+ *
23521
+ * Displays the name of a place within a place details element.
23522
+ *
23523
+ * Access by calling `const {PlaceNameElement} = await
23524
+ * google.maps.importLibrary("places");`. See
23525
+ * https://developers.google.com/maps/documentation/javascript/libraries.
23526
+ * @implements {google.maps.places.PlaceNameElementOptions}
23527
+ * @extends {HTMLElement}
23528
+ * @constructor
23529
+ */
23530
+ google.maps.places.PlaceNameElement = function() {};
23531
+
23532
+ /**
23533
+ * Available only in the v=beta channel: https://goo.gle/3oAthT3.
23534
+ *
23535
+ * Options for <code>PlaceNameElement</code>.
23536
+ * @record
23537
+ */
23538
+ google.maps.places.PlaceNameElementOptions = function() {};
23539
+
22558
23540
  /**
22559
23541
  * Configures a {@link google.maps.places.PlaceSearchElement} to load results
22560
23542
  * based on a nearby search request. The <code>locationRestriction</code>
@@ -23596,6 +24578,12 @@ google.maps.places.PlaceSearchElement = function(options) {};
23596
24578
  */
23597
24579
  google.maps.places.PlaceSearchElement.prototype.attributionPosition;
23598
24580
 
24581
+ /**
24582
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
24583
+ * @type {!Iterable<string>|null|undefined}
24584
+ */
24585
+ google.maps.places.PlaceSearchElement.prototype.internalUsageAttributionIds;
24586
+
23599
24587
  /**
23600
24588
  * The orientation variant (vertical or horizontal) of the element.
23601
24589
  * @default <code>PlaceSearchOrientation.VERTICAL</code>
@@ -23639,6 +24627,13 @@ google.maps.places.PlaceSearchElementOptions = function() {};
23639
24627
  */
23640
24628
  google.maps.places.PlaceSearchElementOptions.prototype.attributionPosition;
23641
24629
 
24630
+ /**
24631
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
24632
+ * @type {!Iterable<string>|null|undefined}
24633
+ */
24634
+ google.maps.places.PlaceSearchElementOptions.prototype
24635
+ .internalUsageAttributionIds;
24636
+
23642
24637
  /**
23643
24638
  * See {@link google.maps.places.PlaceSearchElement.orientation}.
23644
24639
  * @type {!google.maps.places.PlaceSearchOrientation|null|undefined}
@@ -24558,7 +25553,9 @@ google.maps.places.PredictionTerm.prototype.offset;
24558
25553
  google.maps.places.PredictionTerm.prototype.value;
24559
25554
 
24560
25555
  /**
24561
- * Price level for a Place.
25556
+ * Price level of the place. See the <a
25557
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
25558
+ * service documentation</a> for more information.
24562
25559
  *
24563
25560
  * Access by calling `const {PriceLevel} = await
24564
25561
  * google.maps.importLibrary("places");`. See
@@ -24566,10 +25563,35 @@ google.maps.places.PredictionTerm.prototype.value;
24566
25563
  * @enum {string}
24567
25564
  */
24568
25565
  google.maps.places.PriceLevel = {
25566
+ /**
25567
+ * Place provides expensive services. See the <a
25568
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
25569
+ * service documentation</a> for more information.
25570
+ */
24569
25571
  EXPENSIVE: 'EXPENSIVE',
25572
+ /**
25573
+ * Place provides free services. See the <a
25574
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
25575
+ * service documentation</a> for more information.
25576
+ */
24570
25577
  FREE: 'FREE',
25578
+ /**
25579
+ * Place provides inexpensive services. See the <a
25580
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
25581
+ * service documentation</a> for more information.
25582
+ */
24571
25583
  INEXPENSIVE: 'INEXPENSIVE',
25584
+ /**
25585
+ * Place provides moderately priced services. See the <a
25586
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
25587
+ * service documentation</a> for more information.
25588
+ */
24572
25589
  MODERATE: 'MODERATE',
25590
+ /**
25591
+ * Place provides very expensive services. See the <a
25592
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
25593
+ * service documentation</a> for more information.
25594
+ */
24573
25595
  VERY_EXPENSIVE: 'VERY_EXPENSIVE',
24574
25596
  };
24575
25597
 
@@ -24890,7 +25912,9 @@ google.maps.places.SearchBoxOptions = function() {};
24890
25912
  google.maps.places.SearchBoxOptions.prototype.bounds;
24891
25913
 
24892
25914
  /**
24893
- * RankPreference enum for SearchByTextRequest.
25915
+ * How results will be ranked in the response. See the <a
25916
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference_1">web
25917
+ * service documentation</a> for more information.
24894
25918
  *
24895
25919
  * Access by calling `const {SearchByTextRankPreference} = await
24896
25920
  * google.maps.importLibrary("places");`. See
@@ -24899,11 +25923,15 @@ google.maps.places.SearchBoxOptions.prototype.bounds;
24899
25923
  */
24900
25924
  google.maps.places.SearchByTextRankPreference = {
24901
25925
  /**
24902
- * Ranks results by distance.
25926
+ * Ranks results by distance. See the <a
25927
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference_1">web
25928
+ * service documentation</a> for more information.
24903
25929
  */
24904
25930
  DISTANCE: 'DISTANCE',
24905
25931
  /**
24906
- * Ranks results by relevance.
25932
+ * Ranks results by relevance. See the <a
25933
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference_1">web
25934
+ * service documentation</a> for more information.
24907
25935
  */
24908
25936
  RELEVANCE: 'RELEVANCE',
24909
25937
  };
@@ -24947,6 +25975,12 @@ google.maps.places.SearchByTextRequest.prototype
24947
25975
  */
24948
25976
  google.maps.places.SearchByTextRequest.prototype.includedType;
24949
25977
 
25978
+ /**
25979
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
25980
+ * @type {!Iterable<string>|null|undefined}
25981
+ */
25982
+ google.maps.places.SearchByTextRequest.prototype.internalUsageAttributionIds;
25983
+
24950
25984
  /**
24951
25985
  * Used to restrict the search to places that are currently open.
24952
25986
  * @default <code>false</code>
@@ -25066,7 +26100,9 @@ google.maps.places.SearchByTextRequest.prototype.query;
25066
26100
  google.maps.places.SearchByTextRequest.prototype.rankBy;
25067
26101
 
25068
26102
  /**
25069
- * RankPreference enum for SearchNearbyRequest.
26103
+ * How results will be ranked in the response. See the <a
26104
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference">web
26105
+ * service documentation</a> for more information.
25070
26106
  *
25071
26107
  * Access by calling `const {SearchNearbyRankPreference} = await
25072
26108
  * google.maps.importLibrary("places");`. See
@@ -25075,11 +26111,15 @@ google.maps.places.SearchByTextRequest.prototype.rankBy;
25075
26111
  */
25076
26112
  google.maps.places.SearchNearbyRankPreference = {
25077
26113
  /**
25078
- * Ranks results by distance.
26114
+ * Ranks results by distance. See the <a
26115
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference">web
26116
+ * service documentation</a> for more information.
25079
26117
  */
25080
26118
  DISTANCE: 'DISTANCE',
25081
26119
  /**
25082
- * Ranks results by popularity.
26120
+ * Ranks results by popularity. See the <a
26121
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference">web
26122
+ * service documentation</a> for more information.
25083
26123
  */
25084
26124
  POPULARITY: 'POPULARITY',
25085
26125
  };
@@ -25155,6 +26195,12 @@ google.maps.places.SearchNearbyRequest.prototype.includedPrimaryTypes;
25155
26195
  */
25156
26196
  google.maps.places.SearchNearbyRequest.prototype.includedTypes;
25157
26197
 
26198
+ /**
26199
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
26200
+ * @type {!Iterable<string>|null|undefined}
26201
+ */
26202
+ google.maps.places.SearchNearbyRequest.prototype.internalUsageAttributionIds;
26203
+
25158
26204
  /**
25159
26205
  * Place details will be displayed with the preferred language if available.
25160
26206
  * Will default to the browser&#39;s language preference. Current list of
@@ -25219,7 +26265,10 @@ google.maps.places.SecondaryOpeningHours = function() {};
25219
26265
  google.maps.places.SecondaryOpeningHours.prototype.type;
25220
26266
 
25221
26267
  /**
25222
- * Defines the spatial relationship between the target location and the landmark
26268
+ * Defines the spatial relationship between the target location and the
26269
+ * landmark. See the <a
26270
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26271
+ * service documentation</a> for more information.
25223
26272
  *
25224
26273
  * Access by calling `const {SpatialRelationship} = await
25225
26274
  * google.maps.importLibrary("places");`. See
@@ -25229,31 +26278,48 @@ google.maps.places.SecondaryOpeningHours.prototype.type;
25229
26278
  google.maps.places.SpatialRelationship = {
25230
26279
  /**
25231
26280
  * The target is directly opposite the landmark on the other side of the road.
26281
+ * See the <a
26282
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26283
+ * service documentation</a> for more information.
25232
26284
  */
25233
26285
  ACROSS_THE_ROAD: 'ACROSS_THE_ROAD',
25234
26286
  /**
25235
- * Not on the same route as the landmark but a single turn away.
26287
+ * Not on the same route as the landmark but a single turn away. See the <a
26288
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26289
+ * service documentation</a> for more information.
25236
26290
  */
25237
26291
  AROUND_THE_CORNER: 'AROUND_THE_CORNER',
25238
26292
  /**
25239
26293
  * Close to the landmark&#39;s structure but further away from its street
25240
- * entrances.
26294
+ * entrances. See the <a
26295
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26296
+ * service documentation</a> for more information.
25241
26297
  */
25242
26298
  BEHIND: 'BEHIND',
25243
26299
  /**
25244
- * The target is directly adjacent to the landmark.
26300
+ * The target is directly adjacent to the landmark. See the <a
26301
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26302
+ * service documentation</a> for more information.
25245
26303
  */
25246
26304
  BESIDE: 'BESIDE',
25247
26305
  /**
25248
- * On the same route as the landmark but not besides or across.
26306
+ * On the same route as the landmark but not besides or across. See the <a
26307
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26308
+ * service documentation</a> for more information.
25249
26309
  */
25250
26310
  DOWN_THE_ROAD: 'DOWN_THE_ROAD',
25251
26311
  /**
25252
- * The default relationship when nothing more specific below applies.
26312
+ * This is the default relationship when nothing more specific below applies.
26313
+ * See the <a
26314
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26315
+ * service documentation</a> for more information.
25253
26316
  */
25254
26317
  NEAR: 'NEAR',
25255
26318
  /**
25256
26319
  * The landmark has a spatial geometry and the target is within its bounds.
26320
+ * See the <a
26321
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
26322
+ * service documentation</a> for more information.
25257
26323
  */
25258
26324
  WITHIN: 'WITHIN',
25259
26325
  };
@@ -25343,67 +26409,494 @@ google.maps.places.TextSearchRequest.prototype.language;
25343
26409
  google.maps.places.TextSearchRequest.prototype.location;
25344
26410
 
25345
26411
  /**
25346
- * The request&#39;s query term. For example, the name of a place (&#39;Eiffel
25347
- * Tower&#39;), a category followed by the name of a location (&#39;pizza in New
25348
- * York&#39;), or the name of a place followed by a location disambiguator
25349
- * (&#39;Starbucks in Sydney&#39;).
25350
- * @type {string|undefined}
26412
+ * The request&#39;s query term. For example, the name of a place (&#39;Eiffel
26413
+ * Tower&#39;), a category followed by the name of a location (&#39;pizza in New
26414
+ * York&#39;), or the name of a place followed by a location disambiguator
26415
+ * (&#39;Starbucks in Sydney&#39;).
26416
+ * @type {string|undefined}
26417
+ */
26418
+ google.maps.places.TextSearchRequest.prototype.query;
26419
+
26420
+ /**
26421
+ * The radius of the area used to bias results when searching for Places, in
26422
+ * meters.
26423
+ * @type {number|undefined}
26424
+ */
26425
+ google.maps.places.TextSearchRequest.prototype.radius;
26426
+
26427
+ /**
26428
+ * A region code to bias results towards. The region code accepts a <a
26429
+ * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
26430
+ * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
26431
+ * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
26432
+ * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
26433
+ * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
26434
+ * United Kingdom of Great Britain and Northern Ireland&quot;).
26435
+ * @type {string|null|undefined}
26436
+ */
26437
+ google.maps.places.TextSearchRequest.prototype.region;
26438
+
26439
+ /**
26440
+ * Searches for places of the given type. The type is translated to the local
26441
+ * language of the request&#39;s target location and used as a query string. If
26442
+ * a query is also provided, it is concatenated to the localized type string.
26443
+ * Results of a different type are dropped from the response. Use this field to
26444
+ * perform language and region independent categorical searches. Valid types are
26445
+ * given <a
26446
+ * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">here</a>.
26447
+ * @type {string|undefined}
26448
+ */
26449
+ google.maps.places.TextSearchRequest.prototype.type;
26450
+
26451
+ /**
26452
+ * Represents a time zone from the IANA Time Zone Database <a
26453
+ * href="https://www.iana.org/time-zones">https://www.iana.org/time-zones</a>.
26454
+ *
26455
+ * Access by calling `const {TimeZone} = await
26456
+ * google.maps.importLibrary("places");`. See
26457
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26458
+ * @constructor
26459
+ */
26460
+ google.maps.places.TimeZone = function() {};
26461
+
26462
+ /**
26463
+ * IANA Time Zone Database time zone. For example &quot;America/New_York&quot;.
26464
+ * @type {string|null}
26465
+ */
26466
+ google.maps.places.TimeZone.prototype.id;
26467
+
26468
+ /**
26469
+ * IANA Time Zone Database version number. For example &quot;2019a&quot;.
26470
+ * @type {string|null}
26471
+ */
26472
+ google.maps.places.TimeZone.prototype.version;
26473
+
26474
+ /**
26475
+ * Represents a transit agency.
26476
+ *
26477
+ * Access by calling `const {TransitAgency} = await
26478
+ * google.maps.importLibrary("places");`. See
26479
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26480
+ * @constructor
26481
+ */
26482
+ google.maps.places.TransitAgency = function() {};
26483
+
26484
+ /**
26485
+ * The name of the agency in the requested language.
26486
+ * @type {string|null}
26487
+ */
26488
+ google.maps.places.TransitAgency.prototype.displayName;
26489
+
26490
+ /**
26491
+ * The agency name text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
26492
+ * &quot;sr-Latn&quot;. For more information, see <a
26493
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26494
+ * @type {string|null}
26495
+ */
26496
+ google.maps.places.TransitAgency.prototype.displayNameLanguageCode;
26497
+
26498
+ /**
26499
+ * The URL of the agency&#39;s fare details page.
26500
+ * @type {!URL|null}
26501
+ */
26502
+ google.maps.places.TransitAgency.prototype.fareURL;
26503
+
26504
+ /**
26505
+ * A localized branded icon of a transit system.
26506
+ * @type {!google.maps.places.TransitIcon|null}
26507
+ */
26508
+ google.maps.places.TransitAgency.prototype.icon;
26509
+
26510
+ /**
26511
+ * The transit lines that are served by this agency.
26512
+ * @type {!Array<!google.maps.places.TransitLine>}
26513
+ */
26514
+ google.maps.places.TransitAgency.prototype.lines;
26515
+
26516
+ /**
26517
+ * The URL of the agency&#39;s homepage.
26518
+ * @type {!URL|null}
26519
+ */
26520
+ google.maps.places.TransitAgency.prototype.url;
26521
+
26522
+ /**
26523
+ * Represents a transit icon.
26524
+ *
26525
+ * Access by calling `const {TransitIcon} = await
26526
+ * google.maps.importLibrary("places");`. See
26527
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26528
+ * @constructor
26529
+ */
26530
+ google.maps.places.TransitIcon = function() {};
26531
+
26532
+ /**
26533
+ * Whether the name is contained in the icon and there is no need to display it
26534
+ * next to the icon.
26535
+ * @type {boolean|null}
26536
+ */
26537
+ google.maps.places.TransitIcon.prototype.nameIncluded;
26538
+
26539
+ /**
26540
+ * The URL of the icon.
26541
+ * @type {!URL|null}
26542
+ */
26543
+ google.maps.places.TransitIcon.prototype.url;
26544
+
26545
+ /**
26546
+ * Represents a transit line.
26547
+ *
26548
+ * Access by calling `const {TransitLine} = await
26549
+ * google.maps.importLibrary("places");`. See
26550
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26551
+ * @constructor
26552
+ */
26553
+ google.maps.places.TransitLine = function() {};
26554
+
26555
+ /**
26556
+ * The background color of the labels for this transit line in hexadecimal
26557
+ * format (e.g., &quot;#909CE1&quot;). This color can also be used for drawing
26558
+ * shapes for this transit line.
26559
+ * @type {string|null}
26560
+ */
26561
+ google.maps.places.TransitLine.prototype.backgroundColor;
26562
+
26563
+ /**
26564
+ * The full name of this transit line (e.g., &quot;Sunnydale local&quot;).
26565
+ * @type {string|null}
26566
+ */
26567
+ google.maps.places.TransitLine.prototype.displayName;
26568
+
26569
+ /**
26570
+ * The transit line full name text&#39;s BCP-47 language code, such as
26571
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
26572
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26573
+ * @type {string|null}
26574
+ */
26575
+ google.maps.places.TransitLine.prototype.displayNameLanguageCode;
26576
+
26577
+ /**
26578
+ * Icon for this particular line.
26579
+ * @type {!google.maps.places.TransitIcon|null}
26580
+ */
26581
+ google.maps.places.TransitLine.prototype.icon;
26582
+
26583
+ /**
26584
+ * The id of the transit line that can be used to uniquely identify the line
26585
+ * among other transit lines in the same transit station. This identifier is not
26586
+ * guaranteed to be stable across different responses.
26587
+ * @type {string|null}
26588
+ */
26589
+ google.maps.places.TransitLine.prototype.id;
26590
+
26591
+ /**
26592
+ * The short name of this transit line (e.g., &quot;S2&quot;).
26593
+ * @type {string|null}
26594
+ */
26595
+ google.maps.places.TransitLine.prototype.shortDisplayName;
26596
+
26597
+ /**
26598
+ * The transit line short name text&#39;s BCP-47 language code, such as
26599
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
26600
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26601
+ * @type {string|null}
26602
+ */
26603
+ google.maps.places.TransitLine.prototype.shortDisplayNameLanguageCode;
26604
+
26605
+ /**
26606
+ * The text color of labels for this transit line in hexadecimal format (e.g.,
26607
+ * &quot;#909CE1&quot;).
26608
+ * @type {string|null}
26609
+ */
26610
+ google.maps.places.TransitLine.prototype.textColor;
26611
+
26612
+ /**
26613
+ * The URL of a webpage with details about this line.
26614
+ * @type {!URL|null}
26615
+ */
26616
+ google.maps.places.TransitLine.prototype.url;
26617
+
26618
+ /**
26619
+ * Icon for this particular vehicle type.
26620
+ * @type {!google.maps.places.TransitIcon|null}
26621
+ */
26622
+ google.maps.places.TransitLine.prototype.vehicleIcon;
26623
+
26624
+ /**
26625
+ * The type of vehicle used.
26626
+ * @type {!google.maps.places.TransitVehicleType|null}
26627
+ */
26628
+ google.maps.places.TransitLine.prototype.vehicleType;
26629
+
26630
+ /**
26631
+ * Represents transit-specific information for a place.
26632
+ *
26633
+ * Access by calling `const {TransitStation} = await
26634
+ * google.maps.importLibrary("places");`. See
26635
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26636
+ * @constructor
26637
+ */
26638
+ google.maps.places.TransitStation = function() {};
26639
+
26640
+ /**
26641
+ * The transit agencies that serve this station.
26642
+ * @type {!Array<!google.maps.places.TransitAgency>}
26643
+ */
26644
+ google.maps.places.TransitStation.prototype.agencies;
26645
+
26646
+ /**
26647
+ * The name of the station in the local language.
26648
+ * @type {string|null}
26649
+ */
26650
+ google.maps.places.TransitStation.prototype.displayName;
26651
+
26652
+ /**
26653
+ * The local display name text&#39;s BCP-47 language code, such as
26654
+ * &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see <a
26655
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26656
+ * @type {string|null}
26657
+ */
26658
+ google.maps.places.TransitStation.prototype.displayNameLanguageCode;
26659
+
26660
+ /**
26661
+ * The transit stops at this station.
26662
+ * @type {!Array<!google.maps.places.TransitStop>}
26663
+ */
26664
+ google.maps.places.TransitStation.prototype.stops;
26665
+
26666
+ /**
26667
+ * Represents a transit stop.
26668
+ *
26669
+ * Access by calling `const {TransitStop} = await
26670
+ * google.maps.importLibrary("places");`. See
26671
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26672
+ * @constructor
26673
+ */
26674
+ google.maps.places.TransitStop = function() {};
26675
+
26676
+ /**
26677
+ * The name of the stop in the requested language.
26678
+ * @type {string|null}
26679
+ */
26680
+ google.maps.places.TransitStop.prototype.displayName;
26681
+
26682
+ /**
26683
+ * The name of the stop in the requested language&#39;s BCP-47 language code,
26684
+ * such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see
26685
+ * <a
26686
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26687
+ * @type {string|null}
26688
+ */
26689
+ google.maps.places.TransitStop.prototype.displayNameLanguageCode;
26690
+
26691
+ /**
26692
+ * This field indicates whether there is an accessible path from outside the
26693
+ * station to the stop. It does not indicate whether it is possible to board a
26694
+ * vehicle from the stop.
26695
+ * @type {boolean|null}
26696
+ */
26697
+ google.maps.places.TransitStop.prototype.hasWheelchairAccessibleEntrance;
26698
+
26699
+ /**
26700
+ * The id of the transit stop that can be used to uniquely identify the stop
26701
+ * among other transit stops in the same transit station. This identifier is not
26702
+ * guaranteed to be stable across different responses.
26703
+ * @type {string|null}
26704
+ */
26705
+ google.maps.places.TransitStop.prototype.id;
26706
+
26707
+ /**
26708
+ * The stop&#39;s location.
26709
+ * @type {!google.maps.LatLngAltitude|null}
26710
+ */
26711
+ google.maps.places.TransitStop.prototype.location;
26712
+
26713
+ /**
26714
+ * The platform code represented by this stop. It can be formatted in any way
26715
+ * (e.g., &quot;2&quot;, &quot;Platform 2&quot;, &quot;2-4&quot;, or
26716
+ * &quot;1x&quot;).
26717
+ * @type {string|null}
25351
26718
  */
25352
- google.maps.places.TextSearchRequest.prototype.query;
26719
+ google.maps.places.TransitStop.prototype.platformCode;
25353
26720
 
25354
26721
  /**
25355
- * The radius of the area used to bias results when searching for Places, in
25356
- * meters.
25357
- * @type {number|undefined}
26722
+ * The platform code text&#39;s BCP-47 language code, such as &quot;en-US&quot;
26723
+ * or &quot;sr-Latn&quot;. For more information, see <a
26724
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26725
+ * @type {string|null}
25358
26726
  */
25359
- google.maps.places.TextSearchRequest.prototype.radius;
26727
+ google.maps.places.TransitStop.prototype.platformCodeLanguageCode;
25360
26728
 
25361
26729
  /**
25362
- * A region code to bias results towards. The region code accepts a <a
25363
- * href="https://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains">ccTLD
25364
- * (&quot;top-level domain&quot;)</a> two-character value. Most ccTLD codes are
25365
- * identical to ISO 3166-1 codes, with some notable exceptions. For example, the
25366
- * United Kingdom&#39;s ccTLD is &quot;uk&quot; (<code>.co.uk</code>) while its
25367
- * ISO 3166-1 code is &quot;gb&quot; (technically for the entity of &quot;The
25368
- * United Kingdom of Great Britain and Northern Ireland&quot;).
25369
- * @type {string|null|undefined}
26730
+ * The verbatim text written on the signboard for this platform (e.g.,
26731
+ * &quot;Towards Central&quot; or &quot;East side &amp; Brooklyn&quot;). When
26732
+ * <code>platformCode</code> is absent, this field is potentially the only
26733
+ * identifier for the platform. However, both <code>platformCode</code> and
26734
+ * <code>signageText</code> may be set simultaneously.
26735
+ * @type {string|null}
25370
26736
  */
25371
- google.maps.places.TextSearchRequest.prototype.region;
26737
+ google.maps.places.TransitStop.prototype.signageText;
25372
26738
 
25373
26739
  /**
25374
- * Searches for places of the given type. The type is translated to the local
25375
- * language of the request&#39;s target location and used as a query string. If
25376
- * a query is also provided, it is concatenated to the localized type string.
25377
- * Results of a different type are dropped from the response. Use this field to
25378
- * perform language and region independent categorical searches. Valid types are
25379
- * given <a
25380
- * href="https://developers.google.com/maps/documentation/places/web-service/supported_types">here</a>.
25381
- * @type {string|undefined}
26740
+ * The signage text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
26741
+ * &quot;sr-Latn&quot;. For more information, see <a
26742
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
26743
+ * @type {string|null}
25382
26744
  */
25383
- google.maps.places.TextSearchRequest.prototype.type;
26745
+ google.maps.places.TransitStop.prototype.signageTextLanguageCode;
25384
26746
 
25385
26747
  /**
25386
- * Represents a time zone from the IANA Time Zone Database <a
25387
- * href="https://www.iana.org/time-zones">https://www.iana.org/time-zones</a>.
25388
- *
25389
- * Access by calling `const {TimeZone} = await
25390
- * google.maps.importLibrary("places");`. See
25391
- * https://developers.google.com/maps/documentation/javascript/libraries.
25392
- * @constructor
26748
+ * Human readable identifier of the stop, used by transit agencies to
26749
+ * distinguish stops with the same name.
26750
+ * @type {string|null}
25393
26751
  */
25394
- google.maps.places.TimeZone = function() {};
26752
+ google.maps.places.TransitStop.prototype.stopCode;
25395
26753
 
25396
26754
  /**
25397
- * IANA Time Zone Database time zone. For example &quot;America/New_York&quot;.
26755
+ * The stop code text&#39;s BCP-47 language code, such as &quot;en-US&quot; or
26756
+ * &quot;sr-Latn&quot;. For more information, see <a
26757
+ * href="http://www.unicode.org/reports/tr35/#Unicode_locale_identifier">http://www.unicode.org/reports/tr35/#Unicode_locale_identifier</a>.
25398
26758
  * @type {string|null}
25399
26759
  */
25400
- google.maps.places.TimeZone.prototype.id;
26760
+ google.maps.places.TransitStop.prototype.stopCodeLanguageCode;
25401
26761
 
25402
26762
  /**
25403
- * IANA Time Zone Database version number. For example &quot;2019a&quot;.
25404
- * @type {string|null}
26763
+ * The type of vehicle for a transit line. See the <a
26764
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26765
+ * service documentation</a> for more information.
26766
+ *
26767
+ * Access by calling `const {TransitVehicleType} = await
26768
+ * google.maps.importLibrary("places");`. See
26769
+ * https://developers.google.com/maps/documentation/javascript/libraries.
26770
+ * @enum {string}
25405
26771
  */
25406
- google.maps.places.TimeZone.prototype.version;
26772
+ google.maps.places.TransitVehicleType = {
26773
+ /**
26774
+ * Airplane. See the <a
26775
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26776
+ * service documentation</a> for more information.
26777
+ */
26778
+ AIRPLANE: 'AIRPLANE',
26779
+ /**
26780
+ * Bus. See the <a
26781
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26782
+ * service documentation</a> for more information.
26783
+ */
26784
+ BUS: 'BUS',
26785
+ /**
26786
+ * Cable car. See the <a
26787
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26788
+ * service documentation</a> for more information.
26789
+ */
26790
+ CABLE_CAR: 'CABLE_CAR',
26791
+ /**
26792
+ * Coach. See the <a
26793
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26794
+ * service documentation</a> for more information.
26795
+ */
26796
+ COACH: 'COACH',
26797
+ /**
26798
+ * Commuter train. See the <a
26799
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26800
+ * service documentation</a> for more information.
26801
+ */
26802
+ COMMUTER_TRAIN: 'COMMUTER_TRAIN',
26803
+ /**
26804
+ * Ferry. See the <a
26805
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26806
+ * service documentation</a> for more information.
26807
+ */
26808
+ FERRY: 'FERRY',
26809
+ /**
26810
+ * Funicular. See the <a
26811
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26812
+ * service documentation</a> for more information.
26813
+ */
26814
+ FUNICULAR: 'FUNICULAR',
26815
+ /**
26816
+ * Gondola lift. See the <a
26817
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26818
+ * service documentation</a> for more information.
26819
+ */
26820
+ GONDOLA_LIFT: 'GONDOLA_LIFT',
26821
+ /**
26822
+ * Heavy rail. See the <a
26823
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26824
+ * service documentation</a> for more information.
26825
+ */
26826
+ HEAVY_RAIL: 'HEAVY_RAIL',
26827
+ /**
26828
+ * High speed train. See the <a
26829
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26830
+ * service documentation</a> for more information.
26831
+ */
26832
+ HIGH_SPEED_TRAIN: 'HIGH_SPEED_TRAIN',
26833
+ /**
26834
+ * Horse carriage. See the <a
26835
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26836
+ * service documentation</a> for more information.
26837
+ */
26838
+ HORSE_CARRIAGE: 'HORSE_CARRIAGE',
26839
+ /**
26840
+ * Intercity bus. See the <a
26841
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26842
+ * service documentation</a> for more information.
26843
+ */
26844
+ INTERCITY_BUS: 'INTERCITY_BUS',
26845
+ /**
26846
+ * Long distance train. See the <a
26847
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26848
+ * service documentation</a> for more information.
26849
+ */
26850
+ LONG_DISTANCE_TRAIN: 'LONG_DISTANCE_TRAIN',
26851
+ /**
26852
+ * Metro rail. See the <a
26853
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26854
+ * service documentation</a> for more information.
26855
+ */
26856
+ METRO_RAIL: 'METRO_RAIL',
26857
+ /**
26858
+ * Monorail. See the <a
26859
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26860
+ * service documentation</a> for more information.
26861
+ */
26862
+ MONORAIL: 'MONORAIL',
26863
+ /**
26864
+ * Rail. See the <a
26865
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26866
+ * service documentation</a> for more information.
26867
+ */
26868
+ RAIL: 'RAIL',
26869
+ /**
26870
+ * Share taxi. See the <a
26871
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26872
+ * service documentation</a> for more information.
26873
+ */
26874
+ SHARE_TAXI: 'SHARE_TAXI',
26875
+ /**
26876
+ * Special. See the <a
26877
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26878
+ * service documentation</a> for more information.
26879
+ */
26880
+ SPECIAL: 'SPECIAL',
26881
+ /**
26882
+ * Subway. See the <a
26883
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26884
+ * service documentation</a> for more information.
26885
+ */
26886
+ SUBWAY: 'SUBWAY',
26887
+ /**
26888
+ * Tram. See the <a
26889
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26890
+ * service documentation</a> for more information.
26891
+ */
26892
+ TRAM: 'TRAM',
26893
+ /**
26894
+ * Trolleybus. See the <a
26895
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26896
+ * service documentation</a> for more information.
26897
+ */
26898
+ TROLLEYBUS: 'TROLLEYBUS',
26899
+ };
25407
26900
 
25408
26901
  /**
25409
26902
  * @const
@@ -25484,6 +26977,13 @@ google.maps.routes.ComputeRouteMatrixRequest.prototype.extraComputations;
25484
26977
  */
25485
26978
  google.maps.routes.ComputeRouteMatrixRequest.prototype.fields;
25486
26979
 
26980
+ /**
26981
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
26982
+ * @type {!Iterable<string>|null|undefined}
26983
+ */
26984
+ google.maps.routes.ComputeRouteMatrixRequest.prototype
26985
+ .internalUsageAttributionIds;
26986
+
25487
26987
  /**
25488
26988
  * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
25489
26989
  * For more information, see <a
@@ -25700,6 +27200,12 @@ google.maps.routes.ComputeRoutesRequest.prototype.fields;
25700
27200
  */
25701
27201
  google.maps.routes.ComputeRoutesRequest.prototype.intermediates;
25702
27202
 
27203
+ /**
27204
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
27205
+ * @type {!Iterable<string>|null|undefined}
27206
+ */
27207
+ google.maps.routes.ComputeRoutesRequest.prototype.internalUsageAttributionIds;
27208
+
25703
27209
  /**
25704
27210
  * The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;.
25705
27211
  * For more information, see <a
@@ -25826,6 +27332,33 @@ google.maps.routes.ComputeRoutesRequest.prototype.travelMode;
25826
27332
  */
25827
27333
  google.maps.routes.ComputeRoutesRequest.prototype.units;
25828
27334
 
27335
+ /**
27336
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
27337
+ *
27338
+ * Options for creating waypoint markers.
27339
+ * @template T
27340
+ * @record
27341
+ */
27342
+ google.maps.routes.CreateWaypointMarkersOptions = function() {};
27343
+
27344
+ /**
27345
+ * A custom function to mutate the created elements. The default forEach
27346
+ * function appends pins with A-Z glyphs to each marker. For different behavior,
27347
+ * override this function.
27348
+ * @type {(function(T): void)|null|undefined}
27349
+ */
27350
+ google.maps.routes.CreateWaypointMarkersOptions.prototype.forEach;
27351
+
27352
+ /**
27353
+ * The constructor of the element to create. Supported types include: <ul>
27354
+ * <li>{@link google.maps.maps3d.Marker3DElement}</li> <li>{@link
27355
+ * google.maps.maps3d.Marker3DInteractiveElement}</li> <li>{@link
27356
+ * google.maps.maps3d.MarkerElement}</li> <li>{@link
27357
+ * google.maps.maps3d.MarkerInteractiveElement}</li> </ul>
27358
+ * @type {(function(new:T))|null|undefined}
27359
+ */
27360
+ google.maps.routes.CreateWaypointMarkersOptions.prototype.markerClass;
27361
+
25829
27362
  /**
25830
27363
  * Encapsulates a geographic point and an optional heading.
25831
27364
  *
@@ -26433,8 +27966,9 @@ google.maps.routes.Route.prototype.createPolylines = function(options) {};
26433
27966
  * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
26434
27967
  * Creates a popover for the route based on the data available for the route,
26435
27968
  * configured in a way suitable for annotating a route on a map. Currently
26436
- * uses {@link google.maps.routes.Route.localizedValues} and {@link
26437
- * google.maps.routes.Route.path}, if available.
27969
+ * uses {@link google.maps.routes.Route.localizedValues}, {@link
27970
+ * google.maps.routes.Route.path}, and {@link google.maps.routes.Route.legs}, if
27971
+ * available.
26438
27972
  * @return {!Promise<!google.maps.maps3d.PopoverElement>}
26439
27973
  */
26440
27974
  google.maps.routes.Route.prototype.createPopover = function() {};
@@ -26456,6 +27990,19 @@ google.maps.routes.Route.prototype.createPopover = function() {};
26456
27990
  google.maps.routes.Route.prototype.createWaypointAdvancedMarkers = function(
26457
27991
  options) {};
26458
27992
 
27993
+ /**
27994
+ * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
27995
+ * Creates markers for the route&#39;s origin and destination. Markers have
27996
+ * default styling applied unless a customOverride function is specified.
27997
+ * Intermediate waypoints are not currently supported. <br><br> Created markers
27998
+ * have their {@link google.maps.CollisionBehavior} set to {@link
27999
+ * google.maps.CollisionBehavior.REQUIRED_AND_HIDES_OPTIONAL} by default.
28000
+ * @template T
28001
+ * @param {!google.maps.routes.CreateWaypointMarkersOptions<T>=} options
28002
+ * @return {!Promise<!Array<T>>}
28003
+ */
28004
+ google.maps.routes.Route.prototype.createWaypointMarkers = function(options) {};
28005
+
26459
28006
  /**
26460
28007
  * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
26461
28008
  *
@@ -26491,16 +28038,41 @@ google.maps.routes.Route3DElement.prototype.departureTime;
26491
28038
 
26492
28039
  /**
26493
28040
  * The destination of the route.
26494
- * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
28041
+ * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null|undefined}
26495
28042
  */
26496
28043
  google.maps.routes.Route3DElement.prototype.destination;
26497
28044
 
28045
+ /**
28046
+ * Fallback info for the computed routes.
28047
+ * @type {!google.maps.routes.FallbackInfo|null}
28048
+ */
28049
+ google.maps.routes.Route3DElement.prototype.fallbackInfo;
28050
+
28051
+ /**
28052
+ * Geocoding results for the origin and destination.
28053
+ * @type {!google.maps.routes.GeocodingResults|null}
28054
+ */
28055
+ google.maps.routes.Route3DElement.prototype.geocodingResults;
28056
+
28057
+ /**
28058
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
28059
+ * @type {!Iterable<string>|null|undefined}
28060
+ */
28061
+ google.maps.routes.Route3DElement.prototype.internalUsageAttributionIds;
28062
+
26498
28063
  /**
26499
28064
  * The origin of the route.
26500
- * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
28065
+ * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null|undefined}
26501
28066
  */
26502
28067
  google.maps.routes.Route3DElement.prototype.origin;
26503
28068
 
28069
+ /**
28070
+ * The primary route along with optional alternate routes, computed from the
28071
+ * Routes API.
28072
+ * @type {!Array<!google.maps.routes.Route>|null}
28073
+ */
28074
+ google.maps.routes.Route3DElement.prototype.routes;
28075
+
26504
28076
  /**
26505
28077
  * If provided, the route will be computed with traffic information along the
26506
28078
  * route that&#39;s based on the {@link google.maps.routes.RoutingPreference}
@@ -26509,6 +28081,15 @@ google.maps.routes.Route3DElement.prototype.origin;
26509
28081
  */
26510
28082
  google.maps.routes.Route3DElement.prototype.routingPreference;
26511
28083
 
28084
+ /**
28085
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
28086
+ * available when routingPreference is set to TRAFFIC_AWARE or
28087
+ * TRAFFIC_AWARE_OPTIMAL.
28088
+ * @default <code>false</code>
28089
+ * @type {boolean|null|undefined}
28090
+ */
28091
+ google.maps.routes.Route3DElement.prototype.trafficPolylinesDisabled;
28092
+
26512
28093
  /**
26513
28094
  * If provided, the polyline is based on the specified travel mode.
26514
28095
  * @type {!google.maps.TravelMode|null|undefined}
@@ -26536,13 +28117,19 @@ google.maps.routes.Route3DElementOptions.prototype.departureTime;
26536
28117
 
26537
28118
  /**
26538
28119
  * See {@link google.maps.routes.Route3DElement.destination}.
26539
- * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
28120
+ * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null|undefined}
26540
28121
  */
26541
28122
  google.maps.routes.Route3DElementOptions.prototype.destination;
26542
28123
 
28124
+ /**
28125
+ * Identifiers used to attribute calls to specific packages or OSS libraries.
28126
+ * @type {!Iterable<string>|null|undefined}
28127
+ */
28128
+ google.maps.routes.Route3DElementOptions.prototype.internalUsageAttributionIds;
28129
+
26543
28130
  /**
26544
28131
  * See {@link google.maps.routes.Route3DElement.origin}.
26545
- * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null}
28132
+ * @type {string|google.maps.LatLng|google.maps.LatLngLiteral|google.maps.LatLngAltitude|google.maps.LatLngAltitudeLiteral|google.maps.places.Place|null|undefined}
26546
28133
  */
26547
28134
  google.maps.routes.Route3DElementOptions.prototype.origin;
26548
28135
 
@@ -26552,6 +28139,14 @@ google.maps.routes.Route3DElementOptions.prototype.origin;
26552
28139
  */
26553
28140
  google.maps.routes.Route3DElementOptions.prototype.routingPreference;
26554
28141
 
28142
+ /**
28143
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
28144
+ * available when routingPreference is set to TRAFFIC_AWARE or
28145
+ * TRAFFIC_AWARE_OPTIMAL.
28146
+ * @type {boolean|null|undefined}
28147
+ */
28148
+ google.maps.routes.Route3DElementOptions.prototype.trafficPolylinesDisabled;
28149
+
26555
28150
  /**
26556
28151
  * See {@link google.maps.routes.Route3DElement.travelMode}.
26557
28152
  * @type {!google.maps.TravelMode|null|undefined}
@@ -27330,6 +28925,14 @@ google.maps.routes.RoutePolyline3DOptions.prototype.colorScheme;
27330
28925
  */
27331
28926
  google.maps.routes.RoutePolyline3DOptions.prototype.polylineOptions;
27332
28927
 
28928
+ /**
28929
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
28930
+ * available when routingPreference is set to TRAFFIC_AWARE or
28931
+ * TRAFFIC_AWARE_OPTIMAL.
28932
+ * @type {boolean|undefined}
28933
+ */
28934
+ google.maps.routes.RoutePolyline3DOptions.prototype.trafficPolylinesDisabled;
28935
+
27333
28936
  /**
27334
28937
  * Details about a section of a route corresponding to a polyline that can be
27335
28938
  * used to customize the polyline style.
@@ -28002,123 +29605,10 @@ google.maps.visualization = {};
28002
29605
  * Access by calling `const {HeatmapLayer} = await
28003
29606
  * google.maps.importLibrary("visualization");`. See
28004
29607
  * https://developers.google.com/maps/documentation/javascript/libraries.
28005
- * @param {?google.maps.visualization.HeatmapLayerOptions=} opts
28006
- * @extends {google.maps.MVCObject}
28007
29608
  * @constructor
28008
29609
  * @deprecated The Heatmap Layer functionality in the Maps JavaScript API is no
28009
- * longer supported. This API was deprecated in May 2025 and will be made
28010
- * unavailable in a later version of the Maps JavaScript API, releasing in
28011
- * May 2026. For more info, see <a
28012
- * href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>).
28013
- */
28014
- google.maps.visualization.HeatmapLayer = function(opts) {};
28015
-
28016
- /**
28017
- * Returns the data points currently displayed by this heatmap.
28018
- * @return {!google.maps.MVCArray<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>}
28019
- */
28020
- google.maps.visualization.HeatmapLayer.prototype.getData = function() {};
28021
-
28022
- /**
28023
- * @return {!google.maps.Map|undefined}
28024
- */
28025
- google.maps.visualization.HeatmapLayer.prototype.getMap = function() {};
28026
-
28027
- /**
28028
- * Sets the data points to be displayed by this heatmap.
28029
- * @param {!google.maps.MVCArray<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>|!Array<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>}
28030
- * data
28031
- * @return {undefined}
28032
- */
28033
- google.maps.visualization.HeatmapLayer.prototype.setData = function(data) {};
28034
-
28035
- /**
28036
- * Renders the heatmap on the specified map. If map is set to <code>null</code>,
28037
- * the heatmap will be removed.
28038
- * @param {?google.maps.Map} map
28039
- * @return {undefined}
28040
- */
28041
- google.maps.visualization.HeatmapLayer.prototype.setMap = function(map) {};
28042
-
28043
- /**
28044
- * @param {?google.maps.visualization.HeatmapLayerOptions} options
28045
- * @return {undefined}
28046
- */
28047
- google.maps.visualization.HeatmapLayer.prototype.setOptions = function(
28048
- options) {};
28049
-
28050
- /**
28051
- * This object defines the properties that can be set on a
28052
- * <code>HeatmapLayer</code> object.
28053
- * @record
28054
- */
28055
- google.maps.visualization.HeatmapLayerOptions = function() {};
28056
-
28057
- /**
28058
- * The data points to display. Required.
28059
- * @type {!google.maps.MVCArray<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>|!Array<!google.maps.LatLng|!google.maps.visualization.WeightedLocation>|null|undefined}
28060
- */
28061
- google.maps.visualization.HeatmapLayerOptions.prototype.data;
28062
-
28063
- /**
28064
- * Specifies whether heatmaps dissipate on zoom. By default, the radius of
28065
- * influence of a data point is specified by the radius option only. When
28066
- * dissipating is disabled, the radius option is interpreted as a radius at zoom
28067
- * level 0.
28068
- * @type {boolean|null|undefined}
28069
- */
28070
- google.maps.visualization.HeatmapLayerOptions.prototype.dissipating;
28071
-
28072
- /**
28073
- * The color gradient of the heatmap, specified as an array of CSS color
28074
- * strings. All CSS3 colors are supported except for extended named colors.
28075
- * @type {!Array<string>|null|undefined}
28076
- */
28077
- google.maps.visualization.HeatmapLayerOptions.prototype.gradient;
28078
-
28079
- /**
28080
- * The map on which to display the layer.
28081
- * @type {!google.maps.Map|null|undefined}
28082
- */
28083
- google.maps.visualization.HeatmapLayerOptions.prototype.map;
28084
-
28085
- /**
28086
- * The maximum intensity of the heatmap. By default, heatmap colors are
28087
- * dynamically scaled according to the greatest concentration of points at any
28088
- * particular pixel on the map. This property allows you to specify a fixed
28089
- * maximum.
28090
- * @type {number|null|undefined}
28091
- */
28092
- google.maps.visualization.HeatmapLayerOptions.prototype.maxIntensity;
28093
-
28094
- /**
28095
- * The opacity of the heatmap, expressed as a number between 0 and 1.
28096
- * @default <code>0.6</code>
28097
- * @type {number|null|undefined}
28098
- */
28099
- google.maps.visualization.HeatmapLayerOptions.prototype.opacity;
28100
-
28101
- /**
28102
- * The radius of influence for each data point, in pixels.
28103
- * @type {number|null|undefined}
28104
- */
28105
- google.maps.visualization.HeatmapLayerOptions.prototype.radius;
28106
-
28107
- /**
28108
- * A data point entry for a heatmap. This is a geographical data point with a
28109
- * weight attribute.
28110
- * @record
28111
- */
28112
- google.maps.visualization.WeightedLocation = function() {};
28113
-
28114
- /**
28115
- * The location of the data point.
28116
- * @type {!google.maps.LatLng}
28117
- */
28118
- google.maps.visualization.WeightedLocation.prototype.location;
28119
-
28120
- /**
28121
- * The weighting value of the data point.
28122
- * @type {number}
29610
+ * longer available in the Maps JavaScript API as of version 3.65. For more
29611
+ * info, see <a
29612
+ * href="https://developers.google.com/maps/deprecations">https://developers.google.com/maps/deprecations</a>.
28123
29613
  */
28124
- google.maps.visualization.WeightedLocation.prototype.weight;
29614
+ google.maps.visualization.HeatmapLayer = function() {};