google-closure-compiler 20260616.0.0 → 20260617.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.
@@ -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
 
@@ -7967,14 +7968,14 @@ google.maps.OverlayView.preventMapHitsFrom = function(element) {};
7967
7968
  google.maps.OverlayView.prototype.draw = function() {};
7968
7969
 
7969
7970
  /**
7970
- * @return {!google.maps.Map|!google.maps.StreetViewPanorama}
7971
+ * @return {!google.maps.Map|!google.maps.StreetViewPanorama|null|undefined}
7971
7972
  */
7972
7973
  google.maps.OverlayView.prototype.getMap = function() {};
7973
7974
 
7974
7975
  /**
7975
7976
  * Returns the panes in which this OverlayView can be rendered. The panes are
7976
7977
  * not initialized until <code>onAdd</code> is called by the API.
7977
- * @return {!google.maps.MapPanes|null}
7978
+ * @return {!google.maps.MapPanes|null|undefined}
7978
7979
  */
7979
7980
  google.maps.OverlayView.prototype.getPanes = function() {};
7980
7981
 
@@ -19642,7 +19643,7 @@ google.maps.places.AutocompletionRequest.prototype.radius;
19642
19643
  * Access by calling `const {BasicPlaceAutocompleteElement} = await
19643
19644
  * google.maps.importLibrary("places");`. See
19644
19645
  * https://developers.google.com/maps/documentation/javascript/libraries.
19645
- * @param {!google.maps.places.BasicPlaceAutocompleteElementOptions} options
19646
+ * @param {!google.maps.places.BasicPlaceAutocompleteElementOptions=} options
19646
19647
  * @implements {google.maps.places.BasicPlaceAutocompleteElementOptions}
19647
19648
  * @extends {HTMLElement}
19648
19649
  * @constructor
@@ -19917,11 +19918,9 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype
19917
19918
  google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.unitSystem;
19918
19919
 
19919
19920
  /**
19920
- * The operational status of the Place, if it is a business, returned in a
19921
- * PlaceResult (indicates whether the place is operational, or closed either
19922
- * temporarily or permanently). Specify these by value, or the constant&#39;s
19923
- * name (example: <code>&#39;OPERATIONAL&#39;</code> or
19924
- * <code>google.maps.places.BusinessStatus.OPERATIONAL</code>).
19921
+ * Business status for the place. See the <a
19922
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
19923
+ * service documentation</a> for more information.
19925
19924
  *
19926
19925
  * Access by calling `const {BusinessStatus} = await
19927
19926
  * google.maps.importLibrary("places");`. See
@@ -19930,19 +19929,27 @@ google.maps.places.BasicPlaceAutocompleteElementOptions.prototype.unitSystem;
19930
19929
  */
19931
19930
  google.maps.places.BusinessStatus = {
19932
19931
  /**
19933
- * The business is closed permanently.
19932
+ * The establishment is permanently closed. See the <a
19933
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
19934
+ * service documentation</a> for more information.
19934
19935
  */
19935
19936
  CLOSED_PERMANENTLY: 'CLOSED_PERMANENTLY',
19936
19937
  /**
19937
- * The business is closed temporarily.
19938
+ * The establishment is temporarily closed. See the <a
19939
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
19940
+ * service documentation</a> for more information.
19938
19941
  */
19939
19942
  CLOSED_TEMPORARILY: 'CLOSED_TEMPORARILY',
19940
19943
  /**
19941
- * The business will open in the future.
19944
+ * The establishment will open in the future. See the <a
19945
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
19946
+ * service documentation</a> for more information.
19942
19947
  */
19943
19948
  FUTURE_OPENING: 'FUTURE_OPENING',
19944
19949
  /**
19945
- * The business is operating normally.
19950
+ * The establishment is operational, not necessarily open now. See the <a
19951
+ * href="https://developers.google.com/maps/documentation/javascript/reference/places-service#BusinessStatus">web
19952
+ * service documentation</a> for more information.
19946
19953
  */
19947
19954
  OPERATIONAL: 'OPERATIONAL',
19948
19955
  };
@@ -20076,6 +20083,9 @@ google.maps.places.ConsumerAlertDetails.prototype.title;
20076
20083
 
20077
20084
  /**
20078
20085
  * Defines the spatial relationship between the target location and the area.
20086
+ * See the <a
20087
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20088
+ * service documentation</a> for more information.
20079
20089
  *
20080
20090
  * Access by calling `const {Containment} = await
20081
20091
  * google.maps.importLibrary("places");`. See
@@ -20084,15 +20094,23 @@ google.maps.places.ConsumerAlertDetails.prototype.title;
20084
20094
  */
20085
20095
  google.maps.places.Containment = {
20086
20096
  /**
20087
- * The target location is outside the area region, but close by.
20097
+ * The target location is outside the area region, but close by. See the <a
20098
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20099
+ * service documentation</a> for more information.
20088
20100
  */
20089
20101
  NEAR: 'NEAR',
20090
20102
  /**
20091
- * The target location is within the area region, close to the edge.
20103
+ * The target location is within the area region, close to the edge. See the
20104
+ * <a
20105
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20106
+ * service documentation</a> for more information.
20092
20107
  */
20093
20108
  OUTSKIRTS: 'OUTSKIRTS',
20094
20109
  /**
20095
- * The target location is within the area region, close to the center.
20110
+ * The target location is within the area region, close to the center. See the
20111
+ * <a
20112
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#containment">web
20113
+ * service documentation</a> for more information.
20096
20114
  */
20097
20115
  WITHIN: 'WITHIN',
20098
20116
  };
@@ -20206,7 +20224,11 @@ google.maps.places.EVChargeOptions.prototype.connectorAggregations;
20206
20224
  google.maps.places.EVChargeOptions.prototype.connectorCount;
20207
20225
 
20208
20226
  /**
20209
- * EV charging connector types.
20227
+ * See <a
20228
+ * href="http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6872107">http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6872107</a>
20229
+ * for additional information/context on EV charging connector types. See the <a
20230
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20231
+ * service documentation</a> for more information.
20210
20232
  *
20211
20233
  * Access by calling `const {EVConnectorType} = await
20212
20234
  * google.maps.importLibrary("places");`. See
@@ -20215,48 +20237,64 @@ google.maps.places.EVChargeOptions.prototype.connectorCount;
20215
20237
  */
20216
20238
  google.maps.places.EVConnectorType = {
20217
20239
  /**
20218
- * Combined Charging System (AC and DC). Based on SAE Type-1 J-1772 connector.
20240
+ * Combined Charging System (AC and DC). See the <a
20241
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20242
+ * service documentation</a> for more information.
20219
20243
  */
20220
20244
  CCS_COMBO_1: 'CCS_COMBO_1',
20221
20245
  /**
20222
- * Combined Charging System (AC and DC). Based on Type-2 Mennekes connector.
20246
+ * Combined Charging System (AC and DC). See the <a
20247
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20248
+ * service documentation</a> for more information.
20223
20249
  */
20224
20250
  CCS_COMBO_2: 'CCS_COMBO_2',
20225
20251
  /**
20226
- * CHAdeMO type connector.
20252
+ * CHAdeMO type connector. See the <a
20253
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20254
+ * service documentation</a> for more information.
20227
20255
  */
20228
20256
  CHADEMO: 'CHADEMO',
20229
20257
  /**
20230
- * J1772 type 1 connector.
20258
+ * J1772 type 1 connector. See the <a
20259
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20260
+ * service documentation</a> for more information.
20231
20261
  */
20232
20262
  J1772: 'J1772',
20233
20263
  /**
20234
- * The North American Charging System (NACS), standardized as SAE J3400.
20264
+ * The North American Charging System (NACS), standardized as SAE J3400. See
20265
+ * the <a
20266
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20267
+ * service documentation</a> for more information.
20235
20268
  */
20236
20269
  NACS: 'NACS',
20237
20270
  /**
20238
- * Other connector types.
20271
+ * Other connector types. See the <a
20272
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20273
+ * service documentation</a> for more information.
20239
20274
  */
20240
20275
  OTHER: 'OTHER',
20241
20276
  /**
20242
- * The generic TESLA connector. This is NACS in the North America but can be
20243
- * non-NACS in other parts of the world (e.g. CCS Combo 2 (CCS2) or GB/T).
20244
- * This value is less representative of an actual connector type, and more
20245
- * represents the ability to charge a Tesla brand vehicle at a Tesla owned
20246
- * charging station.
20277
+ * The generic TESLA connector. See the <a
20278
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20279
+ * service documentation</a> for more information.
20247
20280
  */
20248
20281
  TESLA: 'TESLA',
20249
20282
  /**
20250
- * IEC 62196 type 2 connector. Often referred to as MENNEKES.
20283
+ * IEC 62196 type 2 connector. See the <a
20284
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20285
+ * service documentation</a> for more information.
20251
20286
  */
20252
20287
  TYPE_2: 'TYPE_2',
20253
20288
  /**
20254
- * GB/T type corresponds to the GB/T standard in China. This type covers all
20255
- * GB_T types.
20289
+ * GB/T type corresponds to the GB/T standard in China. See the <a
20290
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20291
+ * service documentation</a> for more information.
20256
20292
  */
20257
20293
  UNSPECIFIED_GB_T: 'UNSPECIFIED_GB_T',
20258
20294
  /**
20259
- * Unspecified wall outlet.
20295
+ * Unspecified wall outlet. See the <a
20296
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#evconnectortype">web
20297
+ * service documentation</a> for more information.
20260
20298
  */
20261
20299
  UNSPECIFIED_WALL_OUTLET: 'UNSPECIFIED_WALL_OUTLET',
20262
20300
  };
@@ -20467,7 +20505,9 @@ google.maps.places.FuelPrice.prototype.type;
20467
20505
  google.maps.places.FuelPrice.prototype.updateTime;
20468
20506
 
20469
20507
  /**
20470
- * Types of fuel.
20508
+ * Types of fuel. See the <a
20509
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20510
+ * service documentation</a> for more information.
20471
20511
  *
20472
20512
  * Access by calling `const {FuelType} = await
20473
20513
  * google.maps.importLibrary("places");`. See
@@ -20476,83 +20516,123 @@ google.maps.places.FuelPrice.prototype.updateTime;
20476
20516
  */
20477
20517
  google.maps.places.FuelType = {
20478
20518
  /**
20479
- * Bio-diesel.
20519
+ * Bio-diesel. See the <a
20520
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20521
+ * service documentation</a> for more information.
20480
20522
  */
20481
20523
  BIO_DIESEL: 'BIO_DIESEL',
20482
20524
  /**
20483
- * Diesel fuel.
20525
+ * Diesel fuel. See the <a
20526
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20527
+ * service documentation</a> for more information.
20484
20528
  */
20485
20529
  DIESEL: 'DIESEL',
20486
20530
  /**
20487
- * Diesel plus fuel.
20531
+ * Diesel plus fuel. See the <a
20532
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20533
+ * service documentation</a> for more information.
20488
20534
  */
20489
20535
  DIESEL_PLUS: 'DIESEL_PLUS',
20490
20536
  /**
20491
- * E 100.
20537
+ * E 100. See the <a
20538
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20539
+ * service documentation</a> for more information.
20492
20540
  */
20493
20541
  E100: 'E100',
20494
20542
  /**
20495
- * E 80.
20543
+ * E 80. See the <a
20544
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20545
+ * service documentation</a> for more information.
20496
20546
  */
20497
20547
  E80: 'E80',
20498
20548
  /**
20499
- * E 85.
20549
+ * E 85. See the <a
20550
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20551
+ * service documentation</a> for more information.
20500
20552
  */
20501
20553
  E85: 'E85',
20502
20554
  /**
20503
- * LPG.
20555
+ * Liquefied Petroleum Gas. See the <a
20556
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20557
+ * service documentation</a> for more information.
20504
20558
  */
20505
20559
  LPG: 'LPG',
20506
20560
  /**
20507
- * Methane.
20561
+ * Methane. See the <a
20562
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20563
+ * service documentation</a> for more information.
20508
20564
  */
20509
20565
  METHANE: 'METHANE',
20510
20566
  /**
20511
- * Midgrade.
20567
+ * Midgrade. See the <a
20568
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20569
+ * service documentation</a> for more information.
20512
20570
  */
20513
20571
  MIDGRADE: 'MIDGRADE',
20514
20572
  /**
20515
- * Premium.
20573
+ * Premium. See the <a
20574
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20575
+ * service documentation</a> for more information.
20516
20576
  */
20517
20577
  PREMIUM: 'PREMIUM',
20518
20578
  /**
20519
- * Regular unleaded.
20579
+ * Regular unleaded. See the <a
20580
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20581
+ * service documentation</a> for more information.
20520
20582
  */
20521
20583
  REGULAR_UNLEADED: 'REGULAR_UNLEADED',
20522
20584
  /**
20523
- * SP 100.
20585
+ * SP 100. See the <a
20586
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20587
+ * service documentation</a> for more information.
20524
20588
  */
20525
20589
  SP100: 'SP100',
20526
20590
  /**
20527
- * SP 91.
20591
+ * SP 91. See the <a
20592
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20593
+ * service documentation</a> for more information.
20528
20594
  */
20529
20595
  SP91: 'SP91',
20530
20596
  /**
20531
- * SP 91 E10.
20597
+ * SP 91 E10. See the <a
20598
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20599
+ * service documentation</a> for more information.
20532
20600
  */
20533
20601
  SP91_E10: 'SP91_E10',
20534
20602
  /**
20535
- * SP 92.
20603
+ * SP 92. See the <a
20604
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20605
+ * service documentation</a> for more information.
20536
20606
  */
20537
20607
  SP92: 'SP92',
20538
20608
  /**
20539
- * SP 95.
20609
+ * SP 95. See the <a
20610
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20611
+ * service documentation</a> for more information.
20540
20612
  */
20541
20613
  SP95: 'SP95',
20542
20614
  /**
20543
- * SP95 E10.
20615
+ * SP95 E10. See the <a
20616
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20617
+ * service documentation</a> for more information.
20544
20618
  */
20545
20619
  SP95_E10: 'SP95_E10',
20546
20620
  /**
20547
- * SP 98.
20621
+ * SP 98. See the <a
20622
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20623
+ * service documentation</a> for more information.
20548
20624
  */
20549
20625
  SP98: 'SP98',
20550
20626
  /**
20551
- * SP 99.
20627
+ * SP 99. See the <a
20628
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20629
+ * service documentation</a> for more information.
20552
20630
  */
20553
20631
  SP99: 'SP99',
20554
20632
  /**
20555
- * Truck diesel.
20633
+ * Truck diesel. See the <a
20634
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#fueltype">web
20635
+ * service documentation</a> for more information.
20556
20636
  */
20557
20637
  TRUCK_DIESEL: 'TRUCK_DIESEL',
20558
20638
  };
@@ -21845,7 +21925,7 @@ google.maps.places.PlaceAttributionElementOptions.prototype.lightSchemeColor;
21845
21925
  * Access by calling `const {PlaceAutocompleteElement} = await
21846
21926
  * google.maps.importLibrary("places");`. See
21847
21927
  * https://developers.google.com/maps/documentation/javascript/libraries.
21848
- * @param {!google.maps.places.PlaceAutocompleteElementOptions} options
21928
+ * @param {!google.maps.places.PlaceAutocompleteElementOptions=} options
21849
21929
  * @implements {google.maps.places.PlaceAutocompleteElementOptions}
21850
21930
  * @extends {HTMLElement}
21851
21931
  * @constructor
@@ -24715,7 +24795,9 @@ google.maps.places.PredictionTerm.prototype.offset;
24715
24795
  google.maps.places.PredictionTerm.prototype.value;
24716
24796
 
24717
24797
  /**
24718
- * Price level for a Place.
24798
+ * Price level of the place. See the <a
24799
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
24800
+ * service documentation</a> for more information.
24719
24801
  *
24720
24802
  * Access by calling `const {PriceLevel} = await
24721
24803
  * google.maps.importLibrary("places");`. See
@@ -24723,10 +24805,35 @@ google.maps.places.PredictionTerm.prototype.value;
24723
24805
  * @enum {string}
24724
24806
  */
24725
24807
  google.maps.places.PriceLevel = {
24808
+ /**
24809
+ * Place provides expensive services. See the <a
24810
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
24811
+ * service documentation</a> for more information.
24812
+ */
24726
24813
  EXPENSIVE: 'EXPENSIVE',
24814
+ /**
24815
+ * Place provides free services. See the <a
24816
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
24817
+ * service documentation</a> for more information.
24818
+ */
24727
24819
  FREE: 'FREE',
24820
+ /**
24821
+ * Place provides inexpensive services. See the <a
24822
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
24823
+ * service documentation</a> for more information.
24824
+ */
24728
24825
  INEXPENSIVE: 'INEXPENSIVE',
24826
+ /**
24827
+ * Place provides moderately priced services. See the <a
24828
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
24829
+ * service documentation</a> for more information.
24830
+ */
24729
24831
  MODERATE: 'MODERATE',
24832
+ /**
24833
+ * Place provides very expensive services. See the <a
24834
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#pricelevel">web
24835
+ * service documentation</a> for more information.
24836
+ */
24730
24837
  VERY_EXPENSIVE: 'VERY_EXPENSIVE',
24731
24838
  };
24732
24839
 
@@ -25047,7 +25154,9 @@ google.maps.places.SearchBoxOptions = function() {};
25047
25154
  google.maps.places.SearchBoxOptions.prototype.bounds;
25048
25155
 
25049
25156
  /**
25050
- * RankPreference enum for SearchByTextRequest.
25157
+ * How results will be ranked in the response. See the <a
25158
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference_1">web
25159
+ * service documentation</a> for more information.
25051
25160
  *
25052
25161
  * Access by calling `const {SearchByTextRankPreference} = await
25053
25162
  * google.maps.importLibrary("places");`. See
@@ -25056,11 +25165,15 @@ google.maps.places.SearchBoxOptions.prototype.bounds;
25056
25165
  */
25057
25166
  google.maps.places.SearchByTextRankPreference = {
25058
25167
  /**
25059
- * Ranks results by distance.
25168
+ * Ranks results by distance. See the <a
25169
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference_1">web
25170
+ * service documentation</a> for more information.
25060
25171
  */
25061
25172
  DISTANCE: 'DISTANCE',
25062
25173
  /**
25063
- * Ranks results by relevance.
25174
+ * Ranks results by relevance. See the <a
25175
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference_1">web
25176
+ * service documentation</a> for more information.
25064
25177
  */
25065
25178
  RELEVANCE: 'RELEVANCE',
25066
25179
  };
@@ -25229,7 +25342,9 @@ google.maps.places.SearchByTextRequest.prototype.query;
25229
25342
  google.maps.places.SearchByTextRequest.prototype.rankBy;
25230
25343
 
25231
25344
  /**
25232
- * RankPreference enum for SearchNearbyRequest.
25345
+ * How results will be ranked in the response. See the <a
25346
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference">web
25347
+ * service documentation</a> for more information.
25233
25348
  *
25234
25349
  * Access by calling `const {SearchNearbyRankPreference} = await
25235
25350
  * google.maps.importLibrary("places");`. See
@@ -25238,11 +25353,15 @@ google.maps.places.SearchByTextRequest.prototype.rankBy;
25238
25353
  */
25239
25354
  google.maps.places.SearchNearbyRankPreference = {
25240
25355
  /**
25241
- * Ranks results by distance.
25356
+ * Ranks results by distance. See the <a
25357
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference">web
25358
+ * service documentation</a> for more information.
25242
25359
  */
25243
25360
  DISTANCE: 'DISTANCE',
25244
25361
  /**
25245
- * Ranks results by popularity.
25362
+ * Ranks results by popularity. See the <a
25363
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#rankpreference">web
25364
+ * service documentation</a> for more information.
25246
25365
  */
25247
25366
  POPULARITY: 'POPULARITY',
25248
25367
  };
@@ -25388,7 +25507,10 @@ google.maps.places.SecondaryOpeningHours = function() {};
25388
25507
  google.maps.places.SecondaryOpeningHours.prototype.type;
25389
25508
 
25390
25509
  /**
25391
- * Defines the spatial relationship between the target location and the landmark
25510
+ * Defines the spatial relationship between the target location and the
25511
+ * landmark. See the <a
25512
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25513
+ * service documentation</a> for more information.
25392
25514
  *
25393
25515
  * Access by calling `const {SpatialRelationship} = await
25394
25516
  * google.maps.importLibrary("places");`. See
@@ -25398,31 +25520,48 @@ google.maps.places.SecondaryOpeningHours.prototype.type;
25398
25520
  google.maps.places.SpatialRelationship = {
25399
25521
  /**
25400
25522
  * The target is directly opposite the landmark on the other side of the road.
25523
+ * See the <a
25524
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25525
+ * service documentation</a> for more information.
25401
25526
  */
25402
25527
  ACROSS_THE_ROAD: 'ACROSS_THE_ROAD',
25403
25528
  /**
25404
- * Not on the same route as the landmark but a single turn away.
25529
+ * Not on the same route as the landmark but a single turn away. See the <a
25530
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25531
+ * service documentation</a> for more information.
25405
25532
  */
25406
25533
  AROUND_THE_CORNER: 'AROUND_THE_CORNER',
25407
25534
  /**
25408
25535
  * Close to the landmark&#39;s structure but further away from its street
25409
- * entrances.
25536
+ * entrances. See the <a
25537
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25538
+ * service documentation</a> for more information.
25410
25539
  */
25411
25540
  BEHIND: 'BEHIND',
25412
25541
  /**
25413
- * The target is directly adjacent to the landmark.
25542
+ * The target is directly adjacent to the landmark. See the <a
25543
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25544
+ * service documentation</a> for more information.
25414
25545
  */
25415
25546
  BESIDE: 'BESIDE',
25416
25547
  /**
25417
- * On the same route as the landmark but not besides or across.
25548
+ * On the same route as the landmark but not besides or across. See the <a
25549
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25550
+ * service documentation</a> for more information.
25418
25551
  */
25419
25552
  DOWN_THE_ROAD: 'DOWN_THE_ROAD',
25420
25553
  /**
25421
- * The default relationship when nothing more specific below applies.
25554
+ * This is the default relationship when nothing more specific below applies.
25555
+ * See the <a
25556
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25557
+ * service documentation</a> for more information.
25422
25558
  */
25423
25559
  NEAR: 'NEAR',
25424
25560
  /**
25425
25561
  * The landmark has a spatial geometry and the target is within its bounds.
25562
+ * See the <a
25563
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#spatialrelationship">web
25564
+ * service documentation</a> for more information.
25426
25565
  */
25427
25566
  WITHIN: 'WITHIN',
25428
25567
  };
@@ -25863,7 +26002,9 @@ google.maps.places.TransitStop.prototype.stopCode;
25863
26002
  google.maps.places.TransitStop.prototype.stopCodeLanguageCode;
25864
26003
 
25865
26004
  /**
25866
- * The type of a transit vehicle.
26005
+ * The type of vehicle for a transit line. See the <a
26006
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26007
+ * service documentation</a> for more information.
25867
26008
  *
25868
26009
  * Access by calling `const {TransitVehicleType} = await
25869
26010
  * google.maps.importLibrary("places");`. See
@@ -25872,87 +26013,129 @@ google.maps.places.TransitStop.prototype.stopCodeLanguageCode;
25872
26013
  */
25873
26014
  google.maps.places.TransitVehicleType = {
25874
26015
  /**
25875
- * Airplane.
26016
+ * Airplane. See the <a
26017
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26018
+ * service documentation</a> for more information.
25876
26019
  */
25877
26020
  AIRPLANE: 'AIRPLANE',
25878
26021
  /**
25879
- * Bus.
26022
+ * Bus. See the <a
26023
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26024
+ * service documentation</a> for more information.
25880
26025
  */
25881
26026
  BUS: 'BUS',
25882
26027
  /**
25883
- * Cable car.
26028
+ * Cable car. See the <a
26029
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26030
+ * service documentation</a> for more information.
25884
26031
  */
25885
26032
  CABLE_CAR: 'CABLE_CAR',
25886
26033
  /**
25887
- * Coach.
26034
+ * Coach. See the <a
26035
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26036
+ * service documentation</a> for more information.
25888
26037
  */
25889
26038
  COACH: 'COACH',
25890
26039
  /**
25891
- * Commuter train.
26040
+ * Commuter train. See the <a
26041
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26042
+ * service documentation</a> for more information.
25892
26043
  */
25893
26044
  COMMUTER_TRAIN: 'COMMUTER_TRAIN',
25894
26045
  /**
25895
- * Ferry.
26046
+ * Ferry. See the <a
26047
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26048
+ * service documentation</a> for more information.
25896
26049
  */
25897
26050
  FERRY: 'FERRY',
25898
26051
  /**
25899
- * Funicular.
26052
+ * Funicular. See the <a
26053
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26054
+ * service documentation</a> for more information.
25900
26055
  */
25901
26056
  FUNICULAR: 'FUNICULAR',
25902
26057
  /**
25903
- * Gondola lift.
26058
+ * Gondola lift. See the <a
26059
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26060
+ * service documentation</a> for more information.
25904
26061
  */
25905
26062
  GONDOLA_LIFT: 'GONDOLA_LIFT',
25906
26063
  /**
25907
- * Heavy rail.
26064
+ * Heavy rail. See the <a
26065
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26066
+ * service documentation</a> for more information.
25908
26067
  */
25909
26068
  HEAVY_RAIL: 'HEAVY_RAIL',
25910
26069
  /**
25911
- * High speed train.
26070
+ * High speed train. See the <a
26071
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26072
+ * service documentation</a> for more information.
25912
26073
  */
25913
26074
  HIGH_SPEED_TRAIN: 'HIGH_SPEED_TRAIN',
25914
26075
  /**
25915
- * Horse carriage.
26076
+ * Horse carriage. See the <a
26077
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26078
+ * service documentation</a> for more information.
25916
26079
  */
25917
26080
  HORSE_CARRIAGE: 'HORSE_CARRIAGE',
25918
26081
  /**
25919
- * Intercity bus.
26082
+ * Intercity bus. See the <a
26083
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26084
+ * service documentation</a> for more information.
25920
26085
  */
25921
26086
  INTERCITY_BUS: 'INTERCITY_BUS',
25922
26087
  /**
25923
- * Long distance train.
26088
+ * Long distance train. See the <a
26089
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26090
+ * service documentation</a> for more information.
25924
26091
  */
25925
26092
  LONG_DISTANCE_TRAIN: 'LONG_DISTANCE_TRAIN',
25926
26093
  /**
25927
- * Metro rail.
26094
+ * Metro rail. See the <a
26095
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26096
+ * service documentation</a> for more information.
25928
26097
  */
25929
26098
  METRO_RAIL: 'METRO_RAIL',
25930
26099
  /**
25931
- * Monorail.
26100
+ * Monorail. See the <a
26101
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26102
+ * service documentation</a> for more information.
25932
26103
  */
25933
26104
  MONORAIL: 'MONORAIL',
25934
26105
  /**
25935
- * Rail.
26106
+ * Rail. See the <a
26107
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26108
+ * service documentation</a> for more information.
25936
26109
  */
25937
26110
  RAIL: 'RAIL',
25938
26111
  /**
25939
- * Share taxi.
26112
+ * Share taxi. See the <a
26113
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26114
+ * service documentation</a> for more information.
25940
26115
  */
25941
26116
  SHARE_TAXI: 'SHARE_TAXI',
25942
26117
  /**
25943
- * Special.
26118
+ * Special. See the <a
26119
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26120
+ * service documentation</a> for more information.
25944
26121
  */
25945
26122
  SPECIAL: 'SPECIAL',
25946
26123
  /**
25947
- * Subway.
26124
+ * Subway. See the <a
26125
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26126
+ * service documentation</a> for more information.
25948
26127
  */
25949
26128
  SUBWAY: 'SUBWAY',
25950
26129
  /**
25951
- * Tram.
26130
+ * Tram. See the <a
26131
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26132
+ * service documentation</a> for more information.
25952
26133
  */
25953
26134
  TRAM: 'TRAM',
25954
26135
  /**
25955
- * Trolleybus.
26136
+ * Trolleybus. See the <a
26137
+ * href="https://developers.google.com/maps/documentation/places/web-service/reference/rpc/google.maps.places.v1#vehicletype">web
26138
+ * service documentation</a> for more information.
25956
26139
  */
25957
26140
  TROLLEYBUS: 'TROLLEYBUS',
25958
26141
  };