bug fixes

This commit is contained in:
Mohamed Nouffer
2023-08-23 17:33:26 +05:30
parent 08332d45d4
commit c41dde4c33
4 changed files with 68 additions and 53 deletions

View File

@ -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())
,
],
)