I have to add locations in a particlar order because I do some calulations between them.
Based on some of the information associated with each location, I will skip over it and not add the location to my map.
At the end of it I need to reverse the order of the locations so that the names and ballons of the first ones added appear on top of the later ones.
Because I don't know the number of locations that my routine added I think that I am looking for some code that would work something like this.
(This is half code and half english)
dim x ,y as int
x = objmap.locations.count (or something like that)
for y = x to 1 '(decending order)
objmap.loc(y) geomove to top
next y
I do not want to set up a route if I can help it.
Can anyone help me?
Philip Macafee