Add map survey view - to measure a point

This commit is contained in:
2025-09-10 14:46:51 +02:00
parent 6c7ceac1a6
commit a3b2deec21
9 changed files with 1763 additions and 5 deletions
@@ -0,0 +1,9 @@
import 'package:get/get.dart';
import 'package:terepi_seged/pages/map_survey/presentations/controllers/map_survey_controller.dart';
class MapSurveyBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => MapSurveyController());
}
}