No, adding a background image to the Map component is not possible.
maptype (optional) defines the type of map to construct. There are several possible maptype values, includingroadmap, satellite, hybrid, and terrain. For more information, see Maps Static API Maptypes below.
You can also make your own map using different techniques. . What you need to do is complicated. Look at the example here:
It uses a Canvas, a background image of a map in the Canvas and some conversions routines to plot location point to approximate locations on the background map image.
Doing something like this might allow you to plot the archaeological site. You would have to create 'hot spots' on the canvas to click on a building to elicit a TextToSpeech event or to play an mp3 file.
You cannot use the Rectangle control with Map to do this.
A very different strategy: Provide the archaeological site map image on the background of a Canvas. Use Canvas coordinates to locate sites using the Canvas x and y coordinates. Provide a list of buildings/sites that points to the x y coordinates of the building/site. Use an ImageSprite to place a marker on the building of interest and select buildings from a ListPicker or Listview.
Regards,
Steve