I was looking around for the code that can give me the value for current location in bing map in silverlight. I have not found any codes yet. Can anyone please tell me how can I get altitude (elevation) value for current latitude and longitude. I tried to used google maps API as following so far.
string address = "http://maps.googleapis.com/maps/api/elevation/json?locations=" + lat + "," + lng + "&sensor=true";
But It does not give me proper and at a time output, because I am developing on silverlight technology. So I have to go through using Web service.
I want to implement some thing like following.
Please help me to find elevation value from lat and lang.
Thanks