カメラを調整する

カメラを使用すると、ユーザーの視点位置を変更できます。カメラモードを使用すると、ナビゲーション中の地図の動作を制御できます。カメラモードを設定するには、マップビューの cameraMode プロパティを設定し、次のいずれかのカメラモード定数を指定します。

  • 追尾 - ナビゲーションのデフォルトのカメラモード。ビュー角度を 45 度に変更し、カメラを現在の位置の後ろに移動して移動方向を向きます。ナビゲーション中、カメラは走行方向を向くように自動的に調整されます。地図の [現在地を地図の中心にする] ボタンを押しても、このモードに切り替わります。このモードを選択すると、[中央に配置] ボタンは表示されません。

  • 概要 - ルート全体の概要が表示されます。必要に応じてズームして、ルートを地図ビューに収めます。このビューを選択すると、[中央に配置] ボタンが表示されます。

  • 自由 - ユーザーがジェスチャーで地図表示を変更できるようにします。このビューではカメラは固定されたままになります。ユーザーがナビゲーション中にパンまたはズームすると、地図は自動的にこのビューに切り替わります。このビューを選択すると、[中央に配置] ボタンが表示されます。

カメラモードを変更するには、次のように地図表示の cameraMode プロパティを設定します。

Swift

// Set the mode to "overview":
mapView.cameraMode = .overview

// Set the mode to "free":
mapView.cameraMode = .free

// Set the mode to "following":
mapView.cameraMode = .following

Objective-C

// Set the mode to "overview":
mapView.cameraMode = GMSNavigationCameraModeOverview;

// Set the mode to "free":
mapView.cameraMode = GMSNavigationCameraModeFree;

// Set the mode to "following":
mapView.cameraMode = GMSNavigationCameraModeFollowing;

地図を自動的にセンタリングする

ユーザーがナビゲーション モードで地図を移動すると、地図ビューのカメラモードが追従モードから自由モードに変わります。ユーザーが明示的に [中央に再調整] を押すと、カメラは追尾モードに戻ります。タイマーを使用して、フォロー モードを終了してから自動的に復帰するまでの間隔を設定することで、フォロー モードへの復帰を自動化できます。

次のコード例は、ナビゲーション モード中にユーザーが地図を移動しているかどうかを確認します。オンの場合は、カメラモードを追尾モードに切り替えるタイマーを設定し、5 秒後に地図を中央に配置します。

Swift

class YourViewController: UIViewController {

  @IBOutlet weak var mapView: GMSMapView!
  var autoFollowTimer: Timer!

  override func viewDidLoad() {
    super.viewDidLoad()
    mapView.delegate = self
    ...
  }

  ...
}

/** Implements the GMSMapViewDelegate protocol. */
extension YourViewController: GMSMapViewDelegate {
  func mapView(_ mapView: GMSMapView, willMove gesture: Bool) {
    if mapView.navigator?.isGuidanceActive == false {return}
    if !gesture {return}

    autoFollowTimer?.invalidate()
    autoFollowTimer = Timer(
      timeInterval: TimeInterval(5.0),
      target: self,
      selector: #selector(recenterMap),
      userInfo: nil,
      repeats: false)
    RunLoop.current.add(autoFollowTimer, forMode: .default)
  }

  /** Centers the map in guidance mode. */
  @objc private func recenterMap() {
    if mapView.navigator?.isGuidanceActive == true {
       mapView.cameraMode = .following
    }

    autoFollowTimer.invalidate()
    autoFollowTimer = nil
  }
}

Objective-C

@interface YourViewController : UIViewController<GMSMapViewDelegate>
...
@end


@implementation YourViewController {
  GMSMapView *_mapView;
  NSTimer *_autoFollowTimer;
  ...
}

...

- (void)viewDidLoad {
  [super viewDidLoad];
  ...
  _mapView.delegate = self;
  ...
}

...

/** Implements the GMSMapViewDelegate protocol. */
- (void)mapView:(GMSMapView *)mapView willMove:(BOOL)gesture {
  if (!_mapView.navigator.guidanceActive) return;
  if (!gesture) return;

  [_autoFollowTimer invalidate];
  _autoFollowTimer = [NSTimer scheduledTimerWithTimeInterval:5.0
                                                      target:self
                                                    selector:@selector(recenterMap)
                                                    userInfo:nil
                                                     repeats:NO];
}

/** Centers the map in guidance mode. */
- (void)recenterMap {
  if (_mapView.navigator.guidanceActive) {
    _mapView.cameraMode = GMSNavigationCameraModeFollowing;
  }

  [_autoFollowTimer invalidate];
  _autoFollowTimer = nil;
}

@end