// calling a service that returns latitude,longtitude against an input zipcode
        private string getLatLonByZipCode(string zipcode)
        {
            string latlon = "";
            LocationServicesClient client = new LocationServicesClient();

            latlon = client.getLatLonByZipCode(zipcode);
            return(latlon);
        }