0
IGraphicTrackerSymbol myPointSymbol = graphicTracker.CreateSymbolFromPath("Z:/ESRI/sprites/car.jpg", "");
graphicTracker.Add(null /* what to put here for IGeometry?? */, myPointSymbol); 

Where can I get the IGeometry of my sprite?

patrick
  • 16,091
  • 29
  • 100
  • 164

1 Answers1

1

I guess the CreateSymbolFromPath function doesn't support jpgs. I gave it a bmp and it works fine. It's the little things that kill ya. Btw. you just need a regular point for the function.

patrick
  • 16,091
  • 29
  • 100
  • 164