答案 0 :(得分:5)
这种情况正在发生,因为您用作标记的图标尺寸较大。因此,您可以先将其转换为位图并更改其大小,然后将该位图用作自定义标记。例如,我已经制作了一个调整位图大小并返回调整大小的位图的方法。
public Bitmap resizeBitmap(String drawableName,int width, int height){
Bitmap imageBitmap = BitmapFactory.decodeResource(getResources(),getResources().getIdentifier(drawableName, "drawable", getPackageName()));
return Bitmap.createScaledBitmap(imageBitmap, width, height, false);
}
然后在googleMap.addMarker()
googleMap.addMarker(new MarkerOptions()
.title("New Marker").position(yourGivenPosition).icon(BitmapDescriptorFactory.fromBitmap(resizeBitmap("your drawable name",72,64))));
答案 1 :(得分:1)
更改标记图像的尺寸(图标),30 x 40,我认为
答案 2 :(得分:0)
我假设您有一个bmp
图片,因为您正在设置自定义标记。
要调整bmp
的大小,请使用Bitmap.createScaledBitmap (Bitmap src, int width, int height, boolean filter)