如何使用GMaps v2将地图中心设置为特定位置?这就是我使用GMaps v1的方式:
public void setCenter( LatLng point )
{
if( point.latitude*1000000 != 0 && point.longitude*1000000 != 0 )
{
if( mMapController != null )
{
mMapController.setCenter( point );
}
/*else if( mOpenStreetMapViewControllerSource != null )
{
mOpenStreetMapViewControllerSource.getController().setCenter( new org.osmdroid.util.GeoPoint( point.getLatitudeE6(), point.getLongitudeE6() ) );
mPostponedSetCenterPoint = point;
}*/
}
}
我查看了GMaps v2的API,找不到类似的功能。我该怎么做?
答案 0 :(得分:29)
您可以尝试:
map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(latitude, longitude), zoom));
其中map
是GoogleMap实例。
答案 1 :(得分:0)
@Override
public void onMapReady(GoogleMap googleMap) {
final LatLng SYDNEY = new LatLng(-33.87365, 151.20689);
googleMap.addMarker(new MarkerOptions().position(SYDNEY));
googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(SYDNEY, 4.0f));
}