예제 #1
0
 public static bool IsInRange(this Location source, double latitude, double longitude, double distance)
 {
     return(LocationUtility.IsInRange(source, new Location(latitude, longitude), distance));
 }
예제 #2
0
 public static bool IsInRange(this Location source, Location target, double distance)
 {
     return(LocationUtility.IsInRange(source, target, distance));
 }