Driving directions are not supported in MapKit. so I think I can show driving direction in a webview. I am showing google maps in uiwebview, but it shows the whole site I just want to show only map part with some zoom so that it looks like original maps application of iphone. Also I don't know if this breaks the apple's Human Interface Guidelines(HIG) Rules, tell me if it is.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Load a string like this as an NSString (maybe strip the newlines). You can change the latitude and longitude, zoom level etc with
Then set your Use this to load the HTML:
|
|||||||||
|
|
Here you go. Pass it through a stringWithFormat with twice the origin lat long and once the destination lat long, all of them as float: [NSString stringWithformat:... , oriLat,oriLon,oriLat,oriLon,destLat,destLon]; and then pass it into a UIWebView
|
|||
|
|
