Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to integrate Bing Maps into iPhone Application? I am doing using VirtualEarthKit framework [website appears to host malware]. My code is as below : I am getting error while getting token.

{
 VECommonService *commonService = [[VECommonService alloc] init];
 NSString *token;
 printf("2\n");
 NSError *error=[commonService getToken:&token forUserID:@"abc" password:@"def" ipAddress:@"123"];

 NSString *errMsg= [error description];
 printf("\n%s\n",[errMsg UTF8String]);

  printf("3\n");

 VEGeocodeService *geocodeService = [[VEGeocodeService alloc] init];

 VEGeocodeRequest *geocodeRequest = [[VEGeocodeRequest alloc] init];
  printf("4\n");
 geocodeRequest.query = @"Portland State University";
 geocodeRequest.token = token;

printf("5\n");

 VEServiceResponse *geocodeResponse = [geocodeService geocode:geocodeRequest];

 VEGeocodeResult *geocodeResult = [geocodeResponse.results objectAtIndex:0];


 //NSLog([geocodeResult.location description]);
 //NSLog([geocodeResult.address description]);

 VEImageryService *imageryService = [[VEImageryService alloc] init];

 VEGetMapURIRequest *mapRequest = [[VEGetMapURIRequest alloc] init];

 mapRequest.center = geocodeResult.location;
 mapRequest.token = token;


 VEGetMapURIResponse *mapResponse = [imageryService getMapURI:mapRequest];





 NSURL *url = mapResponse.mapURL;

 //printf("\n\n URL==> %s",[url relativeString]);
 NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
 [webView loadRequest:requestObj];
 [self.view addSubview:webView]; 
}

is there any way to use bing maps in an iPhone app?

share|improve this question
1  
-1 link to unsafe area.. – Petrogad Dec 29 '10 at 19:26
Yep, no chance of helping without a malware-free link to the framework. Bing Maps' Ajax framework inside a UIWebView is an option. – Matthew Frederick Dec 29 '10 at 21:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.