How can i redirect my app to the google maps app and provide a title for the coordinates i want the directions for. below code works fine if i leave out ",+MYNAME". But only giving the coordinates do not look friendly. I want to for example put "Private parking" as MYNAME. But if i put it at the beginning google looks for the first directions it can find for "private parking" and ignores the coordinates. If i put it second (like below) it cannot interpretate the direction.
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:
@"comgooglemaps://?saddr=&daddr=MYLATITUDE,MYLONGITUDE,+MYNAME&directionsmode=driving"
]];
How can i just add a name/title to my coordinates?