@@ -1986,7 +1986,7 @@ google.maps.DirectionsLeg.prototype.via_waypoints;
1986
1986
1987
1987
/**
1988
1988
* Information about traffic speed along the leg.
1989
- * @type {!Array<? >}
1989
+ * @type {!Array<* >}
1990
1990
* @deprecated This array will always be empty.
1991
1991
*/
1992
1992
google.maps.DirectionsLeg.prototype.traffic_speed_entry;
@@ -18982,8 +18982,6 @@ google.maps.places.PlaceAspectRating.prototype.rating;
18982
18982
google.maps.places.PlaceAspectRating.prototype.type;
18983
18983
18984
18984
/**
18985
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
18986
- *
18987
18985
* PlaceAutocompleteElement is an <code>HTMLElement</code> subclass which
18988
18986
* provides a UI component for the Places Autocomplete API. <br/><br/>
18989
18987
* PlaceAutocompleteElement automatically uses {@link
@@ -19008,7 +19006,6 @@ google.maps.places.PlaceAspectRating.prototype.type;
19008
19006
google.maps.places.PlaceAutocompleteElement = function(options) {};
19009
19007
19010
19008
/**
19011
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19012
19009
* Included primary <a
19013
19010
* href="https://developers.google.com/maps/documentation/places/javascript/place-types">Place
19014
19011
* type</a> (for example, "restaurant" or "gas_station").
@@ -19020,7 +19017,6 @@ google.maps.places.PlaceAutocompleteElement = function(options) {};
19020
19017
google.maps.places.PlaceAutocompleteElement.prototype.includedPrimaryTypes;
19021
19018
19022
19019
/**
19023
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19024
19020
* Only include results in the specified regions, specified as up to 15 CLDR
19025
19021
* two-character region codes. An empty set will not restrict the results. If
19026
19022
* both <code>locationRestriction</code> and <code>includedRegionCodes</code>
@@ -19053,7 +19049,6 @@ google.maps.places.PlaceAutocompleteElement.prototype.locationRestriction;
19053
19049
google.maps.places.PlaceAutocompleteElement.prototype.name;
19054
19050
19055
19051
/**
19056
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19057
19052
* The origin from which to calculate distance. If not specified, distance is
19058
19053
* not calculated. The altitude, if given, is not used in the calculation.
19059
19054
* @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
@@ -19085,65 +19080,22 @@ google.maps.places.PlaceAutocompleteElement.prototype.requestedLanguage;
19085
19080
google.maps.places.PlaceAutocompleteElement.prototype.requestedRegion;
19086
19081
19087
19082
/**
19088
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19089
19083
* The unit system used to display distances. If not specified, the unit system
19090
19084
* is determined by requestedRegion.
19091
19085
* @type {!google.maps.UnitSystem|null|undefined}
19092
19086
*/
19093
19087
google.maps.places.PlaceAutocompleteElement.prototype.unitSystem;
19094
19088
19095
- /**
19096
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19097
- * The component restrictions. Component restrictions are used to restrict
19098
- * predictions to only those within the parent component. For example, the
19099
- * country.
19100
- * @type {!google.maps.places.ComponentRestrictions|null}
19101
- * @deprecated This property will continue to function in the beta channel, but
19102
- * will not be made available in alpha or at release. For migration
19103
- * purposes, specify both this property and <code>includeRegionCodes</code>.
19104
- */
19105
- google.maps.places.PlaceAutocompleteElement.prototype.componentRestrictions;
19106
-
19107
- /**
19108
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19109
- * The types of predictions to be returned. For supported types, see the <a
19110
- * href="https://developers.google.com/maps/documentation/javascript/places-autocomplete#constrain-place-types">
19111
- * developer's guide</a>. If no types are specified, all types will be
19112
- * returned.
19113
- * @type {!Array<string>|null}
19114
- * @deprecated This property will continue to function in the beta channel, but
19115
- * will not be made available in alpha or at release. For migration
19116
- * purposes, specify both this property and
19117
- * <code>includedPrimaryTypes</code>.
19118
- */
19119
- google.maps.places.PlaceAutocompleteElement.prototype.types;
19120
-
19121
19089
19122
19090
19123
19091
/**
19124
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19125
- *
19126
19092
* Options for constructing a PlaceAutocompleteElement. For the description of
19127
19093
* each property, refer to the property of the same name in the
19128
19094
* PlaceAutocompleteElement class.
19129
19095
* @record
19130
19096
*/
19131
19097
google.maps.places.PlaceAutocompleteElementOptions = function() {};
19132
19098
19133
- /**
19134
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19135
- * @type {!Array<string>|null|undefined}
19136
- */
19137
- google.maps.places.PlaceAutocompleteElementOptions.prototype
19138
- .includedPrimaryTypes;
19139
-
19140
- /**
19141
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19142
- * @type {!Array<string>|null|undefined}
19143
- */
19144
- google.maps.places.PlaceAutocompleteElementOptions.prototype
19145
- .includedRegionCodes;
19146
-
19147
19099
/**
19148
19100
* @type {!google.maps.places.LocationBias|null|undefined}
19149
19101
*/
@@ -19160,70 +19112,11 @@ google.maps.places.PlaceAutocompleteElementOptions.prototype
19160
19112
*/
19161
19113
google.maps.places.PlaceAutocompleteElementOptions.prototype.name;
19162
19114
19163
- /**
19164
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19165
- * @type {!google.maps.LatLng|!google.maps.LatLngLiteral|!google.maps.LatLngAltitude|!google.maps.LatLngAltitudeLiteral|null|undefined}
19166
- */
19167
- google.maps.places.PlaceAutocompleteElementOptions.prototype.origin;
19168
-
19169
19115
/**
19170
19116
* @type {string|null|undefined}
19171
19117
*/
19172
19118
google.maps.places.PlaceAutocompleteElementOptions.prototype.requestedLanguage;
19173
19119
19174
- /**
19175
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19176
- * @type {!google.maps.UnitSystem|null|undefined}
19177
- */
19178
- google.maps.places.PlaceAutocompleteElementOptions.prototype.unitSystem;
19179
-
19180
- /**
19181
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19182
- * @type {!google.maps.places.ComponentRestrictions|null|undefined}
19183
- * @deprecated This property will continue to function in the beta channel, but
19184
- * will not be made available in alpha or at release. For migration
19185
- * purposes, specify both this property and
19186
- * <code>includedRegionCodes</code>.
19187
- */
19188
- google.maps.places.PlaceAutocompleteElementOptions.prototype
19189
- .componentRestrictions;
19190
-
19191
- /**
19192
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19193
- * @type {!Array<string>|null|undefined}
19194
- * @deprecated This property will continue to function in the beta channel, but
19195
- * will not be made available in alpha or at release. For migration
19196
- * purposes, specify both this property and
19197
- * <code>includedPrimaryTypes</code>.
19198
- */
19199
- google.maps.places.PlaceAutocompleteElementOptions.prototype.types;
19200
-
19201
- /**
19202
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19203
- *
19204
- * This event is created after the user selects a place with the Place
19205
- * Autocomplete Element. Access the selection with <code>event.place</code>.
19206
- *
19207
- * Access by calling `const {PlaceAutocompletePlaceSelectEvent} = await
19208
- * google.maps.importLibrary("places")`. See
19209
- * https://developers.google.com/maps/documentation/javascript/libraries.
19210
- * @extends {Event}
19211
- * @constructor
19212
- * @deprecated The <code>gmp-placeselect</code> event will continue to trigger
19213
- * in the beta channel, but will not trigger in alpha or at release. For
19214
- * migration purposes, continue to listen to the
19215
- * <code>gmp-placeselect</code> event, but also add an event listener for
19216
- * the <code>gmp-select</code> event, which returns a
19217
- * <code>PlacePredictionSelectEvent</code> object.
19218
- */
19219
- google.maps.places.PlaceAutocompletePlaceSelectEvent = function() {};
19220
-
19221
- /**
19222
- * Available only in the v=beta channel: https://goo.gle/3oAthT3.
19223
- * @type {!google.maps.places.Place}
19224
- */
19225
- google.maps.places.PlaceAutocompletePlaceSelectEvent.prototype.place;
19226
-
19227
19120
/**
19228
19121
* Available only in the v=beta channel: https://goo.gle/3oAthT3.
19229
19122
*
@@ -19811,8 +19704,6 @@ google.maps.places.PlacePrediction.prototype.types;
19811
19704
google.maps.places.PlacePrediction.prototype.toPlace = function() {};
19812
19705
19813
19706
/**
19814
- * Available only in the v=alpha channel: https://goo.gle/js-alpha-channel.
19815
- *
19816
19707
* This event is created after the user selects a prediction item with the
19817
19708
* PlaceAutocompleteElement. Access the selection with
19818
19709
* <code>event.placePrediction</code>. <br/><br/> Convert placePrediction to
0 commit comments