How can I change the icon of marker on google_maps_flutter?
Thanks!
How can I change the icon of marker on google_maps_flutter?
Thanks!
final BitmapDescriptor icon = await BitmapDescriptor.fromAssetImage(
const ImageConfiguration(), 'assets/icon.png');
Marker(
markerId: MarkerId('marker'),
position: LatLng(latitude,longitude),
icon: icon,
)