Benninger
Member
- Joined
- Apr 22, 2010
- Messages
- 457
- Reaction score
- 0
Hi!
At least I managed to write a mini plugin that reads a db3-file (made with "Route Maker") and navigate to a named position:
Now a (c#?)-question:
How can I make a loop and run to all coords stored in the db3 file?
At least I managed to write a mini plugin that reads a db3-file (made with "Route Maker") and navigate to a named position:
Code:
gps = new Gps(this);
gps.LoadDataBase(Application.StartupPath + "\\Plugins\\Path\\test1.db3");
gps.GpsMove("NameOfCoord");
Now a (c#?)-question:
How can I make a loop and run to all coords stored in the db3 file?
Code:
for each xy in z
{
gps.GpsMove(xy)
} ???