best way to get the latitude and longitude values of a zip code - C#
问题 What is the best way to get the latitude and longitude values of a zip code? This is the function that I am currently using, but it only allows 2400 requests per 24 hours. private Coordinates GetZipCoordinates(string zip) { string address = ""; address = "http://maps.googleapis.com/maps/api/geocode/xml?components=postal_code:" + zip.Trim() + "&sensor=false"; var result = new System.Net.WebClient().DownloadString(address); XmlDocument doc = new XmlDocument(); doc.LoadXml(result); XmlNodeList