[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["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"]]