0

How can I change the icon of marker on google_maps_flutter?

Thanks!

  • 2
    Possible duplicate of [How to change the icon size of Google Maps marker in Flutter?](https://stackoverflow.com/questions/53633404/how-to-change-the-icon-size-of-google-maps-marker-in-flutter) – Wai Ha Lee Sep 25 '19 at 14:23

1 Answers1

2
final BitmapDescriptor icon = await BitmapDescriptor.fromAssetImage(
    const ImageConfiguration(), 'assets/icon.png');

Marker(
  markerId: MarkerId('marker'),
  position: LatLng(latitude,longitude),
  icon: icon,
)
Sébastien B
  • 436
  • 2
  • 10