Does the IOS OsmandMaps app supports the API URI scheme?
Example URI:
osmandmaps://show_location?lat=50.8465565&lon=4.351697
Objective C to open an external app:
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:scheme]]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:scheme]]; }
I've tried a lot of URI in IOS and it only opens the app without regarding any commands.
Does the IOS OsmandMaps app supports the API URI scheme?
Example URI:
Objective C to open an external app:
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:scheme]]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:scheme]]; }I've tried a lot of URI in IOS and it only opens the app without regarding any commands.