SAMPLE CLASS TO GET DISTANCE BETWEEN TWO GEO PLACES AND AND RETRIEVE OTHER DETAILS by USING GOOGLE MAPS API /*just uploaded without explanations ,if someone needs more contact me*/ using System.IO; using System.Net; using System.Xml; /* * author : @kushanlahiru * * how to use the class * *first setValues(string destination, string origin) *second calculateDistance() *third get values distance or travel details */ namespace Data { public class GoogleDistance { private string destination; private string origin; private string distance; private string travelDetail; GoogleDistance() //constructor { destination=""; origin=""; distance=""; travelDetail=""; } public string getTravelDetail() { return travelDetail; } public string getDistance() { return distance; } public void setValues(string destination, string origin) { this.destination = destination; this.origin = origin; } public void calculateDistance() { string xmlResult = null; HttpWebRequ
Lemme engineeracle your Software Warcraft! One place for tech explorations of Kushan and up to date contents on cloud-based business productivity and enterprise collaboration.