all from code, no IB at all
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 80, 300, 200)];
[webView setScalesPageToFit:YES];
CGFloat currentLatitude = [[Order sharedOrder] location].latitude;
CGFloat currentLongitude = [[Order sharedOrder] location].longitude;
NSString *currentLocationString = [NSString stringWithFormat

"%f,%f", currentLatitude, currentLongitude];
NSString *urlString = [NSString stringWithFormat

"http://maps.google.com/maps?q=%@&z=15", currentLocationString]; // z - zoom
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlString]]];
[self.view addSubview:webView];
[webView release];