How to change the icon size of Google Maps marker in Flutter?

前端 未结 14 740
不知归路
不知归路 2020-12-07 12:32

I am using google_maps_flutter in my flutter app to use google map I have custom marker icon and I load this with BitmapDescriptor.fromAsset(\"images/car.

14条回答
  •  温柔的废话
    2020-12-07 13:24

    What worked for me to select the right image for different densities:

    MediaQueryData mediaQueryData = MediaQuery.of(context);
    ImageConfiguration imageConfig = ImageConfiguration(devicePixelRatio: mediaQueryData.devicePixelRatio);
    BitmapDescriptor.fromAssetImage(imageConfig, "assets/images/marker.png");
    

提交回复
热议问题