I tried creating a very simple project using the new GraphicTracker objects, but did not get very far. I was able to make the GraphicTracker class:
Dim graphicTracker As IGraphicTracker = New GraphicTrackerClass()
graphicTracker.Initialize(TryCast(axMapControl1.Map, IBasicMap))
However, when I tried to create the symbol, IGraphicTrackerSymbol was not recognized by Visual Studio 2008 as an option:
Dim myPointSymbol As IGraphicTrackerSymbol = CreateGraphicTrackerSymbol(symbol, Nothing)
Adding the EngineCore library enabled access to IGraphicTracker, and the GraphicTracker class. Is there something else which needs to be included to get to the symbols?