I am having a problem with location updates that is kind of hard to articulate.
I am attempting to write an algorithm that creates location updates based on distance from known locations on the map. I need to get these updates even when my application isn't running -- so I am using requestLocationUpdates(PendingIntent). Kind of like proximity alert, only not as aggressive.
What happens is I register for the location update based on the known location I get an update right away -- which forces the application to recalculate the location updates and if needed re-request. So I guess what I am saying is I don't need the immediate location update when I register for updates. Is there anyway to do this? Any other ideas on implementation?
Thanks.