Skip to content

Commit

Permalink
feat(trends): focus map on France
Browse files Browse the repository at this point in the history
  • Loading branch information
angristan committed Jul 22, 2021
1 parent 95f2a1d commit fbfaa83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions firstfm/Views/Trends/TrendsMapView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ struct TrendsMapView: View {

@State var coordinateRegion: MKCoordinateRegion = {
var newRegion = MKCoordinateRegion()
newRegion.center.latitude = 37.786996
newRegion.center.longitude = -122.440100
newRegion.span.latitudeDelta = 0.2
newRegion.span.longitudeDelta = 0.2
newRegion.center.latitude = 48.5776871
newRegion.center.longitude = 2.2225161
newRegion.span.latitudeDelta = 20
newRegion.span.longitudeDelta = 20
return newRegion
}()

Expand All @@ -28,7 +28,7 @@ struct TrendsMapView: View {
countryVM.getTopArtists(country: item.country)
showingSheet.toggle()
}) {
Text(item.country.emoji())
Text(item.country.emoji()).font(.system(size: 20))
}
.sheet(isPresented: $showingSheet) {
TopCountryView()
Expand Down

0 comments on commit fbfaa83

Please sign in to comment.