Notification map dynamic attachment zoom in

I am sending a notification to my iPhone with a map as dynamic attachment. This works perfectly fine, however when I view the map, it is zoomed out so far, making it impossible to determine where the pin is actually located.

I can imagine for certain cases, this might be fine, but I would like to see a zoomed in version of the map to be able to distinguish the street names. Is it possible to set a zoom level for the map shown in the push notification?

Ok, just looked through the iOS code on github and found the answer myself:

let span = MKCoordinateSpan(latitudeDelta: 0.1, longitudeDelta: 0.1)

It is a fixed span. I guess I will add a pull request to make this configurable.

And that was quick, it is already merged :slight_smile: