I'm writing a server side java application that takes location updates from an android device. The device is traveling along a route and I want to be able to determine if it had arrived at its location. The obvious solution is to define a geo-fence...of the current location of the android device is within this fence then it has arrived at its location.
My question is whether this is possible to do in serverside java. I know there are probably ways to do it with google maps API on the client side but that's not possible for me. Are there any libraries out there that will provide this functionality?
Thanks in advance
B