12

多年来,我一直试图在地图视图上放置可拖动的注释。(我使用的是默认图钉,而不是我自己的图钉)到目前为止,我只能在设定的坐标处显示它(真的不是什么成就),我需要首先获取注释才能对被选中做出反应,它没有永远不会被didChangeDragStatefunc 接收。然后我需要能够拖动它,将其放置在新位置并获取新位置的坐标。

我对 Swift 相当陌生,但我承担了一个相当困难的项目。我已经查看了几乎所有可以在谷歌上找到的“ MKAnnotationSwift 中的可拖动 mapkit”和类似变体。(编辑:我没有找到任何可以阐明我的问题的答案,所有其他答案都给出了如何上传个性化MKAnnotation的答案。他们都有标题字段,但没有一个答案提到标题字段是必要的,这结果是主要问题。他们只提到我应该设置dragState来控制引脚的移动,但在我的情况下这结果是不正确的,如下所示)无论如何 !下面是我尝试实现 mapView 并添加注释的代码。

var currentLat:CLLocationDegrees!
var currentLong:CLLocationDegrees!
var currentCoordinate:CLLocationCoordinate2D! 
....
override func viewDidAppear(animated: Bool) {
    let annotation = PinAnnotationClass()
    annotation.setCoordinate(currentCoordinate)
    //annotation.setCoordinate(currentCoordinate)
    //AnnotationView()
    self.mapView.addAnnotation(annotation)
}

override func viewDidLoad() {
    super.viewDidLoad()
    println("hello!")
    self.mapView.delegate = self
    loadMap()

    findPath()
}

func loadMap()
{
    currentCoordinate = CLLocationCoordinate2DMake(currentLat, currentLong)
    var mapSpan = MKCoordinateSpanMake(0.01, 0.01)
    var mapRegion = MKCoordinateRegionMake(currentCoordinate, mapSpan)
    self.mapView.setRegion(mapRegion, animated: true)
}

随着扩展:

extension DetailsViewController: MKMapViewDelegate {    
func mapView(mapView: MKMapView!,
    viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {

        if annotation is MKUserLocation {
            //return nil so map view draws "blue dot" for standard user location
            return nil
        }
            let reuseId = "pin"

            var pinView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId) as? MKPinAnnotationView
            if pinView == nil {
                pinView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
                pinView!.canShowCallout = true
                pinView!.draggable = true
                pinView!.annotation.coordinate
                pinView!.animatesDrop = true
                pinView!.pinColor = .Green
            }
            else {
                pinView!.annotation = annotation
            }

            return pinView
}

  func mapView(mapView: MKMapView!, annotationView view: MKAnnotationView!, didChangeDragState newState: MKAnnotationViewDragState, fromOldState oldState: MKAnnotationViewDragState) {
    if (newState == MKAnnotationViewDragState.Starting) {
        view.dragState = MKAnnotationViewDragState.Dragging
    } else if (newState == MKAnnotationViewDragState.Ending || newState == MKAnnotationViewDragState.Canceling){
        view.dragState = MKAnnotationViewDragState.None
    }
}

func mapView(mapView: MKMapView!, annotationView view: MKAnnotationView!, calloutAccessoryControlTapped control: UIControl!) {
    if let annotation = view.annotation as? PinAnnotationClass{
    }
}

我还有一个自定义 PinAnnotation 类:

import Foundation
import MapKit

class PinAnnotationClass : NSObject, MKAnnotation {
private var coord: CLLocationCoordinate2D = CLLocationCoordinate2D(latitude: 0, longitude: 0)

var coordinate: CLLocationCoordinate2D {
    get {
        return coord
    }
}

var title: String = ""
var subtitle: String = ""

func setCoordinate(newCoordinate: CLLocationCoordinate2D) {
    self.coord = newCoordinate
}
4

1 回答 1

15

最初的问题是title未设置注释。

如果未设置注释title,则无法将其设置为“选定”状态,并且不会显示标注,didSelectAnnotationView也不会被调用。

由于要拖动注解,必须先选中它,如果没有设置,您将无法拖动它title

因此,在创建注释时,将其设置title为:

let annotation = PinAnnotationClass()
annotation.title = "hello"
annotation.setCoordinate(currentCoordinate)


这至少应该让您开始拖动它,但是由于您使用的是 anMKPinAnnotationView而不是普通的MKAnnotationView,因此您不需要实现didChangeDragState. 事实上,如果你在使用MKPinAnnotationView的时候实现了它,注解将无法正常拖动。

didChangeDragState中,删除设置的代码view.dragState-使用时不需要它MKPinAnnotationView

相反,您可以只记录删除注释的坐标:

func mapView(mapView: MKMapView!, annotationView view: MKAnnotationView!, didChangeDragState newState: MKAnnotationViewDragState, fromOldState oldState: MKAnnotationViewDragState) {

    if newState == MKAnnotationViewDragState.Ending {
        let ann = view.annotation
        print("annotation dropped at: \(ann!.coordinate.latitude),\(ann!.coordinate.longitude)")
    }
}


不相关,但PinAnnotationClass实现比它需要的更复杂。您不需要为coordinate. 只需声明coordinate,getter/setter 将为您完成:

class PinAnnotationClass : NSObject, MKAnnotation {
    var title: String = ""
    var subtitle: String = ""
    var coordinate: CLLocationCoordinate2D = kCLLocationCoordinate2DInvalid
    //kCLLocationCoordinate2DInvalid is a pre-defined constant
    //better than using "0,0" which are technically valid
}

您还需要更改坐标的分配方式:

//annotation.setCoordinate(currentCoordinate)  //old
annotation.coordinate = currentCoordinate      //new


最后,也无关,但这条线在viewForAnnotation

pinView!.annotation.coordinate

意味着并且什么都不做,删除它。

于 2015-05-04T02:57:11.270 回答