feat : profile and map

This commit is contained in:
2025-07-28 15:57:30 +03:30
parent 6057976b46
commit d9724f681c
67 changed files with 2835 additions and 444 deletions

View File

@@ -54,7 +54,7 @@ class InspectionMapPage extends GetView<InspectionMapLogic> {
markers: markers
.map(
(e) => markerWidget(
marker: e,
marker: LatLng(e.lat??0, e.long??0),
onTap: () {
Get.bottomSheet(
selectedLocationWidget2(
@@ -295,6 +295,7 @@ class InspectionMapPage extends GetView<InspectionMapLogic> {
}
Marker markerWidget({required LatLng marker, required VoidCallback onTap}) {
iLog('lat: ${marker.latitude}, lng: ${marker.longitude}');
return Marker(
point: marker,
child: GestureDetector(