I am developing an iOS application to get directions between two places,I am getting exact directions for some of the places by providing the name of the places directly
http://maps.apple.com/?daddr=San+Francisco,+CA&saddr=cupertino
But I couldn't get places in some other countries. So I have tried with the geo coordinates
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat: @"http://maps.google.com/?saddr=%f,%f&daddr=%f,%f",latitude,longitude,latitude1,longitude1]]];
But its returning a map with different appearance, it looks like some older version. So I want to implement a map something similar as in the first method but its input should be as Geo coordinates.