如何在MKAnnotation视图中使用mappin上的索引号



朋友们好!我正在开发一个功能,以显示索引号码在地图引脚和设置图像在iPhone的mapview所以请告诉我任何链接或任何想法来开发这个功能。

提前感谢。

在上下文中什么是索引号?它只是一个数字,你的代码显示?如果是这样,您的问题是如何在地图上显示文本。使用地图叠加。图像也是一样。搜索MKMapOverlay,从那里开始。

我在注释视图中使用了索引号的方法。

func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
        guard !(annotation is MKUserLocation) else {
            return nil
        }

        // Better to make this class property
        let annotationIdentifier = "AnnotationIdentifier"
        var annotationView = MKAnnotationView()
        annotationView = MKAnnotationView(annotation: annotation, reuseIdentifier: annotationIdentifier)
        annotationView.frame = CGRect(x: annotationView.frame.origin.x, y: annotationView.frame.origin.y, width: 80, height: 200)
        annotationView.annotation = annotation
        annotationView.tag = index
        index += 1
        let imageViewPin = UIImageView(frame: CGRect(x: 0, y: 0, width: 30, height: 40))
        imageViewPin.center = CGPoint(x: annotationView.center.x, y: annotationView.center.y - 11)
        imageViewPin.image = UIImage(named: "green_pin")
        annotationView.addSubview(imageViewPin)
        return annotationView
    }
func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {
        debugPrint(view.tag)
}

最新更新