我在 android 中使用 Google maps api v2。我使用 latitude 和 longitude 放置了一个标记。标记显示在正确的位置,但我希望地图应仅显示标记周围的区域。即我想在显示地图时缩放到标记位置,以便仅显示标记的附近区域。任何帮助都是伟大的。
问问题
30086 次
2 回答
75
在此函数中传递您放置标记的当前位置。
private void moveToCurrentLocation(LatLng currentLocation)
{
googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(currentLocation,15));
// Zoom in, animating the camera.
googleMap.animateCamera(CameraUpdateFactory.zoomIn());
// Zoom out to zoom level 10, animating with a duration of 2 seconds.
googleMap.animateCamera(CameraUpdateFactory.zoomTo(15), 2000, null);
}
于 2013-05-09T09:51:40.157 回答
20
提供标记位置。
private void pointToPosition(LatLng position) {
//Build camera position
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(position)
.zoom(17).build();
//Zoom in and animate the camera.
mGoogleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
}
于 2015-07-09T06:01:28.630 回答