Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 563 Bytes

File metadata and controls

16 lines (10 loc) · 563 Bytes

LocationSimulator

Given the latitude and longitude of source and destination, it fetches all the coordinates which come on this route. One can specify the interval and all coordinates will be separated by this interval. It helps in location tracking as it gives the coordinates at specified interval.

How to Run

Run the main app present here: com/locus/simulator/bootstrap/Launcher.java

Give the LatLng of source and destination in the main method:

//Give the values here in degrees

LatLng src = new LatLng(49, 50);

LatLng dest = new LatLng(68, 99);