Google Map App has "directions to here" and "directions from here" like http://static.intomobile.com/wp-content/uploads/2008/10/iphone-22-os-google-maps-street-view-23.png
When I call contact page, can I add "directions to here" button into the info page of address book?
ABAddressBookRef addressBook = ABAddressBookCreate();
NSArray *allPeople = (NSArray *)ABAddressBookCopyArrayOfAllPeople(addressBook);
ABRecordRef person = ABAddressBookGetPersonWithRecordID(addressBook, (ABRecordID) iRecordNo);
ABPersonViewController *personController = [[ABPersonViewController alloc] init];
personController.addressBook = addressBook;
personController.displayedPerson = person;
personController.allowsEditing = YES;
[self.navigationController pushViewController:personController animated:YES];
[personController release];