Map(position: $appData.cameraPos, selection: $selectedItem) {
   ForEach(appData.listLocations, id: \.self) { place in
      Marker(item: place)
         .tag(MapSelection(place))
   }
   .mapItemDetailSelectionAccessory(.callout)
}