繁体   English   中英

如何在iPhone App中将地点添加到Google Places API

[英]How can I add places to Google Places API in iPhone App

我可以使用Google Places API搜索地点。 如何使用Google Places API添加我的位置。 我看过文档,但无法弄清楚。 http://code.google.com/apis/maps/documentation/places/#PlaceSearchRequests有人可以帮我吗。

  NSString *str1 = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><PlaceAddRequest><location><lat>24.003372</lat><lng>75.770232</lng></location><accuracy>50</accuracy><name>test pet house</name><type>pet_store</type><language>en-US</language></PlaceAddRequest>"];
  NSLog(@"str1=====%@",str1);

NSString *str2 = [str1 stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSData *requestdata = [NSData dataWithBytes:[str2 UTF8String] length:[str2 length]];
NSString *postLength = [NSString stringWithFormat:@"%d", [requestdata length]];


NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"https://maps.googleapis.com/maps/api/place/add/xml?sensor=false&key=your own api key"]];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];

[request setHTTPMethod:@"POST"];
[request setHTTPBody:[NSData dataWithBytes:[str1 UTF8String] length:[str1 length]]];

//NSURLConnection *placesConn =[[NSURLConnection alloc] initWithRequest:request delegate:self];
NSData *returndata = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *returnstr = [[[NSString alloc] initWithData:returndata encoding:NSUTF8StringEncoding] autorelease];
NSLog(@"returnstr: %@",returnstr);

使用上面的代码您一定会在Google api中添加新的地方。...只需在上面的代码中更改lat,long,name和api键值即可。

在我的应用程序中,我在UIsearchbar中键入位置,然后我调用以下方法

-(void)getLocation
{
      NSString *urlString;
        if(locationFinder.text!=nil)
        {
            urlString = [[NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv", [locationFinder.text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]retain];
        }


                NSLog(@"url:%@",urlString);

            NSString *locationString = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString]];
            NSArray *listItems = [locationString componentsSeparatedByString:@","];


            if([listItems count] >= 4 && [[listItems objectAtIndex:0] isEqualToString:@"200"]) 
            {
                latitude = [[listItems objectAtIndex:2] doubleValue];
                longitude = [[listItems objectAtIndex:3] doubleValue];
            }

            NSLog(@"latitude: %f longitude:%f",latitude,longitude);

            urlString=[NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/search/json?location=%f,%f&radius=%d&types=%@&sensor=true&key=AIzaSyBbUuE-DprCN-CME1SgcNxyeuDdRrBgkyk",latitude,longitude,mRadius,mTypes];

        NSLog(@"url: %@",urlString);
        NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:180.0];
        id urlRequest = [[NSURLConnection alloc] initWithRequest:request delegate:self];
        if(urlRequest)
        {
                responseData=[[NSMutableData data]retain];
                NSLog(@"hiiii i m data");

          }
    }

并实现其他一些委托方法,并通过jSON解析数据

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    [responseData setLength:0];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    //NSLog(@"DATA:%@",data);
    [responseData appendData:data];
    //NSLog(@"%@",responseData);
     //[responseData release];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    NSLog(@"connection failed:%@",[error description]);
    //done.enabled = YES;
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [connection release];

    //NSLog(@"response data:%@",responseData);
    NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
    //NSLog(@"response:%@",responseString);
     //[responseData release];
    NSDictionary *locationData = [responseString JSONValue];
    NSLog(@"ALLKEYS:%@",[locationData allKeys]);
          self.responseDataDict=[locationData objectForKey:@"results"];
          NSLog(@"locationdata allkeys:%@",[locationData allKeys]);
        NSLog(@"name:%d",[responseDataDict count]);



}

使用以下示例添加位置。

    POST https://maps.googleapis.com/maps/api/place/add/json?sensor=true_or_false&key=api_key 
    HTTP/1.1
    Host: maps.googleapis.com

    {
      "location": {
        "lat": -33.8669710,
        "lng": 151.1958750
      },
      "accuracy": 50,
      "name": "Google Shoes!",
      "types": ["shoe_store"],
      "language": "en-AU"
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM