Skip to content

Commit

Permalink
docs(google-maps): adjust since for mapId properties (#1961)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Dec 12, 2023
1 parent 79cbfe9 commit 4b84fbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions google-maps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -899,9 +899,9 @@ For iOS and Android only the config options declared on <a href="#googlemapconfi
| **`androidLiteMode`** | <code>boolean</code> | Enables image-based lite mode on Android. | <code>false</code> | |
| **`devicePixelRatio`** | <code>number</code> | Override pixel ratio for native map. | | |
| **`styles`** | <code>MapTypeStyle[] \| null</code> | Styles to apply to each of the default map types. Note that for satellite, hybrid and terrain modes, these styles will only apply to labels and geometry. | | 4.3.0 |
| **`mapId`** | <code>string</code> | A map id associated with a specific map style or feature. [Use Map IDs](https://developers.google.com/maps/documentation/get-map-id) Only for Web. | | 6.0.0 |
| **`androidMapId`** | <code>string</code> | A map id associated with a specific map style or feature. [Use Map IDs](https://developers.google.com/maps/documentation/get-map-id) Only for Android. | | 6.0.0 |
| **`iOSMapId`** | <code>string</code> | A map id associated with a specific map style or feature. [Use Map IDs](https://developers.google.com/maps/documentation/get-map-id) Only for iOS. | | 6.0.0 |
| **`mapId`** | <code>string</code> | A map id associated with a specific map style or feature. [Use Map IDs](https://developers.google.com/maps/documentation/get-map-id) Only for Web. | | 5.4.0 |
| **`androidMapId`** | <code>string</code> | A map id associated with a specific map style or feature. [Use Map IDs](https://developers.google.com/maps/documentation/get-map-id) Only for Android. | | 5.4.0 |
| **`iOSMapId`** | <code>string</code> | A map id associated with a specific map style or feature. [Use Map IDs](https://developers.google.com/maps/documentation/get-map-id) Only for iOS. | | 5.4.0 |


#### LatLng
Expand Down
6 changes: 3 additions & 3 deletions google-maps/src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export interface GoogleMapConfig extends google.maps.MapOptions {
*
* Only for Web.
*
* @since 6.0.0
* @since 5.4.0
*/
mapId?: string;
/**
Expand All @@ -208,7 +208,7 @@ export interface GoogleMapConfig extends google.maps.MapOptions {
*
* Only for Android.
*
* @since 6.0.0
* @since 5.4.0
*/
androidMapId?: string;
/**
Expand All @@ -218,7 +218,7 @@ export interface GoogleMapConfig extends google.maps.MapOptions {
*
* Only for iOS.
*
* @since 6.0.0
* @since 5.4.0
*/
iOSMapId?: string;
}
Expand Down

0 comments on commit 4b84fbd

Please sign in to comment.