Issue
I am using MapView
in my application, Which contains several markers of same user at different locations. How can i give numbers to each incoming markers in order to identify the user path in which he moves ?
Can anyone help me ?
Solution
You can extend OverlayItem by your own class and store all the information inside.
MyOverlayItem<Data> myMarker = new MyOverlayItem<Data>(geoPoint, "", "");
myMarker.setID(0);
Also yoo need to extend ItemizedOverlay
and bring markers to your MyOverlayMarker
Answered By - skayred
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.