ฉันมีละติจูดและลองจิจูดที่ต้องการเปิดในแอปพลิเคชันแผนที่ของฉัน ฉันพยายามรหัสนี้จากที่นี่
func goToMap(){
var lat1 : NSString = self.venueLat
var lng1 : NSString = self.venueLng
var latitude:CLLocationDegrees = lat1.doubleValue
var longitude:CLLocationDegrees = lng1.doubleValue
var coordinate = CLLocationCoordinate2DMake(latitude, longitude)
var placemark : MKPlacemark = MKPlacemark(coordinate: coordinate, addressDictionary:nil)
var mapItem:MKMapItem = MKMapItem(placemark: placemark)
mapItem.name = "Target location"
let launchOptions:NSDictionary = NSDictionary(object: MKLaunchOptionsDirectionsModeDriving, forKey: MKLaunchOptionsDirectionsModeKey)
var currentLocationMapItem:MKMapItem = MKMapItem.mapItemForCurrentLocation()
MKMapItem.openMapsWithItems([currentLocationMapItem, mapItem], launchOptions: launchOptions)
}
ฟังก์ชันนี้เปิดแผนที่ได้สำเร็จ แต่ไม่แสดงหมุดใด ๆ นอกจากนี้ยังแสดงตำแหน่งของผู้ใช้ที่ฉันไม่ต้องการ ฉันต้องการเพียงหมุดบนแผนที่สำหรับละติจูดและลองจิจูดที่ระบุ