Map Name: Italy
Javascript Alias: maps/italy
New format for marker data in JSON:
{
"map": {
"showshadow": "0",
"showlabels": "0",
"showmarkerlabels": "1",
"fillcolor": "F1f1f1",
"bordercolor": "CCCCCC",
"basefont": "Verdana",
"basefontsize": "10",
"markerbordercolor": "000000",
"markerbgcolor": "FF5904",
"markerradius": "6",
"usehovercolor": "0",
"hoveronempty": "0",
"showmarkertooltip": "1",
"canvasBorderColor": "375277",
"canvasBorderAlpha": "0"
},
"markers": {
"shapes": [
{
"id": "myCustomShape",
"type": "circle",
"fillcolor": "FFFFFF,333333",
"fillpattern": "radial",
"showborder": "0",
"radius": "4"
},
{
"id": "newCustomShape",
"type": "circle",
"fillcolor": "FFFFFF,000099",
"fillpattern": "radial",
"showborder": "0",
"radius": "3"
}
],
"items": [
{
"id": "RO",
"shapeid": "myCustomShape",
"x": "241.05",
"y": "299.67",
"label": "Rome",
"labelpos": "left"
},
{
"id": "01",
"shapeid": "newCustomShape",
"x": "103.82",
"y": "78.7",
"label": "Milan",
"labelpos": "left"
},
{
"id": "02",
"shapeid": "newCustomShape",
"x": "79.61",
"y": "114.01",
"label": "Turin"
},
{
"id": "03",
"shapeid": "newCustomShape",
"x": "80.61",
"y": "164.46",
"label": "Savona",
"labelpos": "left"
},
{
"id": "04",
"shapeid": "newCustomShape",
"x": "103.82",
"y": "157.4",
"label": "Genoa"
},
{
"id": "05",
"shapeid": "newCustomShape",
"x": "144.18",
"y": "174.55",
"label": "La Spezia"
},
{
"id": "06",
"shapeid": "newCustomShape",
"x": "180.51",
"y": "136.21",
"label": "Bologna"
},
{
"id": "08",
"shapeid": "newCustomShape",
"x": "295.53",
"y": "88.79",
"label": "Trieste",
"labelpos": "bottom"
},
{
"id": "07",
"shapeid": "newCustomShape",
"x": "230.96",
"y": "107.96",
"label": "Venice"
},
{
"id": "09",
"shapeid": "newCustomShape",
"x": "161.34",
"y": "77.69",
"label": "Verona"
},
{
"id": "10",
"shapeid": "newCustomShape",
"x": "205.73",
"y": "184.64",
"label": "Florence"
},
{
"id": "11",
"shapeid": "newCustomShape",
"x": "162.34",
"y": "191.71",
"label": "Livorno",
"labelpos": "left"
},
{
"id": "12",
"shapeid": "newCustomShape",
"x": "341.95",
"y": "359.2",
"label": "Salerno",
"labelpos": "right"
},
{
"id": "13",
"shapeid": "newCustomShape",
"x": "323.79",
"y": "353.15",
"label": "Naples"
},
{
"id": "14",
"shapeid": "newCustomShape",
"x": "411.57",
"y": "332.97",
"label": "Bari"
},
{
"id": "15",
"shapeid": "newCustomShape",
"x": "450.92",
"y": "354.16",
"label": "Brindisi",
"labelpos": "left"
},
{
"id": "16",
"shapeid": "newCustomShape",
"x": "431.75",
"y": "367.27",
"label": "Taranto",
"labelpos": "bottom"
},
{
"id": "18",
"shapeid": "newCustomShape",
"x": "373.23",
"y": "482.3",
"label": "Reggio di Calabria",
"labelpos": "right"
},
{
"id": "19",
"shapeid": "newCustomShape",
"x": "359.1",
"y": "486.34",
"label": "Messina"
},
{
"id": "20",
"shapeid": "newCustomShape",
"x": "283.43",
"y": "495.42",
"label": "Palermo"
},
{
"id": "21",
"shapeid": "newCustomShape",
"x": "310.67",
"y": "533.76",
"label": "Gela",
"labelpos": "top"
},
{
"id": "22",
"shapeid": "newCustomShape",
"x": "342.96",
"y": "515.6",
"label": "Catania",
"labelpos": "right"
},
{
"id": "23",
"shapeid": "newCustomShape",
"x": "341.95",
"y": "532.75",
"label": "Augusta",
"labelpos": "right"
}
]
}
}
Old format for marker data in JSON, using separate application and definition blocks:
{
"map": {},
"markers": {
"shapes": [
{
"id": "myCustomShape",
"type": "circle",
"fillcolor": "FFFFFF,333333",
"fillpattern": "radial",
"showborder": "0",
"radius": "4"
},
{
"id": "newCustomShape",
"type": "circle",
"fillcolor": "FFFFFF,000099",
"fillpattern": "radial",
"showborder": "0",
"radius": "3"
}
],
"definition": [
{
"id": "RO",
"x": "241.05",
"y": "299.67",
"label": "Rome",
"labelpos": "left"
},
{
"id": "01",
"x": "103.82",
"y": "78.7",
"label": "Milan",
"labelpos": "left"
},
{
"id": "02",
"x": "79.61",
"y": "114.01",
"label": "Turin"
},
{
"id": "03",
"x": "80.61",
"y": "164.46",
"label": "Savona",
"labelpos": "left"
},
{
"id": "04",
"x": "103.82",
"y": "157.4",
"label": "Genoa"
},
{
"id": "05",
"x": "144.18",
"y": "174.55",
"label": "La Spezia"
},
{
"id": "06",
"x": "180.51",
"y": "136.21",
"label": "Bologna"
},
{
"id": "08",
"x": "295.53",
"y": "88.79",
"label": "Trieste",
"labelpos": "bottom"
},
{
"id": "07",
"x": "230.96",
"y": "107.96",
"label": "Venice"
},
{
"id": "09",
"x": "161.34",
"y": "77.69",
"label": "Verona"
},
{
"id": "10",
"x": "205.73",
"y": "184.64",
"label": "Florence"
},
{
"id": "11",
"x": "162.34",
"y": "191.71",
"label": "Livorno",
"labelpos": "left"
},
{
"id": "12",
"x": "341.95",
"y": "359.2",
"label": "Salerno",
"labelpos": "right"
},
{
"id": "13",
"x": "323.79",
"y": "353.15",
"label": "Naples"
},
{
"id": "14",
"x": "411.57",
"y": "332.97",
"label": "Bari"
},
{
"id": "15",
"x": "450.92",
"y": "354.16",
"label": "Brindisi",
"labelpos": "left"
},
{
"id": "16",
"x": "431.75",
"y": "367.27",
"label": "Taranto",
"labelpos": "bottom"
},
{
"id": "18",
"x": "373.23",
"y": "482.3",
"label": "Reggio di Calabria",
"labelpos": "right"
},
{
"id": "19",
"x": "359.1",
"y": "486.34",
"label": "Messina"
},
{
"id": "20",
"x": "283.43",
"y": "495.42",
"label": "Palermo"
},
{
"id": "21",
"x": "310.67",
"y": "533.76",
"label": "Gela",
"labelpos": "top"
},
{
"id": "22",
"x": "342.96",
"y": "515.6",
"label": "Catania",
"labelpos": "right"
},
{
"id": "23",
"x": "341.95",
"y": "532.75",
"label": "Augusta",
"labelpos": "right"
}
],
"application": [
{
"id": "RO",
"shapeid": "myCustomShape"
},
{
"id": "01",
"shapeid": "newCustomShape"
},
{
"id": "02",
"shapeid": "newCustomShape"
},
{
"id": "03",
"shapeid": "newCustomShape"
},
{
"id": "04",
"shapeid": "newCustomShape"
},
{
"id": "05",
"shapeid": "newCustomShape"
},
{
"id": "06",
"shapeid": "newCustomShape"
},
{
"id": "08",
"shapeid": "newCustomShape"
},
{
"id": "07",
"shapeid": "newCustomShape"
},
{
"id": "09",
"shapeid": "newCustomShape"
},
{
"id": "10",
"shapeid": "newCustomShape"
},
{
"id": "11",
"shapeid": "newCustomShape"
},
{
"id": "12",
"shapeid": "newCustomShape"
},
{
"id": "13",
"shapeid": "newCustomShape"
},
{
"id": "14",
"shapeid": "newCustomShape"
},
{
"id": "15",
"shapeid": "newCustomShape"
},
{
"id": "16",
"shapeid": "newCustomShape"
},
{
"id": "18",
"shapeid": "newCustomShape"
},
{
"id": "19",
"shapeid": "newCustomShape"
},
{
"id": "20",
"shapeid": "newCustomShape"
},
{
"id": "21",
"shapeid": "newCustomShape"
},
{
"id": "22",
"shapeid": "newCustomShape"
},
{
"id": "23",
"shapeid": "newCustomShape"
}
]
}
}
Old format for marker data in XML, using separate and blocks:
<map>
<markers>
<shapes>
<shape id='myCustomShape' type='circle' fillColor='FFFFFF,333333' fillpattern='radial' showborder='0' radius='4'/>
<shape id='newCustomShape' type='circle' fillColor='FFFFFF,000099' fillpattern='radial' showborder='0' radius='3'/>
</shapes>
<definition>
<marker id='RO' x='241.05' y='299.67' label='Rome' labelPos='left' />
<marker id='01' x='103.82' y='78.7' label='Milan' labelPos='left' />
<marker id='02' x='79.61' y='114.01' label='Turin' />
<marker id='03' x='80.61' y='164.46' label='Savona' labelpos='left' />
<marker id='04' x='103.82' y='157.4' label='Genoa' />
<marker id='05' x='144.18' y='174.55' label='La Spezia' />
<marker id='06' x='180.51' y='136.21' label='Bologna' />
<marker id='08' x='295.53' y='88.79' label='Trieste' labelPos='bottom' />
<marker id='07' x='230.96' y='107.96' label='Venice' />
<marker id='09' x='161.34' y='77.69' label='Verona' />
<marker id='10' x='205.73' y='184.64' label='Florence' />
<marker id='11' x='162.34' y='191.71' label='Livorno' labelPos='left' />
<marker id='12' x='341.95' y='359.2' label='Salerno' labelPos='right' />
<marker id='13' x='323.79' y='353.15' label='Naples' />
<marker id='14' x='411.57' y='332.97' label='Bari' />
<marker id='15' x='450.92' y='354.16' label='Brindisi' labelPos='left' />
<marker id='16' x='431.75' y='367.27' label='Taranto' labelPos='bottom' />
<marker id='18' x='373.23' y='482.3' label='Reggio di Calabria' labelPos='right' />
<marker id='19' x='359.1' y='486.34' label='Messina' />
<marker id='20' x='283.43' y='495.42' label='Palermo' />
<marker id='21' x='310.67' y='533.76' label='Gela' labelPos='top' />
<marker id='22' x='342.96' y='515.6' label='Catania' labelPos='right' />
<marker id='23' x='341.95' y='532.75' label='Augusta' labelPos='right' />
</definition>
<application>
<marker id='RO' shapeId='myCustomShape' />
<marker id='01' shapeId='newCustomShape' />
<marker id='02' shapeId='newCustomShape' />
<marker id='03' shapeId='newCustomShape' />
<marker id='04' shapeId='newCustomShape' />
<marker id='05' shapeId='newCustomShape' />
<marker id='06' shapeId='newCustomShape' />
<marker id='08' shapeId='newCustomShape' />
<marker id='07' shapeId='newCustomShape' />
<marker id='09' shapeId='newCustomShape' />
<marker id='10' shapeId='newCustomShape' />
<marker id='11' shapeId='newCustomShape' />
<marker id='12' shapeId='newCustomShape' />
<marker id='13' shapeId='newCustomShape' />
<marker id='14' shapeId='newCustomShape' />
<marker id='15' shapeId='newCustomShape' />
<marker id='16' shapeId='newCustomShape' />
<marker id='18' shapeId='newCustomShape' />
<marker id='19' shapeId='newCustomShape' />
<marker id='20' shapeId='newCustomShape' />
<marker id='21' shapeId='newCustomShape' />
<marker id='22' shapeId='newCustomShape' />
<marker id='23' shapeId='newCustomShape' />
</application>
</markers>
</map>