Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/google.maps/google.maps-tests.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// No tests required for generated types
// Synced from: https://github.com/googlemaps/js-types/commit/9a25dc1828a7b5b07410242445a8bd8332f48a99
// Synced from: https://github.com/googlemaps/js-types/commit/acf9a4df7cebefd761a67b9ac4456a14a64bfb4b
google.maps.Map;
14 changes: 10 additions & 4 deletions types/google.maps/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13790,6 +13790,16 @@ declare namespace google.maps.places {
* @defaultValue <code>undefined</code>
*/
actionAriaLabel?: string;
/**
* Whether the default icon is hidden for all link types except custom.
* @defaultValue <code>false</code>
*/
get defaultIconHidden(): boolean;
/**
* Whether the default icon is hidden for all link types except custom.
* @defaultValue <code>false</code>
*/
set defaultIconHidden(value: boolean | null | undefined);
/**
* The URL to open when the link is clicked. This is only used when the <code>action</code> attribute is set to <code>custom</code>.
* @defaultValue <code>undefined</code>
Expand Down Expand Up @@ -17152,10 +17162,6 @@ declare namespace google.maps.routes {
* Options for creating route 3D polylines.
*/
export interface RoutePolyline3DOptions {
/**
* The color scheme to use for the 3D polyline. When specified as <code>FOLLOW_SYSTEM</code> while the map <code>colorScheme</code> is also <code>FOLLOW_SYSTEM</code>, the polylines will be drawn in the same dark/light mode as the map. When not specified, {@link google.maps.routes.Route.create3DPolylines} attempts to use the <code>colorScheme</code> of the map or falls back to the system default.
*/
colorScheme?: google.maps.ColorSchemeString;
/**
* Options for customizing the style of a 3D polyline.
*/
Expand Down