Updating Location Sensor When no Address is Found

The LocationChanged event does not trigger unless there is a new satellite fix. If the current latitude and longitude do not change despite setting a LocationSensor.TimeInterval and that interval passes; you are not getting a satellite update.

The CurrentAddress displays an address or a message No address available if no address matches the addresses in Google's database .

How the GPS/Location sensor works is discussed the tutorial [Using the Location Sensor] .
It appears you have not read that yet Bob
(location sensor tutorial)

You might try the small app at Buenas noches amigos (How to display current location using the LocationSensor/gps) - #2 by SteveJG

What is happening: there is no event that changes your CurrentAddressDataLabel.Text other than in the LocationChanged event handler. Whatever was 'last' determined for the Location1.CurrentAddress is what will display. The 'contents' of you CurrentAddressDataLabel will not change until the LocationChanged event triggers as you coded.

You might find this tutorial HOW TO: Parse a LocationSensor's Current Address by SteveJG useful too Bob to understand how the geolocation pieces work.

Regards,
Steve