I'm trying to fetch the XML result from an exmaple query like this: http://maps.googleapis.com/maps/api/directions/xml?origin=Toronto,ON&destination=Manhattan,NY&dirflg=r&sensor=false

in my program. Is there a way to fetch the XML results in Objective-C code? I don't want my application to open Maps application. I want to be able to receive the XML. I do have a MapKit in my application.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Sure. Just do something like this:

NSXMLParser * xmlParser = 
    [[NSXMLParser alloc] initWithContentsOfURL: [NSURL URLWithString: @"http://maps.googleapis.com/maps/api/directions/xml?origin=Toronto,ON&destination=Manhattan,NY&dirflg=r&sensor=false"];

The Apple documentation for NSXMLParser is here.

This may be a bit too heavy duty for your purposes, so you can also do something like the answers provided for in this duplicate question.

link|improve this answer
Ah, great. Do you happen to know why the 'dirflg=r' parameter (switch to public transit) doesn't work? – c0d3Junk13 Dec 24 '11 at 17:30
not off the top of my head, but post a different question and either I or someone else could come up with a quick answer for you. – Michael Dautermann Dec 24 '11 at 19:40
feedback

If you are using Three20, you could also use this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.