I am facing a problem while developing asp.net mvc TRACKING application.
I have json file of directions (which i got from google map api)
latlngs of 10 objects
now i want to see if the latlngs are on the path or not, in simple way i can use RouteBoxer javascript class to see if latlngs are on route or not.
But i have to perform this checking after every 10 mins, so i am using Cron job for this. But i cannot run javascript from cron job.
Is there any way to do this or any alternative of RouteBoxer class in .net ? so i dont have to use javascript.
I also asked this question but did'nt find any useful answer.