在我的项目中,我正在使用MK map 和uicollection视图。在 map 视图中,根据用户当前位置显示最近的用户 friend 位置 map 注释。在与用户 friend 相同的集合视图中,UICollection视图中显示位置名称和距离。 (注意:为进行收集,我使用了UPCarouselFlowLayout cocopod库)
在这里,我想突出显示离用户当前位置最近的 map 注释标记,并且应该在 map 中调出并刷卡收集 map 注释。
这是我为最近的用户 friend 位置和集合视图尝试的代码:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
if annotation is MKUserLocation {
let pin = mapView.view(for: annotation) ?? MKAnnotationView(annotation: annotation, reuseIdentifier: nil)
pin.image = UIImage(named: "carIcon")
userPinView = pin
return pin
}
let annotationIdentifier = "AnnotationIdentifier"
var annotationView = mapView.dequeueReusableAnnotationView(withIdentifier: annotationIdentifier)
if annotationView == nil {
annotationView = MKAnnotationView(annotation: annotation, reuseIdentifier: annotationIdentifier)
}
else {
annotationView!.annotation = annotation
}
print("Get parking array count",parkingTypeArray.count)
if parkingTypeArray.count > 0 {
print("parking ty \(parkingTypeArray)")
//
for cameraa in parkingTypeArray.enumerated() {
if cameraa.element == "Free" {
let pinImage = UIImage(named: "free")
annotationView!.image = pinImage
}else if cameraa.element == "Paid" {
let pinImage = UIImage(named: "paid")
annotationView!.image = pinImage
}
}
}
return annotationView
}
这里是收集视图的代码:
//UICollection view - Location for parking car and street name
extension HomeViewController : UICollectionViewDataSource, UICollectionViewDelegate {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return cameraDetails.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = nearestCurrentLocationCollection.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! nearestLocationCollectionViewCell
if self.cameraImageArray.count > 0 {
cell.locationImage.sd_setImage(with: URL(string:
self.cameraImageArray[indexPath.row]))
print("get location image",URL(string:
self.cameraImageArray[indexPath.row]))
}
if self.cameraDetails.count > 0 {
cell.locationName.text = self.cameraDetails[indexPath.row]
}
// cell.locationDistance.text = locationDistance[indexPath.row]
if distanceArray.count > 0 {
cell.locationDistance.text = String(format: " Distance : %.2f ", distanceArray[indexPath.row]/1000)
}
// self.activityIndicator.stopAnimating()
// self.activityIndicator.isHidden = true
return cell
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
moveMapPage()
}
fileprivate var pageSize: CGSize {
let layout = self.nearestCurrentLocationCollection.collectionViewLayout as! UPCarouselFlowLayout
var pageSize = layout.itemSize
if layout.scrollDirection == .horizontal {
pageSize.width += layout.minimumLineSpacing
} else {
pageSize.height += layout.minimumLineSpacing
}
return pageSize
}
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
let layout = nearestCurrentLocationCollection.collectionViewLayout as! UPCarouselFlowLayout
let pageSide = (layout.scrollDirection == .horizontal) ? self.pageSize.width : self.pageSize.height
let offset = (layout.scrollDirection == .horizontal) ? scrollView.contentOffset.x : scrollView.contentOffset.y
currentPage = Int(floor((offset - pageSide / 2) / pageSide) + 1)
print("currentpage::::\(self.currentPage)")
if let selectedAnnotation = mapView.selectedAnnotations.first {
// Ignore if correspondent annotation is already selected
if
selectedAnnotation.isEqual(self.mapView.annotations[currentPage]) {
self.mapView.selectAnnotation(self.mapView.annotations[currentPage], animated: true)
}
}
}
}
最佳答案
尝试像这样对我有用UICollectionView
代表方法
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
for annotations_item in mapView.annotations{
if annotations_item.title == Arr_Map_Data[indexPath.row].Title{
self.mapView.selectAnnotation(annotations_item, animated: true)
}
}
}
MapView委托方法
func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {
// first ensure that it really is an EventAnnotation:
// Note :- Here get your Annotation I used MyPointAnnotation custom class that's why use that
if let eventAnnotation = view.annotation as? MyPointAnnotation {
if let index = self.Arr_Map_Comparables.index(of: eventAnnotation.obj!){
let indexPath = IndexPath(row: index, section: 0)
collectionView.scrollToItem(at: indexPath, at: .top, animated: true)
}
}
}
关于ios - 在iOS Swift中滑动集合 View 时如何调用 map 注释?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51796303/