嗨,我需要添加远程图像,但是该图标仅接受BitmapDescriptor而不接受Image.network(src),谢谢
controller.addMarker(
MarkerOptions(
position: LatLng(
double.parse(place.lat),
double.parse(place.lng),
),
icon: BitmapDescriptor.fromAsset(assetName)
infoWindowText: InfoWindowText('Random Place', '5 Star Rating'),
),
);