Google maps iOS SDK doesn't seem to take care of the new Dark mode.
Having issue with white background/white label:
While regular light mode is working as expected:
Any known work-arounds?
Google maps iOS SDK doesn't seem to take care of the new Dark mode.
Having issue with white background/white label:
While regular light mode is working as expected:
Any known work-arounds?
The issue is fixed in GoogleMaps 3.5.0!
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