GoogleNavigation Framework Reference
GMSMapViewType
enum GMSMapViewType : NSUInteger {}
Display types for GMSMapView
.
-
Basic maps. The default. Supports both Light and Dark color schemes.
Declaration
Objective-C
kGMSTypeNormal = 1
-
Satellite maps with no labels.
Declaration
Objective-C
kGMSTypeSatellite
-
Terrain maps. Supports both Light and Dark color schemes.
Declaration
Objective-C
kGMSTypeTerrain
-
Satellite maps with a transparent label overview.
Declaration
Objective-C
kGMSTypeHybrid
-
No maps, no labels. Display of traffic data is not supported.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-11-15 UTC.
[null,null,["Last updated 2024-11-15 UTC."],[[["`GMSMapViewType` defines the display styles for a `GMSMapView`."],["It includes five map types: `normal`, `satellite`, `terrain`, `hybrid`, and `none`."],["`normal` is the default, displaying basic maps with support for light and dark color schemes."],["`satellite` and `hybrid` offer satellite imagery, with the latter including transparent labels."],["`terrain` displays terrain maps, while `none` shows no map data."]]],["`GMSMapViewType` defines display options for maps. `kGMSTypeNormal` (default) is a basic map supporting light/dark schemes. `kGMSTypeSatellite` shows satellite imagery without labels. `kGMSTypeTerrain` displays terrain maps, also with light/dark scheme support. `kGMSTypeHybrid` overlays labels on satellite views. `kGMSTypeNone` provides a blank map without labels or traffic data. Each type has corresponding declarations in Swift and Objective-C, using `case` and constants, respectively.\n"]]