Hi All
Im trying to embed a google map "view" into my application to show a route.
I've tried adding a UIWebView with this initialization:
Code:
-(IBAction) showRoute{
NSString* url = @"http://maps.google.com/maps?daddr=37.74324,-121.43432&saddr=37.5,-121.4";
[uiWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
}
But I get the full browser appearance, with the google search box, left panel with route ETC.
I would like to get a simple map (static, if need be) with the highlighted route.
Something like it appears in this app:
Is it possible?
I guess I could craft an html page with the content, but I dont know where to start... any tips?
Thanks
Gonso