From 1fb74e8dfa33dfddd0f20f2577c71a57a63af055 Mon Sep 17 00:00:00 2001 From: Alfonso Grillo Date: Tue, 18 Jul 2023 15:16:23 +0200 Subject: [PATCH] Fix map tint color (#1354) --- ElementX/Sources/Other/MapLibre/MapLibreMapView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/ElementX/Sources/Other/MapLibre/MapLibreMapView.swift b/ElementX/Sources/Other/MapLibre/MapLibreMapView.swift index 3f5309cb9..cc66ee623 100644 --- a/ElementX/Sources/Other/MapLibre/MapLibreMapView.swift +++ b/ElementX/Sources/Other/MapLibre/MapLibreMapView.swift @@ -95,6 +95,7 @@ struct MapLibreMapView: UIViewRepresentable { mapView.logoViewPosition = .topLeft mapView.attributionButtonPosition = .topLeft mapView.attributionButtonMargins = .init(x: mapView.logoView.frame.maxX + 8, y: mapView.logoView.center.y / 2) + mapView.tintColor = .black return mapView }