Does CarPlay support the use of SF Symbols for CPMapButtons or CPBarButtons? The following code does shows an invisible button on the CPMapTemplate.
let recenterButton = CPMapButton { _ in
recenterAction()
}
recenterButton.isHidden = false
recenterButton.isEnabled = true
recenterButton.image = UIImage(systemName: "location.fill")
If I use an image from my Assets folder, it works fine. Thoughts?