5

Google maps iOS SDK doesn't seem to take care of the new Dark mode.

Having issue with white background/white label:

Dark mode: problem

While regular light mode is working as expected:

Light mode: OK

Any known work-arounds?

Alexander
  • 452
  • 6
  • 15
  • I have not found a workaround, yet. As every day the iOS 13 dark mode user community grows, this effect/bug gets more important to fix. – user1971035 Sep 28 '19 at 12:03

2 Answers2

1

The issue is fixed in GoogleMaps 3.5.0!

Alexander
  • 452
  • 6
  • 15
-1

Try to set tracksInfoWindowChanges property of the GMSMarker to be true. By default, it is false.

tracksInfoWindowChanges controls whether the info window for marker should be redrawn every frame.

Simple code for creating the map marker will look like this:

let marker = GMSMarker()
marker.tracksInfoWindowChanges = true