In my app (taken from an esri example) I am doing an identify, on user click in the map its droping an image.  In my case an image of a Push Pin.BUT, The image is not appearing where I click on the map.  I have attached a word doc showing where I am clicking and where the image is appearing....As I zoom out the image appears to be keepign the same distance on the screen...In this I mean if i zoom in and the image is placed its say 50 miles....when I zoom way out and the image is placed its a thousand miles offAny Ideas why the image is not appearing right where the user clicks the map?THanks
        Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyLayer"), GraphicsLayer)
        graphicsLayer.ClearGraphics()
        Dim graphic As New ESRI.ArcGIS.Client.Graphic() With {.Geometry = clickPoint, .Symbol = PushPinPictureSymbol}
        graphicsLayer.Graphics.Add(graphic)