skip to Main Content

How to set Location Marker size depend on zoom in Flutter Map

I'm using flutter_map to display map on my flutter app. here is the code FlutterMap( mapController: mapController, options: MapOptions( interactiveFlags: InteractiveFlag.pinchZoom | InteractiveFlag.drag, center: LatLng(9.964706, 76.289714), zoom: 13.0, rotation: 0, ), children: [ TileLayer( urlTemplate: 'https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png', subdomains: const ['a', 'b',…

VIEW QUESTION
Back To Top
Search