[[["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 2024-11-15 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSPanoramaSource\u003c/code\u003e is an enum used to specify the source of a Street View panorama, indicating whether it's indoors, outdoors, or either.\u003c/p\u003e\n"],["\u003cp\u003eThis API is considered experimental, meaning results might not always be as expected.\u003c/p\u003e\n"],["\u003cp\u003eIt includes two primary options: \u003ccode\u003ekGMSPanoramaSourceDefault\u003c/code\u003e (for locations inside or outside) and \u003ccode\u003ekGMSPanoramaSourceOutside\u003c/code\u003e (specifically for outdoor locations).\u003c/p\u003e\n"]]],["The core content defines the `GMSPanoramaSource` enum, which specifies the source of a Street View Panorama. It outlines two source types: `kGMSPanoramaSourceDefault` (0), representing panoramas of locations both inside and outside, and `kGMSPanoramaSourceOutside` (1), representing panoramas of locations outside only. This API is experimental. The enum uses numerical values in Objective-C and a case format in Swift to identify its source types.\n"],null,["# GoogleNavigation Framework Reference\n\nGMSPanoramaSource\n=================\n\n enum GMSPanoramaSource : NSUInteger {}\n\nSource types for Panoramas. Used to specify the source of a StreetView Panorama.\n\nThis API is experimental. Results may not always match expectations.\n- `\n ``\n ``\n `\n\n ### [kGMSPanoramaSourceDefault](#/c:@E@GMSPanoramaSource@kGMSPanoramaSourceDefault)\n\n `\n ` \n Panoramas of locations either inside or outside. \n\n #### Declaration\n\n Swift \n\n case `default` = 0\n\n Objective-C \n\n kGMSPanoramaSourceDefault = 0\n\n- `\n ``\n ``\n `\n\n ### [kGMSPanoramaSourceOutside](#/c:@E@GMSPanoramaSource@kGMSPanoramaSourceOutside)\n\n `\n ` \n Panoramas of locations outside. \n\n #### Declaration\n\n Swift \n\n case outside = 1\n\n Objective-C \n\n kGMSPanoramaSourceOutside"]]