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