I want to create a route system with gui for my application. a route for someone, starts from city A, end in city B.
But users should be able to create their route by selecting cities which are on their road.
so i need a map format, shows only
city borders and names based on users' current location.
i draw something stupid to make things more clear:
there are several ways to go to city B from city A, like:
1 - CITY A > city 1 > city 2 > LA > CITY B
2 - CITY A > city 1 > city 4 > city 3 > CITY B
3 - CITY A > city 1 > city 5 > city 3 > CITY B
So, users should be able to select cities according to their planned route. And some highlighting effect for selected cities.
Any kind of help would be great.
Thanks,
Here is the base logic to start:
Now you have three main things:
Create an route array which contains like this :
Now draw a shortest path for this array entities like:
This way you can achieve your custom path drawn on map view.
In later part, think about the border thing, for that you might require to use overlay concept of Map. I guess you might find few tutorials for that.