Posts

Showing posts with the label mapbox

Marker move According to Route MapBox

Image
Clash Royale CLAN TAG #URR8PPP Marker move According to Route MapBox I have two annotations. There is an image on annotation. I want the image head toward route in MapBox. Here is what I have tried: func drawAnnoation (orgin :CLLocationCoordinate2D ,destination :CLLocationCoordinate2D){ if annotation == nil { annotation = CameraAnnotation(coordinate: orgin, title: "SOURCE", subtitle: "D", image:"selfImage" ) let source = orgin annotation.coordinate = source annotation.title = "ddd" map.setCenter(orgin, zoomLevel: 18, animated: false) map.addAnnotation(annotation) } else { UIView.animate(withDuration: 1.5, animations: { // Here Core Animation calls MapBox using an implicit animation. self.annotation.coordinate = orgin }) } if annotations == nil { let annotations = NoteAnnotation(coordinate: destin...

Failed to verify bitcode in Mapbox.framework

Image
Clash Royale CLAN TAG #URR8PPP Failed to verify bitcode in Mapbox.framework I have implement mapbox in the project , its ok work in simulator and device but when i am going to create build the issues has come . the issues attach here with screenshoot. 2 Answers 2 If I remember correctly, you will have to select your projects target, go from the General tab to the Build Settings tab, search for Enable Bitcode and set it to No. Of course, remember to do a new Archive before uploading it again. I had many many issues with Mapbox and zero support from their team. I also had a bunch of error messages when uploading. One work around was using Carthage and manually adding in the frameworks instead of using Cocoapods. I hope this helps. Good luck! Thanks Daniel for help.Its work for me. you save my time.thanks a lot. – Niraj Paul May 22 at 6:17...