我有一个谷歌地图活动,我希望相机在地图打开/蓝点出现时立即居中并放大用户,这样用户就不必按下"居中按钮",也不必硬编码地图相机的位置
我发现了很多5-6年前的代码示例,所以它们都不起作用了
是否还有可能获取当前用户位置(lat.和long.(?
请尝试以下操作:
private void centerOnMyLocation() {
map.setMyLocationEnabled(true);
location = map.getMyLocation();
if (location != null) {
myLocation = new LatLng(location.getLatitude(),
location.getLongitude());
}
map.animateCamera(CameraUpdateFactory.newLatLngZoom(myLocation,
Constants.MAP_ZOOM));
}
更新属性名称并调用此代码以集中在当前用户的位置。
如果你已经有了当前的职位,只需调用此功能:
map.animateCamera(CameraUpdateFactory.newLatLngZoom(myLocation,
Constants.MAP_ZOOM));
首先,您需要一个LatLngBounds对象,这是必要的,这样您就可以定义将绑定地图的位置。
然后,您需要定义设备的宽度和高度,这非常简单。
只需按照下面的代码
LatLngBounds.Builder builder = new LatLngBounds.Builder();
//Insert your location
builder.include(location1);
builder.include(location2);
LatLngBounds bounds = builder.build();
//Get the width and height of the device's screen
int width = getResources().getDisplayMetrics().widthPixels;
int height = (int) ((getResources().getDisplayMetrics().heightPixels) * 0.85);
int padding = (int) (width * 0.15);
//Centralize the markers
yourMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, width, height, padding));