File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments