Google maps api 3 iOS中的谷歌地图位置自动完成

Google maps api 3 iOS中的谷歌地图位置自动完成,google-maps-api-3,ios7,autocomplete,Google Maps Api 3,Ios7,Autocomplete,我正在使用谷歌地图地点集成。我是谷歌地图API的新手。我正在尝试为google place实现自动完成。我已经通过谷歌地方自动完成API 但我不能。有谁能帮我集成谷歌地图的自动完成功能吗?我使用了这个链接中的一个git hub示例代码 这个项目使用谷歌地图,但我想使用谷歌地图。当我将apple map作为MKMapView更改为GMSMapView时` @class SPGooglePlacesAutocompleteQuery; @interface SPGooglePlacesAutoco

我正在使用谷歌地图地点集成。我是谷歌地图API的新手。我正在尝试为google place实现自动完成。我已经通过谷歌地方自动完成API 但我不能。有谁能帮我集成谷歌地图的自动完成功能吗?我使用了这个链接中的一个git hub示例代码

这个项目使用谷歌地图,但我想使用谷歌地图。当我将apple map作为MKMapView更改为GMSMapView时`

@class SPGooglePlacesAutocompleteQuery;

@interface SPGooglePlacesAutocompleteViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UISearchDisplayDelegate, UISearchBarDelegate, MKMapViewDelegate> {
    NSArray *searchResultPlaces;
    SPGooglePlacesAutocompleteQuery *searchQuery;
    MKPointAnnotation *selectedPlaceAnnotation;

    BOOL shouldBeginEditing;
}
@property (retain, nonatomic) IBOutlet GMSMapView *mapView;

@end

请告诉我任何方法/教程/镫骨,这样我就可以使用google place进行自动完成。

通过非常简单的三个步骤,您可以使用


plz解释并投票表决此问题否决票不是我的,但请尝试展示一些示例代码,并清楚解释问题(包括错误)你正在经历的。我需要google places自动完成api与ios7的集成我需要知道google places自动完成api与ios7集成所涉及的镫骨。我如何从搜索地址获取lat和long/如果你手动或在我的控制下使用地理编码,你可以检查委托方法
placeSearchResponseForSelectedPlace:
您将在其中找到该位置的每个细节-
responseDect[@“结果”[@“几何体”[@“位置”]
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
    if (![searchBar isFirstResponder]) {
        // User tapped the 'clear' button.
        shouldBeginEditing = NO;
        [self.searchDisplayController setActive:NO];
        [self.mapView removeAnnotation:selectedPlaceAnnotation];
 }
}