Skip to content

Commit 1548d63

Browse files
chore: sync changes for Maps JS API v3.54.11.
PiperOrigin-RevId: 577028649
1 parent a1cd810 commit 1548d63

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

index.d.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5695,6 +5695,15 @@ declare namespace google.maps {
56955695
* Otherwise, it will be displayed separately.
56965696
*/
56975697
position?: google.maps.ControlPosition|null;
5698+
/**
5699+
* Specifies the sources of panoramas to search. This allows a restriction
5700+
* to search for just official Google panoramas for example. Setting
5701+
* multiple sources will be evaluated as the intersection of those sources.
5702+
* Note: the {@link google.maps.StreetViewSource.OUTDOOR} source is not
5703+
* supported at this time.
5704+
* @defaultValue [{@link google.maps.StreetViewSource.DEFAULT}]
5705+
*/
5706+
sources?: Iterable<google.maps.StreetViewSource>|null;
56985707
}
56995708
/**
57005709
* A layer that illustrates the locations where Street View is available.
@@ -5789,8 +5798,16 @@ declare namespace google.maps {
57895798
* Specifies the source of panoramas to search. This allows a restriction to
57905799
* search for just outdoor panoramas for example.
57915800
* @defaultValue {@link google.maps.StreetViewSource.DEFAULT}
5801+
* @deprecated Use <code>sources</code> instead.
57925802
*/
57935803
source?: google.maps.StreetViewSource|null;
5804+
/**
5805+
* Specifies the sources of panoramas to search. This allows a restriction
5806+
* to search for just outdoor panoramas for example. Setting multiple
5807+
* sources will be evaluated as the intersection of those sources.
5808+
* @defaultValue [{@link google.maps.StreetViewSource.DEFAULT}]
5809+
*/
5810+
sources?: Iterable<google.maps.StreetViewSource>|null;
57945811
}
57955812
/**
57965813
* A <code>StreetViewPanoRequest</code> is used with the
@@ -6192,6 +6209,10 @@ declare namespace google.maps {
61926209
* specific sources.
61936210
*/
61946211
DEFAULT = 'default',
6212+
/**
6213+
* Limits Street View searches to official Google collections.
6214+
*/
6215+
GOOGLE = 'google',
61956216
/**
61966217
* Limits Street View searches to outdoor collections. Indoor collections
61976218
* are not included in search results. Note also that the search only

0 commit comments

Comments
 (0)