mapAppSheet method
Implementation
CupertinoActionSheet mapAppSheet() {
return CupertinoActionSheet(
actions: [
...navigationMapList()
.map((e) => CupertinoActionSheetAction(
onPressed: () =>
e.jumpFunc(widget.longitude, widget.latitude),
child: Text(
e.name,
style: const TextStyle(
fontSize: 14.0,
),
),
))
.toList()
],
);
}