I was wondering if Mapbox had any other callout buttons rather than just the seven provided?
let button = UIButton(type: .detailDisclosure)
Or if there was a quick fix to converting these UIButtons into UIImages in order to create my own buttons.
Yes, you can use the methods
func mapView(_ mapView: MGLMapView, leftCalloutAccessoryViewFor annotation: MGLAnnotation) -> UIView?andfunc mapView(_ mapView: MGLMapView, rightCalloutAccessoryViewFor annotation: MGLAnnotation) -> UIView?to create your own. Set the button type to.customFor example: