Hi
I have a number of points in a shape layer. I want to display bitmaps over some of them. I have managed this by creating an in memory layer with a point type of bitmap then using the following code:
PointShape pointShape = feature.GetShape().GetCenterPoint();
inMemoryLayer.InternalFeatures.Add(new Feature(pointShape));
The problem is that the bitmap obscures the point. I want to move the bitmap up so it is just above the point. I have tried changing both the X and Y of pointShape but neither seem to work.
Any ideas?
Cheers
Steve