I am creating a windows phone 7.1 app and I am trying to set an image over an map. So I managed to create the map view and it is working, and I set an image over it (I am using a grid control, and I have given both the map and the image Grid.row = 0
in my XAML code, so they appear one above the other). The problem is that because the image is on top of the map, I can not click or tap or drag the map. I guess the image is catching the onclick event and it is blocking it from reaching the map.
Any ideas how to make the map accessable? Is the grid the rigth thing to use when stacking things one over the other?
Thanks!