ios – 确定纬度/经度点是否在Mapview中的MKPolygon中?

前端之家收集整理的这篇文章主要介绍了ios – 确定纬度/经度点是否在Mapview中的MKPolygon中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
此时,我正在试图弄清楚MKMapView上的坐标是否在提前绘制出来的纬度/经度的MKPolygon内.

我正在使用CGPathContainsPoint来确定坐标是否在地图上的多边形内,但无论我选择哪个坐标,它总是返回false.

任何人都可以解释究竟出了什么问题?下面是我在Swift中的代码.

  1. class ViewController: UIViewController,MKMapViewDelegate
  2.  
  3. @IBOutlet weak var mapView: MKMapView!
  4.  
  5. let initialLocation = CLLocation(latitude: 43.656734,longitude: -79.381576)
  6. let point = CGPointMake(43.656734,-79.381576)
  7. let regionRadius: CLLocationDistance = 500
  8. let point1 = CLLocationCoordinate2D(latitude: 43.656734,longitude: -79.381576)
  9.  
  10. var points = [CLLocationCoordinate2DMake(43.655782,-79.382094),CLLocationCoordinate2DMake(43.657499,-79.382310),CLLocationCoordinate2DMake(43.656656,-79.380497),CLLocationCoordinate2DMake(43.655782,-79.382094)]
  11.  
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14.  
  15. centerMapOnLocation(initialLocation)
  16.  
  17. let polygon = MKPolygon(coordinates: &points,count: points.count)
  18. mapView.addOverlay(polygon)
  19.  
  20. var annotation = MKPointAnnotation()
  21. annotation.coordinate = point1
  22. annotation.title = "Test"
  23. annotation.subtitle = "Test"
  24.  
  25. mapView.addAnnotation(annotation)
  26. self.mapView.delegate = self
  27.  
  28. }
  29.  
  30. func centerMapOnLocation(location: CLLocation) {
  31. let coordinateRegion = MKCoordinateRegionMakeWithDistance(location.coordinate,regionRadius * 2.0,regionRadius * 2.0)
  32.  
  33. mapView.setRegion(coordinateRegion,animated: true)
  34. }
  35.  
  36. func mapView(mapView: MKMapView!,rendererForOverlay overlay: MKOverlay!) -> MKOverlayRenderer! {
  37. if overlay is MKPolygon {
  38. let polygonView = MKPolygonRenderer(overlay: overlay)
  39. polygonView.strokeColor = UIColor.redColor()
  40.  
  41. if CGPathContainsPoint(polygonView.path,nil,CGPointMake(43.656734,-79.381576),true) {
  42. print("True!!!!!")
  43. } else {
  44. println("False")
  45. }
  46.  
  47. return polygonView
  48. }
  49. return nil
  50. }

解决方法

针对Swift 3进行了更新
  1. let polygonRenderer = MKPolygonRenderer(polygon: polygon)
  2. let mapPoint: MKMapPoint = MKMapPointForCoordinate(coordinate)
  3. let polygonViewPoint: CGPoint = polygonRenderer.point(for: mapPoint)
  4.  
  5. if polygonRenderer.path.contains(polygonViewPoint)
  6. {
  7. print("Your location was inside your polygon.")
  8. }

猜你在找的iOS相关文章