MKMapView에서 사용자 위치 주변에 반경 1000m의 원을 그립니다.
(iOS 5 및 Xcode 4.2 사용)
MKMapView가 있고 사용자 위치 주변에 반경 1000m의 원을 그리고 싶습니다.
표면적으로는 mapView : viewForAnnotation : map view delegate 메서드 를 구현 하고 사용자 위치에 대한 사용자 지정 MKAnnotationView를 추가하는 것이 완벽한 솔루션 인 것 같습니다. 다음과 같이 보일 것입니다.
- (MKAnnotationView *)mapView:(MKMapView *)mapView
viewForAnnotation:(id <MKAnnotation>)annotation
{
// If it's the user location, return my custom MKAnnotationView.
if ([annotation isKindOfClass:[MKUserLocation class]]) {
return myCustomAnnotationView;
} else {
return nil;
}
}
그러나지도의 주석은지도를 확대 및 축소 할 때 크기가 조정되지 않습니다.
그래서 MKCircle 클래스를 사용하고 내 locationManger /지도보기 델리게이트의 최신 좌표로 좌표를 설정 하여 오버레이를 추가하려고 했습니다. 그러나 MKCircle 의 좌표 속성 은 읽기 전용이므로 사용자가 이동할 때마다 오버레이를 제거한 다음 새 오버레이를 추가해야합니다. 눈에 띄는 깜박임이 발생합니다.
맵 뷰가 확장 및 축소 될 때 주석 배율을 매끄럽게 만들 수있는 방법이 있습니까? 아니면 사용자 위치의 변경에 따라 오버레이를 원활하게 이동할 수있는 좋은 방법이 있습니까?
나는 당신의 도움에 매우 감사 할 것입니다 :)
맞춤 오버레이를 사용해보세요. 이것을 viewDidLoad에 추가하십시오.
MKCircle *circle = [MKCircle circleWithCenterCoordinate:userLocation.coordinate radius:1000];
[map addOverlay:circle];
userLocation은 MKUserLocationAnnotation을 속성으로 저장하여 얻을 수 있습니다. 그런 다음 실제로 원을 그리려면 다음을 맵 뷰의 델리게이트에 넣으십시오.
- (MKOverlayRenderer *)mapView:(MKMapView *)map viewForOverlay:(id <MKOverlay>)overlay
{
MKCircleRenderer *circleView = [[MKCircleRenderer alloc] initWithOverlay:overlay];
circleView.strokeColor = [UIColor redColor];
circleView.fillColor = [[UIColor redColor] colorWithAlphaComponent:0.4];
return circleView;
}
Swift를 사용하는 iOS 8.0 용 업데이트 버전.
import Foundation
import MapKit
class MapViewController: UIViewController, CLLocationManagerDelegate, MKMapViewDelegate{
var locationManager: CLLocationManager = CLLocationManager()
@IBOutlet var mapView: MKMapView!
override func viewDidLoad() {
super.viewDidLoad()
// We use a predefined location
var location = CLLocation(latitude: 46.7667 as CLLocationDegrees, longitude: 23.58 as CLLocationDegrees)
addRadiusCircle(location)
}
func addRadiusCircle(location: CLLocation){
self.mapView.delegate = self
var circle = MKCircle(centerCoordinate: location.coordinate, radius: 10000 as CLLocationDistance)
self.mapView.addOverlay(circle)
}
func mapView(mapView: MKMapView!, rendererForOverlay overlay: MKOverlay!) -> MKOverlayRenderer! {
if overlay is MKCircle {
var circle = MKCircleRenderer(overlay: overlay)
circle.strokeColor = UIColor.redColor()
circle.fillColor = UIColor(red: 255, green: 0, blue: 0, alpha: 0.1)
circle.lineWidth = 1
return circle
} else {
return nil
}
}
}
Swift 3 / Xcode 8은 다음과 같습니다.
func addRadiusCircle(location: CLLocation){
if let poll = self.selectedPoll {
self.mapView.delegate = self
let circle = MKCircle(center: location.coordinate, radius: 10)
self.mapView.add(circle)
}
}
func mapView(_ mapView: MKMapView, rendererFor overlay: MKOverlay) -> MKOverlayRenderer {
if overlay is MKCircle {
let circle = MKCircleRenderer(overlay: overlay)
circle.strokeColor = UIColor.red
circle.fillColor = UIColor(red: 255, green: 0, blue: 0, alpha: 0.1)
circle.lineWidth = 1
return circle
} else {
return MKPolylineRenderer()
}
}
그런 다음 이렇게 전화하십시오.
self.addRadiusCircle(location: CLLocation(latitude: YOUR_LAT_HERE, longitude: YOUR_LNG_HERE))
Apple Breadcrumb 예제 의 코드를 사용해보십시오.
나는 benwad 대답을 이해하지 못했습니다. 그래서 여기에 더 명확한 대답이 있습니다 .
원을 추가하는 것은 매우 쉽습니다. MKMapViewDelegate 준수
@interface MyViewController : UIViewController <MKMapViewDelegate>
@property (weak, nonatomic) IBOutlet MKMapView *mapView;
@end
viewDidLoad에서 원 주석을 만들고지도에 추가합니다.
CLLocationCoordinate2D center = {39.0, -74.00};
// Add an overlay
MKCircle *circle = [MKCircle circleWithCenterCoordinate:center radius:150000];
[self.mapView addOverlay:circle];
그런 다음 mapView : viewForOverlay :를 구현하여보기를 반환합니다.
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay
{
MKCircleView *circleView = [[MKCircleView alloc] initWithOverlay:overlay];
[circleView setFillColor:[UIColor redColor]];
[circleView setStrokeColor:[UIColor blackColor]];
[circleView setAlpha:0.5f];
return circleView;
}
But if you want the circle to always be the same size, no matter the zoom level, you'll have to do something different. Like you say, in regionDidChange:animated:, get the latitudeDelta, then create a new circle (with a radius that fits into the width), remove the old one and add the new one.
Note from me: don't forget to connect mapview with your view controller delegate. Otherwise viewForOverlay won't be called.
It's easy to add a circle. Conform to MKMapViewDelegate. follow the bellow steps,,,
Step 1 :
CLLocationCoordinate2D center= {self.locationManager.location.coordinate.latitude, self.locationManager.location.coordinate.longitude};
// Add an overlay
MKCircle *circle= [MKCircle circleWithCenterCoordinate:center radius: 20000];//your distance like 20000(like meters)
[myMapView addOverlay:circle];
Step 2 :
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay
{
MKCircleView *C_View = [[MKCircleView alloc] initWithOverlay:overlay];
[C_View setFillColor:[UIColor lightGrayColor]];
[C_View setStrokeColor:[UIColor blackColor]];
[C_View setAlpha:0.5f];
return C_View;
}
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay
it is deprecated since iOS 4.0
All I did is, After displaying the location on the map kit called the below function in the end.
@IBOutlet weak var mapView: GMSMapView!
var cirlce: GMSCircle!
override func viewDidLoad() {
super.viewDidLoad()
mapView.delegate = self
circleview(redius: 5000)
}
//used this func to draw the circle
func circleview(redius:Double) {
let circleCenter = CLLocationCoordinate2D(latitude: 13.3450223, longitude: 74.7512519)
cirlce = GMSCircle(position: circleCenter, radius: redius)
cirlce.fillColor = UIColor(red: 230.0/255.0, green: 230.0/255.0, blue: 250.0/255.0, alpha:1.0)
cirlce.strokeColor = .blue
cirlce.strokeWidth = 2
cirlce.map = mapView
}
'Program Tip' 카테고리의 다른 글
Android Webview에서 JavaScript가 작동하지 않습니까? (0) | 2020.12.10 |
---|---|
Vim으로 괄호로 묶기 (0) | 2020.12.10 |
Magento 로그 데이터 지우기 (0) | 2020.12.09 |
스레드 세이프 싱글 톤 클래스 (0) | 2020.12.09 |
PHP의 최대 실행 시간 늘리기 (0) | 2020.12.09 |