Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROG2900
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sara Savanovic Djordjevic
PROG2900
Commits
93d62e1d
Commit
93d62e1d
authored
1 year ago
by
Sara Savanovic Djordjevic
Browse files
Options
Downloads
Patches
Plain Diff
add: osm_map.dart and sat_layer.dart
parent
e1e97656
No related branches found
No related tags found
1 merge request
!2
App2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/lib/pages/widgets/map_widget.dart
+2
-3
2 additions, 3 deletions
app/lib/pages/widgets/map_widget.dart
app/lib/pages/widgets/osm_map.dart
+42
-0
42 additions, 0 deletions
app/lib/pages/widgets/osm_map.dart
app/lib/pages/widgets/sat_layer.dart
+0
-0
0 additions, 0 deletions
app/lib/pages/widgets/sat_layer.dart
with
44 additions
and
3 deletions
app/lib/pages/widgets/map_widget.dart
+
2
−
3
View file @
93d62e1d
...
@@ -3,7 +3,6 @@ import '../marker_handler/marker_data.dart';
...
@@ -3,7 +3,6 @@ import '../marker_handler/marker_data.dart';
import
'../consts.dart'
;
import
'../consts.dart'
;
import
'package:flutter_map/flutter_map.dart'
;
import
'package:flutter_map/flutter_map.dart'
;
import
'package:latlong2/latlong.dart'
;
import
'package:latlong2/latlong.dart'
;
import
'package:fl_chart/fl_chart.dart'
;
import
'quick_view_chart.dart'
;
import
'quick_view_chart.dart'
;
import
'stat_charts.dart'
;
import
'stat_charts.dart'
;
...
@@ -18,7 +17,7 @@ class MapContainerWidget extends StatefulWidget {
...
@@ -18,7 +17,7 @@ class MapContainerWidget extends StatefulWidget {
class
_MapContainerWidgetState
extends
State
<
MapContainerWidget
>
{
class
_MapContainerWidgetState
extends
State
<
MapContainerWidget
>
{
Measurement
?
selectedMarker
;
Measurement
?
selectedMarker
;
// Containing data for selected marker
bool
isMinimized
=
true
;
// Quick view box state tacker
bool
isMinimized
=
true
;
// Quick view box state tacker
bool
satLayer
=
false
;
// Satellite layer visibility tracker
bool
satLayer
=
false
;
// Satellite layer visibility tracker
...
@@ -138,7 +137,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
...
@@ -138,7 +137,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
const
SizedBox
(
height:
contPadding
),
// Padding between containers
const
SizedBox
(
height:
contPadding
),
// Padding between containers
ClipRRect
(
ClipRRect
(
borderRadius:
BorderRadius
.
circular
(
20
),
borderRadius:
BorderRadius
.
circular
(
20
),
child:
Container
(
child:
SizedBox
(
width:
screenWidth
*
boxWidth
,
width:
screenWidth
*
boxWidth
,
height:
screenWidth
*
boxHeight
*
1.5
,
// NB: make dynamic
height:
screenWidth
*
boxHeight
*
1.5
,
// NB: make dynamic
child:
Align
(
child:
Align
(
...
...
This diff is collapsed.
Click to expand it.
app/lib/pages/widgets/osm_map.dart
0 → 100644
+
42
−
0
View file @
93d62e1d
import
'package:flutter/material.dart'
;
import
'../marker_handler/marker_data.dart'
;
import
'../consts.dart'
;
import
'package:flutter_map/flutter_map.dart'
;
import
'package:latlong2/latlong.dart'
;
class
OSMmap
extends
StatelessWidget
{
const
OSMmap
({
super
.
key
});
@override
Widget
build
(
BuildContext
context
)
{
return
FlutterMap
(
options:
MapOptions
(
center:
mapCenter
,
// From consts
zoom:
9.0
,
),
children:
[
TileLayer
(
// Map from OpenStreetMap
urlTemplate:
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
,
subdomains:
const
[
'a'
,
'b'
,
'c'
],
),
PolygonLayer
(
// Map each element in markerList to Measurement object
polygons:
widget
.
markerList
.
map
((
Measurement
measurement
)
{
return
Polygon
(
points:
measurement
.
cornerList
.
map
((
Corner
corner
)
{
// Map corner coordinates to LatLng objects
return
LatLng
(
corner
.
latitude
,
corner
.
longitude
);
})
.
toList
(),
/*onTap: () {
setState(() {
selectedMarker = measurement;
});
},*/
color:
Colors
.
blue
,
isFilled:
true
,
);
})
.
toList
(),
)
],
);
}
}
This diff is collapsed.
Click to expand it.
app/lib/pages/widgets/sat_layer.dart
0 → 100644
+
0
−
0
View file @
93d62e1d
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment