調整攝影機

攝影機可讓您變更使用者查看地圖的視角。您可以使用相機模式,在導航期間控制地圖的行為。如要設定相機模式,請設定地圖檢視畫面的 cameraMode 屬性,指定下列其中一個相機模式常數:

  • 追蹤:導航功能的預設攝影機模式。將檢視角度變更為 45 度,並將相機置於目前位置的後方,朝著行進方向拍攝。在導航期間,相機會自動調整方向,朝向行駛方向。按下地圖的「重設地圖中心」按鈕,也會切換至這個模式。選取此模式時,系統不會顯示「重新對齊」按鈕。

  • 總覽:顯示整個路線的總覽,並視需要縮放,讓路線符合地圖檢視畫面。選取這個檢視畫面時,畫面上會顯示「Re-center」按鈕。

  • 自由 - 允許使用者透過手勢變更地圖檢視畫面。相機會在這個畫面中保持靜止。如果使用者在導航期間平移或縮放地圖,地圖會自動進入這個檢視畫面。選取這個檢視畫面時,畫面上會顯示「Re-center」按鈕。

如要變更攝影機模式,請設定地圖檢視畫面的 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;

自動回到地圖中心點

當使用者在導航模式下移動地圖時,地圖檢視畫面的相機模式會從追蹤模式變更為自由模式。當使用者明確按下「重新對焦」時,相機會恢復至以下模式。您可以使用計時器設定離開追蹤模式與自動返回追蹤模式之間的間隔,以便自動返回追蹤模式。

範例

下列程式碼範例會檢查使用者是否在導航模式下移動地圖。如果是,則會設定計時器,將相機模式切換為追蹤模式,並在五秒後將地圖置中。

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