Im trying to implement a button which fills after click
- Latitude
- Longitude
- Street
- Streetnumber
- Postalcode
- City
myGeoposition.CivicAddress. gives me City and Postalcode
myGeoposition.Coordinate. gives me the Lati/Longitude
where do I get the rest?
I am using a Map-Control (not bing map!) from: Microsoft.Phone.Maps.Controls;assembly=Microsoft.Phone.Maps
try
{
Geolocator geolocator = new Geolocator();
geolocator.DesiredAccuracy = PositionAccuracy.Default;
IAsyncOperation<Geoposition> locationTask = null;
try
{
locationTask = geolocator.GetGeopositionAsync(TimeSpan.FromMinutes(1), TimeSpan.FromSeconds(15));
Geoposition myGeoposition = await locationTask;
Geocoordinate myGeocoordinate = myGeoposition.Coordinate;
GeoCoordinate myGeoCoordinate =
CoordinateConverter.ConvertGeocoordinate(myGeocoordinate);