Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Showing Location in a small widget

I want to create a screen where it will show the location of the company in a small map on the screen when the longitude and the latitude is given.The map should not take up the whole page.The idea is to have a map like below. What is the best plugin to use and how to show it in a small widget? enter image description here

like image 313
Kavishka Rajapakshe Avatar asked Dec 29 '25 06:12

Kavishka Rajapakshe


1 Answers

I'm using flutter_osm_plugin (Open Street Map) plugin.

I can resize the map widget by wrapping it with SizedBox widget.

Example

SizedBox(
  height: 200,
  width: double.infinity,
  child: OSMFlutter(...),
),

How it looks like

OSM screenshot maps flutter

like image 69
iqfareez Avatar answered Jan 01 '26 15:01

iqfareez