Fix all features

This commit is contained in:
2024-07-30 02:15:04 +09:00
parent 9c98d3ed53
commit 3d7a5ae0c1
11 changed files with 268 additions and 69 deletions

View File

@ -1628,7 +1628,7 @@ class DestinationController extends GetxController {
// 地図のイベントリスナーを設定
indexController.mapController.mapEventStream.listen((MapEvent mapEvent) {
if (mapEvent is MapEventMoveEnd) {
indexController.loadLocationsBound();
indexController.loadLocationsBound(indexController.currentUser[0]["user"]["event_code"]);
}
});
@ -1653,7 +1653,7 @@ class DestinationController extends GetxController {
);
indexController.currentBound.clear();
indexController.currentBound.add(bnds);
indexController.loadLocationsBound();
indexController.loadLocationsBound(indexController.currentUser[0]["user"]["event_code"]);
centerMapToCurrentLocation();
}
});