正在将 URL 中的图像加载到 Google 地图中

Loading an image from an URL into Google Maps

这是我正在使用的代码。

mMap 是 GoogleMap

的实例

我的问题是如何加载图像的 URL 而不是 R.drawable.ic_map_barber

我花了很多时间但没有得到任何解决方案。请帮我解决这个问题

DrawMarker.getInstance(getActivity()).draw(mMap, new LatLng(lat, Long), R.drawable.ic_map_barber, BarberName);

draw/add获取位图后的标记:

URL url = new URL("http://imagepath/store/url");
Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
map.addMarker(new MarkerOptions()

.icon(BitmapDescriptorFactory.fromBitmap(bmp)));