Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

An Implementation of ICivicAddressResolver for WP7

0.00/5 (No votes)
12 Jan 2012 1  
An implementation of ICivicAddressResolver for Windows Phone 7

In the WP7 library, there is an interesting utility class: CivicAddressResolver. This class should help us in doing the so called Reverse GeoCoding: given a coordinate in terms of latitude and longitude, we want a readable address near that place. Unfortunately, there is a bad surprise: as we read in the documentation, “this method is not implemented in the current release”. So what if we need something like this, waiting for the fully fledged implementation? Since the class implements the interface ICivicAddressResolver, we can provide our own implementation, for example based on the Google Maps geocoding API. So I created a little project and a demo application. The main class implementing the resolver is GMapCivicAddressResolver.AddressResolver. You can use it in an application awaiting the definitive implementation, with the limitation that this implementation returns something meaningful just in the field CivicAddress.AddressLine1. Another limit is that you can’t call the blocking version of the resolve method, in any case, this should not be a problem since the asynchronous call is the one to prefer. Please check out the project here on Bitbucket. Below is a screenshot of the running app, showing a totally random address in Rome:

cv1_thumb

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here