Skip to content

Commit 23726ca

Browse files
chore: sync changes for Maps JS API v3.53.8.
PiperOrigin-RevId: 542701021
1 parent 4fa3c03 commit 23726ca

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

index.d.ts

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3445,10 +3445,27 @@ declare namespace google.maps {
34453445
}
34463446
/**
34473447
* Object containing a snapshot of what capabilities are currently available
3448-
* for the Map. See the properties for a list of possible capabilities.
3448+
* for the Map. Note that this does not necessarily mean that relevant modules
3449+
* are loaded or initialized, but rather that the current map has permission
3450+
* to use these APIs. See the properties for a list of possible capabilities.
34493451
*/
34503452
export interface MapCapabilities {
3453+
/**
3454+
* If true, this map is configured properly to allow for the use of advanced
3455+
* markers. Note that you must still import the <code>marker</code> library
3456+
* in order to use advanced markers. See <a
3457+
* href="https://developers.google.com/maps/documentation/javascript/advanced-markers/start#update_your_map_initialization_code">https://developers.google.com/maps/documentation/javascript/advanced-markers/start#update_your_map_initialization_code</a>
3458+
* for more information.
3459+
*/
34513460
isAdvancedMarkersAvailable?: boolean;
3461+
/**
3462+
* If true, this map is configured properly to allow for the use of
3463+
* data-driven styling for at least one FeatureLayer. See <a
3464+
* href="https://developers.google.com/maps/documentation/javascript/dds-boundaries/overview">https://developers.google.com/maps/documentation/javascript/dds-boundaries/overview</a>
3465+
* and <a
3466+
* href="https://developers.google.com/maps/documentation/javascript/reference/data-driven-styling#FeatureLayer.isAvailable">https://developers.google.com/maps/documentation/javascript/reference/data-driven-styling#FeatureLayer.isAvailable</a>
3467+
* for more information.
3468+
*/
34523469
isDataDrivenStylingAvailable?: boolean;
34533470
}
34543471
/**

0 commit comments

Comments
 (0)