Map
Map copied to clipboard
MKMapView wrapper for SwiftUI as drop-in to MapKit's SwiftUI view. Easily extensible annotations and overlays, iOS 13 support and backwards compatible with MKAnnotation and MKOverlay!
NOTE: This builds on #48, since I also needed those attributes to help control how my markers cluster. If #48 gets merged first, this PR will be slightly easier to...
Running
We can't run this project using Xcode . It was Building as well but it's didn't run on simulator?
When I use ignoreSafeArea or edgesIgnoringSafeArea(.all) in my code and if I zoom, my annotations aren't immobile and move. To fix the problem I have to add a title with...
based on the work of @RomanPodymov
I'm trying to use Map library to implement a Map where is showed some ViewMapAnnotation, as much as the user wants to show, but I'm not able to show a...
Hello! I have a filter system in my App, which basically filters the visible annotations on the map. Based on some values, I show the appropriate annotations. I also cluster...
This is not an issue perse but more like a feature request, the [README.md](https://github.com/pauljohanneskraft/Map?ref=iosexample.com#readme) has a few lines on how to draw polylines on map elements but doesn't seem to...
Hi, trying to render some images on top of a map on my Apple Watch (rain radar gifs on top of map) I did this on the web previously and...
These changes achieve 2 main things: 1. The SwiftUI view's correctly follow the `MKMapAnnotationView`'s frame around on the map. This fixes using `onTapGesture` directly on the SwiftUI view that represents...
The onTapGesture is not working inside the ViewMapAnnotation, here is my code: `Map( coordinateRegion: $region, type: .standard, pointOfInterestFilter: .includingAll, interactionModes: [.all], annotationItems: evChargerManager.evChargers, annotationContent: { charger in ViewMapAnnotation(coordinate: (charger.addressInfo?.coordinates)!) {...