GoogleNavigation Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
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 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSMapViewType\u003c/code\u003e defines the display styles for a \u003ccode\u003eGMSMapView\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt includes five map types: \u003ccode\u003enormal\u003c/code\u003e, \u003ccode\u003esatellite\u003c/code\u003e, \u003ccode\u003eterrain\u003c/code\u003e, \u003ccode\u003ehybrid\u003c/code\u003e, and \u003ccode\u003enone\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003enormal\u003c/code\u003e is the default, displaying basic maps with support for light and dark color schemes.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003esatellite\u003c/code\u003e and \u003ccode\u003ehybrid\u003c/code\u003e offer satellite imagery, with the latter including transparent labels.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eterrain\u003c/code\u003e displays terrain maps, while \u003ccode\u003enone\u003c/code\u003e shows no map data.\u003c/p\u003e\n"]]],["`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"],null,["# GoogleNavigation Framework Reference\n\nGMSMapViewType\n==============\n\n enum GMSMapViewType : NSUInteger {}\n\nDisplay types for [GMSMapView](../Classes/GMSMapView.html).\n- `\n ``\n ``\n `\n\n ### [kGMSTypeNormal](#/c:@E@GMSMapViewType@kGMSTypeNormal)\n\n `\n ` \n Basic maps. The default. Supports both Light and Dark color schemes. \n\n #### Declaration\n\n Swift \n\n case normal = 1\n\n Objective-C \n\n kGMSTypeNormal = 1\n\n- `\n ``\n ``\n `\n\n ### [kGMSTypeSatellite](#/c:@E@GMSMapViewType@kGMSTypeSatellite)\n\n `\n ` \n Satellite maps with no labels. \n\n #### Declaration\n\n Swift \n\n case satellite = 2\n\n Objective-C \n\n kGMSTypeSatellite\n\n- `\n ``\n ``\n `\n\n ### [kGMSTypeTerrain](#/c:@E@GMSMapViewType@kGMSTypeTerrain)\n\n `\n ` \n Terrain maps. Supports both Light and Dark color schemes. \n\n #### Declaration\n\n Swift \n\n case terrain = 3\n\n Objective-C \n\n kGMSTypeTerrain\n\n- `\n ``\n ``\n `\n\n ### [kGMSTypeHybrid](#/c:@E@GMSMapViewType@kGMSTypeHybrid)\n\n `\n ` \n Satellite maps with a transparent label overview. \n\n #### Declaration\n\n Swift \n\n case hybrid = 4\n\n Objective-C \n\n kGMSTypeHybrid\n\n- `\n ``\n ``\n `\n\n ### [kGMSTypeNone](#/c:@E@GMSMapViewType@kGMSTypeNone)\n\n `\n ` \n No maps, no labels. Display of traffic data is not supported. \n\n #### Declaration\n\n Swift \n\n case none = 5\n\n Objective-C \n\n kGMSTypeNone"]]