Click here to Skip to main content
15,884,298 members
Articles / Mobile Apps / Windows Phone 7

An Implementation of ICivicAddressResolver for WP7

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
12 Jan 2012CPOL 14.5K   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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --