bug fixes
This commit is contained in:
@ -427,6 +427,13 @@ class BottomSheetNew extends GetView<BottomSheetController> {
|
||||
],
|
||||
),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed:() async {
|
||||
destinationController.CallforCheckin(destinationController.festuretoDestination(indexController.currentFeature[0]));
|
||||
},
|
||||
child:Text("チェックイン")
|
||||
),
|
||||
SizedBox(width: 16,),
|
||||
ElevatedButton(
|
||||
onPressed:() async {
|
||||
GeoJsonFeature<GeoJsonMultiPoint> mp = indexController.currentFeature[0] as GeoJsonFeature<GeoJsonMultiPoint>;
|
||||
@ -445,7 +452,8 @@ class BottomSheetNew extends GetView<BottomSheetController> {
|
||||
|
||||
destinationController.destinationMatrixFromCurrentPoint([ds, tp]);
|
||||
},
|
||||
child:Text("ここへ行く")),
|
||||
child:Text("ここへ行く")
|
||||
),
|
||||
],
|
||||
),
|
||||
SizedBox(height: 8.0,),
|
||||
|
||||
@ -33,7 +33,6 @@ class MapWidget extends StatelessWidget {
|
||||
InkWell(
|
||||
onTap: () {
|
||||
GeoJsonFeature? fs = indexController.getFeatureForLatLong(p.geoSerie!.geoPoints[0].latitude, p.geoSerie!.geoPoints[0].longitude);
|
||||
print("------- fs ${fs}------");
|
||||
if(fs != null){
|
||||
indexController.currentFeature.clear();
|
||||
indexController.currentFeature.add(fs);
|
||||
@ -154,7 +153,7 @@ class MapWidget extends StatelessWidget {
|
||||
}).toList(),
|
||||
)
|
||||
:
|
||||
Center(child: CircularProgressIndicator())
|
||||
const Center(child: CircularProgressIndicator())
|
||||
,
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user