GoogleMaps 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, offering options like normal, satellite, terrain, hybrid, and none.\u003c/p\u003e\n"],["\u003cp\u003eThe default map type is \u003ccode\u003ekGMSTypeNormal\u003c/code\u003e which presents a basic map with support for both light and dark color schemes.\u003c/p\u003e\n"],["\u003cp\u003eOther map types include satellite imagery with or without labels (\u003ccode\u003ekGMSTypeSatellite\u003c/code\u003e, \u003ccode\u003ekGMSTypeHybrid\u003c/code\u003e), terrain maps (\u003ccode\u003ekGMSTypeTerrain\u003c/code\u003e), and a display with no map data (\u003ccode\u003ekGMSTypeNone\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eEach map type has corresponding Swift and Objective-C enumerations for easy integration into your code.\u003c/p\u003e\n"]]],[],null,["# GoogleMaps 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"]]