0

ここでノブ。MKPolygon 内のポイントを検出する方法について読みましたが、実装に問題があります。ユーザーの場所を確認しているコードの部分に関係している可能性があります...私はそうではありません一貫してチェックしているかどうかも確認してください。とにかく、ここに関連するコードがあります:

- (void)locationManager:(CLLocationManager *)manager
  didUpdateLocations:(NSArray *)locations {
self.current = [locations lastObject];
NSLog(@"lat%f - lon%f", self.current.coordinate.latitude, self.current.coordinate.longitude);
NSLog(@"%@", self.mapCIIP); }

以降

-(MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id <MKOverlay>)overlay{
if([overlay isKindOfClass:[MKPolygon class]]){
    MKPolygonRenderer *view = [[MKPolygonRenderer alloc] initWithOverlay:overlay];
    view.lineWidth=1;
    view.strokeColor=[UIColor blueColor];
    view.fillColor=[[UIColor blueColor] colorWithAlphaComponent:0.5];


    return view;
    CLLocationCoordinate2D mapCoordinate = CLLocationCoordinate2DMake(self.current.coordinate.latitude, self.current.coordinate.longitude);

    MKMapPoint mapPoint = MKMapPointForCoordinate(mapCoordinate);
    if (CLLocationCoordinate2DIsValid(mapCoordinate)) {
        NSLog(@"Coordinate valid");
    } else {
        NSLog(@"Coordinate invalid");
    }

    CGPoint polygonViewPoint = [view pointForMapPoint:mapPoint];


    if ( CGPathContainsPoint(view.path, NULL, polygonViewPoint, NO) ) {
        self.mapCIIP = @"TRUE";
    }
    else {
        self.mapCIIP = @"false";
    };


}
return nil; }

iPhoneでXcodeを実行してさまざまな場所をシミュレートしましたが、緯度/経度の更新中に、描画したポリゴンの真/偽に必要なものが得られません。ある時点ではすべて true として表示されていましたが、現在は NSLog ですべて (null) になっています。ありがとう!

4

1 に答える 1