我想将相机移动到适合LatLngBounds的位置以适应标记高度.到目前为止,我能够使用此代码拟合标记的锚点:
LatLngBounds.Builder builder = new LatLngBounds.Builder();
for (Marker marker : markerList) {
builder.include(marker.getPosition());
}
LatLngBounds bounds = builder.build();
int padding = getActivity().getResources().getDimensionPixelSize(R.dimen.home_map_padding); // offset from edges of the map in pixels
cameraUpdate = CameraUpdateFactory.newLatLngBounds(bounds,padding);
mGoogleMap.animateCamera(cameraUpdate);
它产生如下输出:
正如你所看到的那样,底部有空的空间(这是int填充).我想让填充像这样:
最佳答案
您的问题类似于此处发布的问题:
原文链接:https://www.f2er.com/android/431228.htmlDefining a CameraUpdate with LatLngBounds with different padding values
解决方案是将实际GoogleMap的顶部填充设置为标记图标的高度.
这样的事情会做:
Drawable drawable =