fix : map permission and marker
This commit is contained in:
@@ -6,6 +6,9 @@ import 'package:flutter_map_animations/flutter_map_animations.dart';
|
|||||||
import 'package:geolocator/geolocator.dart';
|
import 'package:geolocator/geolocator.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:latlong2/latlong.dart';
|
import 'package:latlong2/latlong.dart';
|
||||||
|
import 'package:rasadyar_core/utils/logger_utils.dart';
|
||||||
|
|
||||||
|
enum ErrorLocationType { serviceDisabled, permissionDenied, none }
|
||||||
|
|
||||||
class MapWidgetLogic extends GetxController with GetTickerProviderStateMixin {
|
class MapWidgetLogic extends GetxController with GetTickerProviderStateMixin {
|
||||||
Rx<LatLng> currentLocation = LatLng(35.824891, 50.948025).obs;
|
Rx<LatLng> currentLocation = LatLng(35.824891, 50.948025).obs;
|
||||||
@@ -14,7 +17,7 @@ class MapWidgetLogic extends GetxController with GetTickerProviderStateMixin {
|
|||||||
RxList<LatLng> markers = <LatLng>[].obs;
|
RxList<LatLng> markers = <LatLng>[].obs;
|
||||||
RxList<LatLng> allMarkers = <LatLng>[].obs;
|
RxList<LatLng> allMarkers = <LatLng>[].obs;
|
||||||
Rx<MapController> mapController = MapController().obs;
|
Rx<MapController> mapController = MapController().obs;
|
||||||
|
RxList<ErrorLocationType> errorLocationType = RxList();
|
||||||
late final AnimatedMapController animatedMapController;
|
late final AnimatedMapController animatedMapController;
|
||||||
Timer? _debounceTimer;
|
Timer? _debounceTimer;
|
||||||
RxBool isLoading = false.obs;
|
RxBool isLoading = false.obs;
|
||||||
@@ -28,6 +31,30 @@ class MapWidgetLogic extends GetxController with GetTickerProviderStateMixin {
|
|||||||
curve: Curves.easeInOut,
|
curve: Curves.easeInOut,
|
||||||
cancelPreviousAnimations: true,
|
cancelPreviousAnimations: true,
|
||||||
);
|
);
|
||||||
|
locationServiceEnabled().then((value) {
|
||||||
|
if (!value) {
|
||||||
|
errorLocationType.add(ErrorLocationType.serviceDisabled);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
checkPermission().then((value) {
|
||||||
|
if (!value) {
|
||||||
|
errorLocationType.add(ErrorLocationType.permissionDenied);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
listenToLocationServiceStatus().listen((event) {
|
||||||
|
if (!event) {
|
||||||
|
errorLocationType.add(ErrorLocationType.serviceDisabled);
|
||||||
|
} else {
|
||||||
|
errorLocationType.remove(ErrorLocationType.serviceDisabled);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void onReady() {
|
||||||
|
super.onReady();
|
||||||
determineCurrentPosition();
|
determineCurrentPosition();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -38,6 +65,47 @@ class MapWidgetLogic extends GetxController with GetTickerProviderStateMixin {
|
|||||||
mapController.close();
|
mapController.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Stream<bool> listenToLocationServiceStatus() {
|
||||||
|
return Geolocator.getServiceStatusStream().map((status) {
|
||||||
|
return status == ServiceStatus.enabled;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<bool> locationServiceEnabled() async {
|
||||||
|
bool serviceEnabled = await Geolocator.isLocationServiceEnabled();
|
||||||
|
if (!serviceEnabled) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<bool> checkPermission({bool request = false}) async {
|
||||||
|
try {
|
||||||
|
final LocationPermission permission = await Geolocator.checkPermission();
|
||||||
|
|
||||||
|
switch (permission) {
|
||||||
|
case LocationPermission.denied:
|
||||||
|
final LocationPermission requestResult =
|
||||||
|
await Geolocator.requestPermission();
|
||||||
|
return requestResult != LocationPermission.denied &&
|
||||||
|
requestResult != LocationPermission.deniedForever;
|
||||||
|
|
||||||
|
case LocationPermission.deniedForever:
|
||||||
|
return request ? await Geolocator.openAppSettings() : false;
|
||||||
|
|
||||||
|
case LocationPermission.always:
|
||||||
|
case LocationPermission.whileInUse:
|
||||||
|
return true;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
eLog(e);
|
||||||
|
return await Geolocator.openLocationSettings();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> determineCurrentPosition() async {
|
Future<void> determineCurrentPosition() async {
|
||||||
final position = await Geolocator.getCurrentPosition(
|
final position = await Geolocator.getCurrentPosition(
|
||||||
locationSettings: AndroidSettings(accuracy: LocationAccuracy.best),
|
locationSettings: AndroidSettings(accuracy: LocationAccuracy.best),
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_map/flutter_map.dart';
|
import 'package:flutter_map/flutter_map.dart';
|
||||||
|
import 'package:geolocator/geolocator.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:latlong2/latlong.dart';
|
||||||
import 'package:rasadyar_core/presentation/common/app_color.dart';
|
import 'package:rasadyar_core/presentation/common/app_color.dart';
|
||||||
|
import 'package:rasadyar_core/presentation/common/app_fonts.dart';
|
||||||
import 'package:rasadyar_core/presentation/common/assets.gen.dart';
|
import 'package:rasadyar_core/presentation/common/assets.gen.dart';
|
||||||
|
import 'package:rasadyar_core/presentation/widget/buttons/elevated.dart';
|
||||||
import 'package:rasadyar_core/presentation/widget/buttons/fab.dart';
|
import 'package:rasadyar_core/presentation/widget/buttons/fab.dart';
|
||||||
|
import 'package:rasadyar_core/presentation/widget/buttons/outline_elevated.dart';
|
||||||
|
|
||||||
import 'logic.dart';
|
import 'logic.dart';
|
||||||
|
|
||||||
@@ -13,7 +18,99 @@ class MapWidget extends GetView<MapWidgetLogic> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Stack(
|
return Stack(
|
||||||
children: [_buildMap(), _buildGpsButton(), _buildFilterButton()],
|
children: [
|
||||||
|
ObxValue((errorType) {
|
||||||
|
if (errorType.isNotEmpty) {
|
||||||
|
if (errorType.contains(ErrorLocationType.serviceDisabled)) {
|
||||||
|
Future.microtask(() {
|
||||||
|
Get.defaultDialog(
|
||||||
|
title: 'خطا',
|
||||||
|
content: const Text('سرویس مکانیابی غیرفعال است'),
|
||||||
|
cancel: ROutlinedElevated(
|
||||||
|
text: 'بررسی مجدد',
|
||||||
|
width: 120,
|
||||||
|
textStyle: AppFonts.yekan16,
|
||||||
|
onPressed: () async {
|
||||||
|
var service = await controller.locationServiceEnabled();
|
||||||
|
if (service) {
|
||||||
|
controller.errorLocationType.remove(
|
||||||
|
ErrorLocationType.serviceDisabled,
|
||||||
|
);
|
||||||
|
Get.back();
|
||||||
|
}
|
||||||
|
// Don't call Get.back() if service is still disabled
|
||||||
|
},
|
||||||
|
),
|
||||||
|
confirm: RElevated(
|
||||||
|
text: 'روشن کردن',
|
||||||
|
textStyle: AppFonts.yekan16,
|
||||||
|
width: 120,
|
||||||
|
onPressed: () async {
|
||||||
|
var res = await Geolocator.openLocationSettings();
|
||||||
|
if (res) {
|
||||||
|
var service =
|
||||||
|
await controller.locationServiceEnabled();
|
||||||
|
if (service) {
|
||||||
|
controller.errorLocationType.remove(
|
||||||
|
ErrorLocationType.serviceDisabled,
|
||||||
|
);
|
||||||
|
Get.back();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
|
contentPadding: EdgeInsets.all(8),
|
||||||
|
onWillPop: () async {
|
||||||
|
return controller.errorLocationType.isEmpty;
|
||||||
|
},
|
||||||
|
barrierDismissible: false,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
Future.microtask(() {
|
||||||
|
Get.defaultDialog(
|
||||||
|
title: 'خطا',
|
||||||
|
content: const Text(
|
||||||
|
' دسترسی به سرویس مکانیابی غیرفعال است',
|
||||||
|
),
|
||||||
|
cancel: ROutlinedElevated(
|
||||||
|
text: 'بررسی مجدد',
|
||||||
|
width: 120,
|
||||||
|
textStyle: AppFonts.yekan16,
|
||||||
|
onPressed: () async {
|
||||||
|
await controller.checkPermission();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
confirm: RElevated(
|
||||||
|
text: 'اجازه دادن',
|
||||||
|
textStyle: AppFonts.yekan16,
|
||||||
|
width: 120,
|
||||||
|
onPressed: () async {
|
||||||
|
var res = await controller.checkPermission(
|
||||||
|
request: true,
|
||||||
|
);
|
||||||
|
if (res) {
|
||||||
|
controller.errorLocationType.remove(
|
||||||
|
ErrorLocationType.permissionDenied,
|
||||||
|
);
|
||||||
|
Get.back();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
|
contentPadding: EdgeInsets.all(8),
|
||||||
|
onWillPop: () async {
|
||||||
|
return controller.errorLocationType.isEmpty;
|
||||||
|
},
|
||||||
|
barrierDismissible: false,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return const SizedBox.shrink();
|
||||||
|
}, controller.errorLocationType),
|
||||||
|
_buildMap(), _buildGpsButton(), _buildFilterButton()],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -30,14 +127,14 @@ class MapWidget extends GetView<MapWidgetLogic> {
|
|||||||
),
|
),
|
||||||
children: [
|
children: [
|
||||||
TileLayer(urlTemplate: controller.tileType),
|
TileLayer(urlTemplate: controller.tileType),
|
||||||
/* ObxValue((markers) {
|
ObxValue((markers) {
|
||||||
return MarkerLayer(
|
return MarkerLayer(
|
||||||
markers:
|
markers:
|
||||||
markers
|
markers
|
||||||
.map((e) => markerWidget(marker: e, onTap: () {}))
|
.map((e) => markerWidget(marker: e, onTap: () {}))
|
||||||
.toList(),
|
.toList(),
|
||||||
);
|
);
|
||||||
}, controller.markers),*/
|
}, controller.markers),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}, controller.currentLocation);
|
}, controller.currentLocation);
|
||||||
@@ -73,4 +170,22 @@ class MapWidget extends GetView<MapWidgetLogic> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Marker markerWidget({required LatLng marker, required VoidCallback onTap}) {
|
||||||
|
return Marker(
|
||||||
|
point: marker,
|
||||||
|
child: GestureDetector(
|
||||||
|
onTap: onTap,
|
||||||
|
behavior: HitTestBehavior.opaque,
|
||||||
|
child: SizedBox(
|
||||||
|
width: 36,
|
||||||
|
height: 36,
|
||||||
|
child:Assets.vec.mapMarkerSvg.svg(
|
||||||
|
width: 30,
|
||||||
|
height: 30,
|
||||||
|
)
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user