0
こんにちは、私はiOSのGoogleマップを初めて使っています。UIのGoogleマップTableView
マーカーをどのように表示するか知っていますか?つまり、地図上の場所をクリックするとマーカーが表示されます。
ありがとうございました。
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
longitude:151.20
zoom:6];
GMSMapView *mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
mapView.myLocationEnabled = YES;
self.view = mapView;
// Creates a marker in the center of the map.
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
marker.title = @"Sydney";
marker.snippet = @"Australia";
marker.map = mapView;
[mapView setSelectedMarker:marker];