Uses of Class
com.eightmotions.map.Track

Packages that use Track
com.eightmotions.map   
com.eightmotions.map.extra   
 

Uses of Track in com.eightmotions.map
 

Fields in com.eightmotions.map declared as Track
 Track MapDisplay.curSavedTrack
           
 

Methods in com.eightmotions.map that return Track
 Track MapDisplay.getCurrentTrack()
          Return the current Track
static Track Track.getTrack(javax.microedition.lcdui.Display d, javax.microedition.lcdui.Displayable reference, java.io.InputStream is, java.lang.String inInfo)
           
static Track Track.getTrack(javax.microedition.lcdui.Display d, java.lang.String name)
          Create and get an empty track.
static Track Track.getTrack(javax.microedition.lcdui.Display d, java.lang.String inUrl, java.lang.String inInfo, MapDisplay inMap)
          Create and get a track to be loaded from a specific URL
 

Methods in com.eightmotions.map with parameters of type Track
static void Track.addTrack(Track t)
          Add an existing track to the list of Track.
 void MapDisplay.displayTrack(Track track, boolean doRecenter)
          Display a track on the map.
 boolean MapDisplay.isTrackDisplayed(Track track)
          Return true if the track given as a parameter is currently displayed on screen
 boolean TrackListener.onLocOpened(Track theTrack, Marker theLoc)
           
 void TrackListener.onLocSelected(Track theTrack, Marker theLoc)
           
 void TrackNotifier.onTrackCreated(Track t)
          A new track has been created..
 void TrackNotifier.onTrackLoaded(Track tr)
          A track has been loaded...
 void TrackNotifier.onTrackSaved(Track t)
          A Track has been saved..
static void Track.removeTrack(Track t)
          Delete and remove a track from the list of tracks...
 void MapDisplay.removeTrack(Track track)
          Remove the track given as a paramter from the list of currently displayed track
 

Uses of Track in com.eightmotions.map.extra
 

Constructors in com.eightmotions.map.extra with parameters of type Track
ListRenderer(javax.microedition.lcdui.Canvas inCanvas, Track inTrack, Marker currentSel)