[[["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\u003eGMSPlaceFeature\u003c/code\u003e represents a place feature with a Place ID and is a subclass of \u003ccode\u003eGMSFeature\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt provides access to the feature type and the Place ID.\u003c/p\u003e\n"],["\u003cp\u003eWhile there's an initializer available for testing, in production, \u003ccode\u003eGMSPlaceFeature\u003c/code\u003e instances are created by the SDK itself.\u003c/p\u003e\n"]]],["`GMSPlaceFeature` represents a feature with a Place ID. It has two key properties: `featureType`, which defines the type of feature, and `placeID`, a unique string identifier. Instances can be created via `initWithFeatureType:placeID:`, intended solely for unit testing; production instances are SDK-created. Direct initialization with `init` is unavailable. The interface adopts the `GMSFeature` protocol.\n"],null,["GMSPlaceFeature \n\n\n @interface GMSPlaceFeature : NSObject \u003c../Protocols/GMSFeature.html\u003e\n\nAn interface representing a place feature (a feature with a Place ID).\n- `\n ``\n ``\n `\n\n [featureType](#/c:objc(cs)GMSPlaceFeature(py)featureType)`\n ` \n\n Declaration \n Swift \n\n var featureType: FeatureType { get }\n\n Objective-C \n\n @property(nonatomic, readonly) ../Type-Definitions/GMSFeatureType.html featureType\n\n- `\n ``\n ``\n `\n\n [placeID](#/c:objc(cs)GMSPlaceFeature(py)placeID)`\n ` \n\n Declaration \n Swift \n\n var placeID: String { get }\n\n Objective-C \n\n @property(nonatomic, readonly) NSString *placeID\n\n- `\n ``\n ``\n `\n\n [-initWithFeatureType:placeID:](#/c:objc(cs)GMSPlaceFeature(im)initWithFeatureType:placeID:)`\n ` \n Create a feature layer instance for testing.\n\n This method should be used for your unit tests only. In production, `GMSPlaceFeature` instances\n should only be created by the SDK. \n\n Declaration \n Swift \n\n convenience init(featureType: FeatureType, placeID: String)\n\n Objective-C \n\n - (nonnull instancetype)initWithFeatureType:(nonnull ../Type-Definitions/GMSFeatureType.html)featureType\n placeID:(nonnull NSString *)placeID;\n\n- `\n ``\n ``\n `\n\n [-init](#/c:objc(cs)GMSPlaceFeature(im)init)`\n ` \n Unavailable \n\n Declaration \n Objective-C \n\n - (instancetype)init NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE;"]]