title | authors | intro | types | categories | published | updated | status | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Geocoding using Silverlight |
|
 [ we need to download http://json.codeplex.com/releases/view/43775 and add the Newtonsoft.Json.Silverlight.dll which you will find in the zip folder Json35r7\Bin\Silverlight.
In my sample application a user enters a search term into a text box and clicks a button. In my button click event logic I save the search term into a local variable and then using string.format I create a URL which is the RESTfull endpoint for the Bing webservice. Using a new Web Client object I make a request to the Bing service URL and delegate the result to the event handler client_DownloadStringCompleted.
The format of the URL is below you just need to replace <> and <> with your own:
http://dev.virtualearth.net/REST/v1/Locations?query=<>&key=<<appId>
Inside the method client_DownloadStringCompleted I create a new JObject to parse the returned string and then use the SelectToken method to take the pieces from the JSON that I require and save them to 2 local variables. I then string format these two values into a readable string and then send the result to the text property of a text block.
That's it... Happy Hacking.