0

今、私は完璧な出力でコードを更新しています。これは、友達が正しいマーカーを配置するのに役立つかもしれません。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

placevcViewController.h

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #import #import "fetchurl.h" #import

@interface placevcViewController : UIViewController
{
    CLLocationDegrees lat;
    CLLocationDegrees lng;
    CLLocationCoordinate2D local;
}
-(id)init;
-(void)location:(CLLocationManager *)address;
@property (nonatomic, strong) NSDictionary *location;
@property (strong, nonatomic) UITextField *addressfeild;
@property (strong, nonatomic) fetchurl *fu;
@property (strong, nonatomic) GMSMapView *map;
@property (strong, nonatomic) CLLocationManager *locationManager;
@property (strong, nonatomic) GMSCameraPosition *camera;
@end

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

placevcViewController.m

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#import "placevcViewController.h"

@interface placevcViewController ()

@end

@implementation placevcViewController
@synthesize addressfeild, map,fu,locationManager,camera;
-(id)init
{
    self = [super init];
     location = [[NSDictionary alloc] initWithObjectsAndKeys:@"0.0",@"lat",@"0.0",@"lng",@"Null Island",@"adress",@"NULL Home",@"name", nil];
    return self;
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    locationManager = [[CLLocationManager alloc] init];
    locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
    locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
    [locationManager startUpdatingLocation];

    lat = locationManager.location.coordinate.latitude;
    lng = locationManager.location.coordinate.longitude;
    local = CLLocationCoordinate2DMake(lat, lng);

    fu = [[fetchurl alloc]init];

    camera = [GMSCameraPosition cameraWithLatitude:lat longitude: lng zoom:12];
    map = [GMSMapView mapWithFrame:CGRectMake(0, 60, 320, 480) camera:camera];
    [self.view addSubview:map];
        map.settings.myLocationButton = YES;
    UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(200, 65, 100, 40);
    [button setTitle:@"SEARCH" forState:UIControlStateNormal];
    [button addTarget:self action:@selector(search:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button];

    addressfeild = [[UITextField alloc] initWithFrame:CGRectMake(10, 68, 200, 30)];
    addressfeild.placeholder = @"SEARCH";
    [addressfeild setBorderStyle:UITextBorderStyleRoundedRect];
    [self.view addSubview:addressfeild];

}
 -(IBAction)search:(id)sender
{
    [self location:str1];
}
 -(void)location:(NSString *)address
{
    NSString *baseUrl =@"https://maps.googleapis.com/maps/api/place/nearbysearch/json?";
    NSString *url = [NSString stringWithFormat:@"%@location=%@&radius=10000&name=dominos&sensor=false&key=AIzaSyCczXEpxw19qAXQMEUUA98OsMaOESNSOjM",baseUrl,address];
    url = [url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    NSURL *queryUrl = [NSURL URLWithString:url];
    NSLog(@"query url%@",queryUrl);
    dispatch_async(dispatch_get_main_queue(), ^{
        NSData *data = [NSData dataWithContentsOfURL:queryUrl];
        [self fetchData:data];
    });
}

-(void)fetchData:(NSData *)data
{
    NSString *data1 = [NSString stringWithUTF8String:[data bytes]];
    // NSLog(@"Response data: %@", data1);
    NSError *error;
    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
    NSArray* results =[json objectForKey:@"results"];
    //NSLog(@"Data is:%@" ,results);
    for (int i = 0;i <[results count]; i++) {
        NSDictionary *result = [results objectAtIndex:i];
        // NSLog(@"Data is %@", result);
        NSString *address = [result objectForKey:@"vicinity"];
        // NSLog(@"Address is %@", address);
        NSString *name = [result objectForKey:@"name"];
        //NSLog(@"name is %@", name);
        NSDictionary *geometry = [result objectForKey: @"geometry"];
        NSDictionary *locations = [geometry objectForKey:@"location"];
        NSString *lat =[locations objectForKey:@"lat"];
        NSString *lng =[locations objectForKey:@"lng"];
        //NSLog(@"longitude is %@", lng);
        NSDictionary *gc = [[NSDictionary alloc]initWithObjectsAndKeys:lat,@"lat",lng,@"lng",address,@"address",name,@"name", nil];
        location = gc;
        double lat1 = [[location objectForKey:@"lat"] doubleValue];
        NSLog(@"Marker position%f",lat1);
        double lng1 = [[location objectForKey:@"lng"] doubleValue];
        NSLog(@"Marker position%f",lng1);
        GMSMarker *marker = [[GMSMarker alloc]init];
        CLLocationCoordinate2D local = CLLocationCoordinate2DMake(lat1, lng1);

        marker.position = local;
        marker.title = [ location objectForKey:@"name"];
        NSLog(@"Address is %@",marker.title);
        marker.snippet = [location objectForKey:@"address"];
        marker.map = map;
        GMSCameraUpdate *cams = [GMSCameraUpdate setTarget:local zoom:12];
        [map animateWithCameraUpdate:cams];
    }

}

    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    }

    @end

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~

大胆な機能で問題に直面しています。実際には 、関数-(void)location:(CLLocationManager *)address withCallback:(SEL)sel withDelegate: (id)delegate;を介して、現在の場所の座標をplacevcViewController.mからfetchurl.mに渡したいと考えています。、しかし、どういうわけか機能していません。関数が正しくないか、座標を取得するために正しいデータ型を使用していません。

更新: fetchurl.m ファイルの上記のコードを更新しました (星印内のコードは更新されています)。この更新により、複数の場所の配列を取得できます。しかし、今では各場所にマーカーを追加する方法がわかりません

4

1 に答える 1

0

デリゲート プロトコル パターンを正常に使用するには、追加のセットアップが必要です。

PlacevcViewController.h は、デリゲート プロパティとプロトコルの両方を定義する必要があります。

@property (nonatomic, assign) id delegate;

//at the bottom of your file, below the @interface ... @end
@protocol nameOfYourProtocol <NSObject>

-(void)methodForDoingSomething:(SomeClass*)argument;

@end

次に、PlacevcViewController.m 内で、次のようにデリゲート メソッドを呼び出すことができます。

[self.delegate methodForDoingSomething:anArgument];

次に、デリゲートを割り当てて、メソッドをターゲット クラス (この場合は fetchUrl.h) に実装します。

//declare conformity to the protocol like this in the header file
@interface fetchurl : NSObject <nameOfYourProtocol>

そして最後に fetchUrl.m ファイルで:

//assign the delegate to self when creating an instance of fetchUrl
fu = [[fetchUrl alloc] init];
[fu setDelegate:self];

//implement the delegate method
- (void)methodForDoingSomething:(SomeClass*)argument {
    //your code goes here
}

デリゲートプロトコルパターンを使用することについて正しいことも間違っていることもありませんが、あなたの例からわかることから、より簡単なアプローチはfetchUrl、必要なアイテムを返すメソッドを定義し、fetchUrl のそのインスタンスの所有者に処理させることです。それ。すなわち:

- (NSDictionary*)fetchData:(NSData*)data {
    //do the work and create a dictionary

    //return theDictionary
   }

そして、その結果を placevcViewController で消費するだけです:

NSDictionary* results = [fu fetchData:someData];
//now work with the results
于 2013-10-29T14:15:21.360 に答える