struct ContentView: View {
   var body: some View {
      Map()
         .mapStyle(.standard(pointsOfInterest: .including([.cafe])))
         .ignoresSafeArea()
   }
}