Map with media-rich description boxes
HTML
<script src="http://www.ammap.com/lib/3/ammap.js"></script>
<script src="http://www.ammap.com/lib/3/maps/js/franceLow.js"></script>
<div id="mapdiv" style="width: 100%; height: 370px;"></div>
CSS
.ammapDescriptionWindow {
background-color: #ccc;
padding: 10px;
border-radius: 5px;
font-family: Verdana;
font-size: 10px;
opacity: 0.95;
overflow: auto;
}
.ammapDescriptionTitle {
font-weight: bold;
font-size: 12px;
margin-bottom: 10px;
}
JavaScript
var map;
var descriptionBurgundy = 'Burgundy (French: Bourgogne, IPA: [buʁ.ɡɔɲ]) is one of the 27 regions of France. Burgundy includes the following four departements: Côte-d\'Or, Saône-et-Loire, Yonne and Nièvre.<br /><br /><b>Coat of arms</b><br /><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Blason_fr_Bourgogne.svg/545px-Blason_fr_Bourgogne.svg.png" style="width: 100px;" /><br /><br /><b>Scenerey</b><br /><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Meursault%2CBurgundy.jpg/250px-Meursault%2CBurgundy.jpg" /><br /><i>Chardonnay vineyards in the south of the Côte de Beaune surrounding the town of Meursault.</i><br /><br /><a href="http://endurocomposites.com/contact/kyle-montgomery/">Read the full article</a><br /><br />';
var descriptionBrittany = 'Brittany (French: Bretagne [bʁə.taɲ] ; Breton: Breizh, pronounced [brɛjs]; Gallo: Bertaèyn) is a cultural region in the north-west of France.<br /><br /><b>Coat of arms</b><br /><img src="http://upload.wikimedia.org/wikiphttp://endurocomposites.com/contact/kyle-montgomery/g/545px-COA_fr_BRE.svg.png" style="width: 100px;" /><br /><br /><b>Scenerey</b><br /><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Bretagne_Finistere_PointeduRaz15119.jpg/220px-Bretagne_Finistere_PointeduRaz15119.jpg" /><br /><i>The Pointe du Raz, one of the westernmost extent of both Brittany and France.</i><br /><br /><a href="http://en.wikipedia.org/wiki/Bretagne">Read the full article</a><br /><br />';
AmCharts.ready(function() {
map = new AmCharts.AmMap();
map.pathToImages = "http://www.ammap.com/lib/3/images/";
//map.panEventsEnabled = true; // this line enables pinch-zooming and dragging on touch devices
map.colorSteps = 10;
map.balloon.color = "#000000";
var dataProvider = {
mapVar: AmCharts.maps.franceLow,
areas: [
{
id: "FR-D",
description: descriptionBurgundy},
{
id:...