我有一个纬度数组和另一个经度数组,我将其添加到CLLocationCoordinate2D类型的数组中。然后我使用新数组来注释地图上的多个点。一些,或大多数,甚至所有注释都在地图上显示但是当我放大(是的,放大IN)时,一些注释消失,然后回来,或者不。关于如何让它们全部可见的任何想法?这是我在缩小时所期望的行为,而不是。
以下是我用于上述内容的代码。
import UIKit
import MapKit
import CoreLocation
class MultiMapVC: UIViewController, CLLocationManagerDelegate {
@IBOutlet weak var multiEventMap: MKMapView!
var latDouble = Double()
var longDouble = Double()
let manager = CLLocationManager()
var receivedArrayOfLats = [Double]()
var receivedArrayOfLongs = [Double]()
var locations = [CLLocationCoordinate2D]()
func locationManager(_ manager: CLLocationManager, didUpdateLocations uLocation: [CLLocation]) {
let userLocation = uLocation[0]
let span:MKCoordinateSpan = MKCoordinateSpanMake(0.3, 0.3)
let usersLocation = userLocation.coordinate
let region:MKCoordinateRegion = MKCoordinateRegionMake(usersLocation, span)
multiEventMap.setRegion(region, animated: true)
manager.distanceFilter = 1000
self.multiEventMap.showsUserLocation = true
}
func multiPoint() {
var coordinateArray: [CLLocationCoordinate2D] = []
print ("Received Longitude Count = \(receivedArrayOfLongs.count)")
print ("Received Latitude Count = \(receivedArrayOfLats.count)")
if receivedArrayOfLats.count == receivedArrayOfLongs.count {
for i in 0 ..< receivedArrayOfLats.count {
let eventLocation = CLLocationCoordinate2DMake(receivedArrayOfLats[i], receivedArrayOfLongs[i])
coordinateArray.append(eventLocation)
print (coordinateArray.count)
}
}
for events in coordinateArray {
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(latitude: events.latitude, longitude: events.longitude)
multiEventMap.addAnnotation(annotation)
}
}
override func viewDidLoad() {
super.viewDidLoad()
manager.delegate = self
manager.desiredAccuracy = kCLLocationAccuracyBest
manager.requestWhenInUseAuthorization()
manager.startUpdatingLocation()
multiPoint()
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
multiEventMap.removeFromSuperview()
self.multiEventMap = nil
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
答案 0 :(得分:9)
NiltiakSivad的解决方案有效,但它恢复到旧的iOS 10外观。如果你想为iOS 11保留新的iOS 11气球标记,并且只使用旧的iOS版本,那么你可以实现如下的委托方法:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
let reuseIdentifier = "annotationView"
var view = mapView.dequeueReusableAnnotationView(withIdentifier: reuseIdentifier)
if #available(iOS 11.0, *) {
if view == nil {
view = MKMarkerAnnotationView(annotation: annotation, reuseIdentifier: reuseIdentifier)
}
view?.displayPriority = .required
} else {
if view == nil {
view = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseIdentifier)
}
}
view?.annotation = annotation
view?.canShowCallout = true
return view
}
答案 1 :(得分:4)
我遇到了类似的问题。我最好的猜测是它与iOS 11如何检测针碰撞有关。实现自定义注释视图或恢复使用iOS 10引脚为我解决了问题。
例如,实现以下内容应修复您的代码:
class MultiMapVC: UIViewController, MKMapViewDelegate, CLLocationManagerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
mapView.delegate = self
}
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
guard let annotation = annotation as? MKPointAnnotation else { return nil }
let identifier = "pin-marker"
var view: MKAnnotationView
if let dequeuedView = mapView.dequeueReusableAnnotationView(withIdentifier: identifier) as? MKPinAnnotationView {
dequeuedView.annotation = annotation
view = dequeuedView
} else {
view = MKPinAnnotationView(annotation: annotation, reuseIdentifier: identifier)
}
return view
}
}
如果这不起作用,则有displayPriority
属性值得研究,因为它有助于确定何时应以不同的缩放级别隐藏/显示引脚。有关详情,请访问https://developer.apple.com/documentation/mapkit/mkannotationview/2867298-displaypriority
希望这有帮助。
答案 2 :(得分:2)
Leszek Szary接受的答案是正确的。
但是有一些标记。有时MKMarkerAnnotationView
不会呈现,即使
view.displayPriority = .required
已设置。
您看到的是不同规则的组合。
MKAnnotationViews
从地图的顶部到底部呈现。 (北方在哪里都没关系。)MapKit
决定绘制重叠的MKAnnotationViews
,那么靠近底部的MKAnnotationView
将绘制在顶部(因为稍后绘制)MKAnnotationViews
,而且在MKMArkerAnnotationViews
下呈现的标题都需要空间。这些标题的呈现受markerView.titleVisibility
的影响。如果将markerView.titleVisibility
设置为.visible
(而不是默认的.adaptive
),则此标题比稍后渲染的MarkerAnnotationView
强,即使后面的{{1 }}有一个MarkerAnnotationView
。靠近底部的displayPriority = .required
不会呈现。MarkerAnnotationView
的{{1}}低,甚至会发生这种情况。因此,MarkerAnnotationView
和displayPriority
较低的MarkerAnnotationView
可使displayPriority
靠近底部,而.titleVisibility = .visible
消失。我不知道有关此行为的文档。这是我在iOS 12上进行实验的结果。我的描述被简化了。
答案 3 :(得分:1)
仅在首次分配MKMarkAnnotationView时,我才设置annotationView.displayPriority = .required
。通常,这就是您需要做的所有事情,但是每次重新使用单元时都进行设置,对我来说就是个问题。
答案 4 :(得分:0)
我看到Xcode 10和iOS 12+作为我的部署目标存在类似的问题。 Apple员工(https://forums.developer.apple.com/thread/92839)的帖子建议在出队标记上切换.isHidden
属性。这样可以改善情况,但不能完全解决问题。
result?.isHidden = true
result?.isHidden = false
return result