其中关键点就在于,判断有哪些点是在范围内的
将经纬度坐标点转化成屏幕上的点
将经纬度坐标点转化成屏幕上的点
CGPoint
annoPoint = [self.mapView
convertCoordinate:communityAnno.coordinate
toPointToView:self.mapView];
将屏幕上的坐标点转化为地图上的经纬度坐标点
CLLocationCoordinate2D
coo = [self.mapView
convertPoint:coorD.point
toCoordinateFromView:self.mapView];
--------------------------------------------------------------------------------------------------------------------------------分割线
--------------------------------------------------------------------------------------------------------------------------------分割线