您可以使用攝影機變更使用者查看地圖的視角。您可以使用攝影機模式,控制導航期間的地圖檢視畫面行為。如要設定攝影機模式,請呼叫下列任一與攝影機相關聯的方法:
追蹤我的所在位置 (
GoogleMap.followMyLocation
):導航的預設相機模式。這個模式會將攝影機設為裝置或車輛。在導航期間,攝影機會自動朝向行駛方向。啟用高細節設定 (NavigationMapStyle.HIGH_DETAIL
) 後,當縮放等級達 19 以上時,系統會顯示 2D 建築物輪廓。固定在位置 (
GoogleMap.animateCamera
和GoogleMap.moveCamera
):將相機固定在特定位置。使用這個模式時,您可以設定相機位置和其他相機屬性,例如方位、傾斜、縮放等。選取這個檢視畫面並初始化導覽器後,系統會顯示「重新置中」按鈕。顯示路線總覽 (
NavigationView.showRouteOverview
或SupportNavigationFragment.showRouteOverview
):顯示剩餘路線的總覽,並視需要平移和縮放,讓路線符合地圖檢視畫面。選取這個檢視畫面時,畫面上會顯示「重新置中」按鈕。
點選「重新對焦」按鈕,即可將攝影機設為 followMyLocation
模式。
追蹤我的位置模式
最常見的相機設定是將相機設為裝置或車輛,顯示其在行程中目前的位置。在這個攝影機模式中,您可以透過角度視角 (CameraPerspective.TILTED
) 查看路線,讓車輛始終朝向螢幕頂端行駛,或是讓車輛朝北 (CameraPerspective.TOP_DOWN_NORTH_UP
) 或朝向 (CameraPerspective.TOP_DOWN_HEADING_UP)
) 行駛,並且讓車輛始終位於螢幕頂端。
以下程式碼片段使用 TILTED
觀點:
// Set the camera to follow the device (vehicle):
mNavFragment.getMapAsync(googleMap -> googleMap.followMyLocation(CameraPerspective.TILTED))
已固定至定位模式
Pinned
模式可讓您全面控管攝影機。在這個模式中,您可以將攝影機放置在特定位置、指派航向以調整攝影機檢視畫面、變更傾斜角度以設定檢視角度,以及設定攝影機的縮放等級。
下列程式碼片段示範一些移動攝影機的常見方式。
private static final LatLng SYDNEY = new LatLng(-33.88, 151.21);
private static final LatLng MOUNTAIN_VIEW = new LatLng(37.4, -122.1);
private GoogleMap map;
... // Obtain the map from a SupportNavigationFragment or NavigationView.
// Move the camera instantly to Sydney with a zoom of 15.
map.moveCamera(CameraUpdateFactory.newLatLngZoom(SYDNEY, 15));
// Zoom in, animating the camera.
map.animateCamera(CameraUpdateFactory.zoomIn());
// Zoom out to zoom level 10, animating with a duration of 2 seconds.
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
// Construct a CameraPosition focusing on Mountain View and animate the camera to that position.
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(MOUNTAIN_VIEW) // Sets the center of the map to Mountain View
.zoom(17) // Sets the zoom
.bearing(90) // Sets the orientation of the camera to east
.tilt(30) // Sets the tilt of the camera to 30 degrees
.build(); // Creates a CameraPosition from the builder
map.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
顯示路線總覽模式
showRouteOverview
攝影機設定會顯示整個行程。對於多目的地行程,這個模式會顯示路線未行駛的部分。
// Place the camera to see the remaining route:
mNavFragment.showRouteOverview();
高細節設定
啟用高細節設定後,當相機的縮放等級設為 19 以上時,系統會顯示 2D 建築物輪廓。您可以使用 FollowMyLocationOptions
物件,在導覽期間覆寫縮放等級。這樣一來,您就能在使用者接近目的地時,提高縮放等級,以便顯示 2D 建築物輪廓。
以下範例會啟用高細節設定:
navigationView.setNavigationMapStyle(NavigationMapStyle.HIGH_DETAIL);
以下範例會在導航期間覆寫攝影機的縮放等級。縮放等級設為 15,足以顯示 2D 建築物輪廓。
googleMap.followMyLocation(
FollowMyLocationOptions.builder(CameraPerspective.TILTED)
.setZoomLevel(15.0f)
.build());
下一步
請參閱「自訂導航 UI」,瞭解如何決定要在地圖上顯示哪些內建 UI 元件,藉此自訂使用者與地圖的互動方式。