public static void DownloadAddressTest(string address) { var extractor = new MapExtractor(); var pt = extractor.LatitudeAndLongitudeFromAddress(address); DownloadMapTest(pt.Elevation.Degrees, pt.Azimuth.Degrees); }
public static string AddressToLat(string address) { var extractor = new MapExtractor(); var pt = extractor.LatitudeAndLongitudeFromAddress(address); return("Latitude and Longitude: " + pt.Elevation.Degrees + "°, " + pt.Azimuth.Degrees + "°"); }