예제 #1
0
 public static bool OpenMaps(MKMapItem [] mapItems, MKLaunchOptions?launchOptions = null)
 {
     return(_OpenMaps(mapItems, launchOptions?.ToDictionary()));
 }
예제 #2
0
 public static bool OpenMaps(MKMapItem [] mapItems = null, MKLaunchOptions launchOptions = null)
 {
     return(_OpenMaps(mapItems, launchOptions != null ? launchOptions.ToDictionary() : null));
 }
예제 #3
0
 public void OpenInMaps(MKLaunchOptions?launchOptions = null)
 {
     _OpenInMaps(launchOptions?.ToDictionary());
 }
예제 #4
0
 public void OpenInMaps(MKLaunchOptions launchOptions = null)
 {
     _OpenInMaps(launchOptions != null ? launchOptions.ToDictionary() : null);
 }