Skip to content
Snippets Groups Projects
Commit 266b7e33 authored by Sara Savanovic Djordjevic's avatar Sara Savanovic Djordjevic
Browse files

update: temporary remove polygon

parent 51f54c39
No related branches found
No related tags found
1 merge request!1Server
...@@ -126,7 +126,7 @@ class _DefaultPageState extends State<DefaultPage> { ...@@ -126,7 +126,7 @@ class _DefaultPageState extends State<DefaultPage> {
double screenWidth = MediaQuery.of(context).size.width; double screenWidth = MediaQuery.of(context).size.width;
double boxWidth = 0.9; double boxWidth = 0.9;
double boxHeight = 1.5; double boxHeight = 1.5;
const double markerSize = 40; const double markerSize = 20;
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
...@@ -167,13 +167,13 @@ class _DefaultPageState extends State<DefaultPage> { ...@@ -167,13 +167,13 @@ class _DefaultPageState extends State<DefaultPage> {
child: Icon( child: Icon(
Icons.circle, Icons.circle,
color: markerData.color, color: markerData.color,
size: markerData.size, size: markerSize,
), ),
), ),
); );
}).toList(), }).toList(),
), ),
PolygonLayer( /*PolygonLayer(
polygons: [ polygons: [
Polygon( Polygon(
points: [ points: [
...@@ -186,7 +186,7 @@ class _DefaultPageState extends State<DefaultPage> { ...@@ -186,7 +186,7 @@ class _DefaultPageState extends State<DefaultPage> {
isFilled: true, isFilled: true,
), ),
], ],
), ),*/
], ],
), ),
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment