Google Maps URL Scheme does not display marker

google-maps, ios, objective-c

Solution

You Can Show Marker like as when you pass Latitude and Longitude in url like as

 [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=35.6653,139.6959"]];

Problem

I use `Google Maps URL Scheme` to open `Google Map` app on iOS, I have `schema`: ``` [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"comgooglemaps://?center=35.6653,139.6959&zoom=16&views=traffic&mapmode=standard"]]; ``` But when I run application, the result does not show marker at location (35.6653,139.6959). How to display marker?

Original source