You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,15 +29,6 @@ The Google Maps SDK supports the use of showing the users current location via `
29
29
30
30
Read about [Configuring `Info.plist`](https://capacitorjs.com/docs/ios/configuration#configuring-infoplist) in the [iOS Guide](https://capacitorjs.com/docs/ios) for more information on setting iOS permissions in Xcode.
31
31
32
-
### Minimum Deployment Target
33
-
34
-
Version 6 of this plugin has a minimum deployment target of iOS 14.0. You will need to edit `ios/App/Podfile` and change the following line from 13.0 to 14.0:
35
-
```
36
-
platform :ios, '14.0'
37
-
```
38
-
39
-
Additionally, you will need to open your project in XCode and in the `Build Settings` tab for your `Project` and for each `Target` set the `iOS Deployment Target` to `iOS 14.0` or higher.
40
-
41
32
### Typescript Configuration
42
33
43
34
Your project will also need have `skipLibCheck` set to `true` in `tsconfig.json`.
|**`width`**| <code>number</code> | Override width for native map. |||
930
-
|**`height`**| <code>number</code> | Override height for native map. |||
931
-
|**`x`**| <code>number</code> | Override absolute x coordinate position for native map. |||
932
-
|**`y`**| <code>number</code> | Override absolute y coordinate position for native map. |||
933
-
|**`center`**| <code><ahref="#latlng">LatLng</a></code> | Default location on the Earth towards which the camera points. |||
934
-
|**`zoom`**| <code>number</code> | Sets the zoom of the map. |||
935
-
|**`androidLiteMode`**| <code>boolean</code> | Enables image-based lite mode on Android. | <code>false</code> ||
936
-
|**`devicePixelRatio`**| <code>number</code> | Override pixel ratio for native map. |||
937
-
|**`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 |
938
-
|**`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 |
939
-
|**`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 |
940
-
|**`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 |
|**`width`**| <code>number</code> | Override width for native map. |||
1002
+
|**`height`**| <code>number</code> | Override height for native map. |||
1003
+
|**`x`**| <code>number</code> | Override absolute x coordinate position for native map. |||
1004
+
|**`y`**| <code>number</code> | Override absolute y coordinate position for native map. |||
1005
+
|**`center`**| <code><ahref="#latlng">LatLng</a></code> | Default location on the Earth towards which the camera points. |||
1006
+
|**`zoom`**| <code>number</code> | Sets the zoom of the map. |||
1007
+
|**`androidLiteMode`**| <code>boolean</code> | Enables image-based lite mode on Android. | <code>false</code> ||
1008
+
|**`devicePixelRatio`**| <code>number</code> | Override pixel ratio for native map. |||
1009
+
|**`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 |
1010
+
|**`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 |
1011
+
|**`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 |
1012
+
|**`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 |
1013
+
|**`maxZoom`**| <code>number \| null</code> | The maximum zoom level which will be displayed on the map. If omitted, or set to <code>null</code>, the maximum zoom from the current map type is used instead. Valid zoom values are numbers from zero up to the supported <a href="https://developers.google.com/maps/documentation/javascript/maxzoom">maximum zoom level</a>. |||
1014
+
|**`minZoom`**| <code>number \| null</code> | The minimum zoom level which will be displayed on the map. If omitted, or set to <code>null</code>, the minimum zoom from the current map type is used instead. Valid zoom values are numbers from zero up to the supported <a href="https://developers.google.com/maps/documentation/javascript/maxzoom">maximum zoom level</a>. |||
1015
+
|**`mapTypeId`**| <code>string \| null</code> | The initial Map mapTypeId. Defaults to <code>ROADMAP</code>. |||
1016
+
|**`heading`**| <code>number \| null</code> | The heading for aerial imagery in degrees measured clockwise from cardinal direction North. Headings are snapped to the nearest available angle for which imagery is available. |||
1017
+
|**`restriction`**| <code>MapRestriction \| null</code> | Defines a boundary that restricts the area of the map accessible to users. When set, a user can only pan and zoom while the camera view stays inside the limits of the boundary. |||
941
1018
942
1019
943
1020
#### LatLng
@@ -957,6 +1034,18 @@ An interface representing a pair of latitude and longitude coordinates.
957
1034
|**`mapId`**| <code>string</code> |
958
1035
959
1036
1037
+
#### TileOverlay
1038
+
1039
+
A tile overlay is an image placed on top of your map at a specific zoom level. Available on iOS, Android and Web
|**`url`**| <code>string</code> | A string representing the tile url. Should contain `{x}`, `{y}` and `{z}` so they can be replaced with actual values for x, y and zoom. Available on iOS, Android and Web ||
1044
+
|**`opacity`**| <code>number</code> | The opacity of the tile overlay, between 0 (completely transparent) and 1 inclusive. Available on iOS, Android and Web | <code>undefined</code> |
1045
+
|**`visible`**| <code>boolean</code> | Controls whether this tile overlay should be visible. Available only on Android | <code>undefined</code> |
1046
+
|**`zIndex`**| <code>number</code> | The zIndex of the tile overlay. Available on iOS and Android | <code>undefined</code> |
1047
+
1048
+
960
1049
#### Marker
961
1050
962
1051
A marker is an icon placed at a particular point on the map's surface.
0 commit comments