0

我想在自定义引脚上显示动态标签。我使用了 MKMapView、CLLocationManager、MKAnnotationView 和 MKPinAnnotationView。所以,请朋友们帮帮我。

像:

在此处输入图像描述

4

2 回答 2

1

首先创建一个基于自定义MKAnnotationView的类:

斯威夫特 3

  class CustomAnnotationView: MKAnnotationView {  
    var label: UILabel?

    override init(annotation: MKAnnotation?, reuseIdentifier: String?) {
      super.init(annotation: annotation, reuseIdentifier: reuseIdentifier)
    }

    required init?(coder aDecoder: NSCoder) {
      super.init(coder: aDecoder)
    }
  }

然后确保您的 ViewController 类添加NKMapViewDelegate为委托:

斯威夫特 3

import UIKit
import MapKit

class ViewController: MKMapViewDelegate {
  override func viewDidLoad() {
    super.viewDidLoad()

    mapView.delegate = self
  }
}

然后将以下方法添加到您ViewController的地图中,每当向地图添加注释时,MapView 都会调用该方法:

斯威夫特 3

  func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
    let annotationIdentifier = "MyCustomAnnotation"
    guard !annotation.isKind(of: MKUserLocation.self) else {
      return nil
    }

    var annotationView = mapView.dequeueReusableAnnotationView(withIdentifier: annotationIdentifier)
    if annotationView == nil {
      annotationView = CustomAnnotationView(annotation: annotation, reuseIdentifier: annotationIdentifier)
      if case let annotationView as CustomAnnotationView = annotationView {
        annotationView.isEnabled = true
        annotationView.canShowCallout = false
        annotationView.label = UILabel(frame: CGRect(x: -5.5, y: 11.0, width: 22.0, height: 16.5))
        if let label = annotationView.label {
          label.font = UIFont(name: "HelveticaNeue", size: 16.0)
          label.textAlignment = .center
          label.textColor = #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1)
          label.adjustsFontSizeToFitWidth = true
          annotationView.addSubview(label)
        }
      }
    }

    if case let annotationView as CustomAnnotationView = annotationView {
      annotationView.annotation = annotation
      annotationView.image = #imageLiteral(resourceName: "YourPinImage")
      if let title = annotation.title,
        let label = annotationView.label {
        label.text = title
      }
    }

    return annotationView
  }

完成所有这些后,可以像这样添加注释:

斯威夫特 3

  let annotation = MKPointAnnotation()
  annotation.coordinate = CLLocationCoordinate2D(latitude: /* latitude */, longitude: /* longitude */)
  annotation.title = "Your Pin Title"
  mapView.addAnnotation(annotation)
于 2018-01-06T17:24:55.063 回答
0

如果您的意思是您希望图钉上有一个字母,那么您需要将注释视图的图像设置为viewForAnnotation. 如果您打算更改每个注释的图钉,则需要动态创建图像。他们将有很多关于这个的代码,但归结为这个

annotationView.image = anImage;
于 2013-02-16T08:18:18.387 回答