Map Name: Jamaica
Javascript Alias: maps/jamaica
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": "KI",
"shapeid": "myCustomShape",
"x": "292.68",
"y": "109.66",
"label": "Kingston",
"labelpos": "right"
},
{
"id": "01",
"shapeid": "newCustomShape",
"x": "93.58",
"y": "17.03",
"label": "Montego Bay",
"labelpos": "left"
},
{
"id": "02",
"shapeid": "newCustomShape",
"x": "184.08",
"y": "22.35",
"label": "Discovery Bay",
"labelpos": "left"
},
{
"id": "03",
"shapeid": "newCustomShape",
"x": "231.99",
"y": "30.87",
"label": "Ocho Rios"
},
{
"id": "04",
"shapeid": "newCustomShape",
"x": "353.36",
"y": "74.52",
"label": "Port Antonio"
},
{
"id": "05",
"shapeid": "newCustomShape",
"x": "358.69",
"y": "124.56",
"label": "Morant Bay",
"labelpos": "left"
},
{
"id": "06",
"shapeid": "newCustomShape",
"x": "387.43",
"y": "124.56",
"label": "Rocky Point",
"labelpos": "bottom"
},
{
"id": "08",
"shapeid": "newCustomShape",
"x": "279.9",
"y": "113.92",
"label": "Portmore",
"labelpos": "left"
},
{
"id": "10",
"shapeid": "newCustomShape",
"x": "259.67",
"y": "95.82",
"label": "Spanish Town",
"labelpos": "right"
},
{
"id": "11",
"shapeid": "newCustomShape",
"x": "240.51",
"y": "123.5",
"label": "Port Esquivel",
"labelpos": "left"
},
{
"id": "12",
"shapeid": "newCustomShape",
"x": "210.7",
"y": "109.66",
"label": "May Pen",
"labelpos": "left"
},
{
"id": "13",
"shapeid": "newCustomShape",
"x": "153.2",
"y": "128.82",
"label": "Alligator Pond",
"labelpos": "left"
},
{
"id": "14",
"shapeid": "newCustomShape",
"x": "161.72",
"y": "86.23",
"label": "Mandeville"
},
{
"id": "15",
"shapeid": "newCustomShape",
"x": "17.99",
"y": "54.29",
"label": "Negrill"
},
{
"id": "16",
"shapeid": "newCustomShape",
"x": "104.23",
"y": "97.95",
"label": "Black River"
}
]
}
}
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": "KI",
"x": "292.68",
"y": "109.66",
"label": "Kingston",
"labelpos": "right"
},
{
"id": "01",
"x": "93.58",
"y": "17.03",
"label": "Montego Bay",
"labelpos": "left"
},
{
"id": "02",
"x": "184.08",
"y": "22.35",
"label": "Discovery Bay",
"labelpos": "left"
},
{
"id": "03",
"x": "231.99",
"y": "30.87",
"label": "Ocho Rios"
},
{
"id": "04",
"x": "353.36",
"y": "74.52",
"label": "Port Antonio"
},
{
"id": "05",
"x": "358.69",
"y": "124.56",
"label": "Morant Bay",
"labelpos": "left"
},
{
"id": "06",
"x": "387.43",
"y": "124.56",
"label": "Rocky Point",
"labelpos": "bottom"
},
{
"id": "08",
"x": "279.9",
"y": "113.92",
"label": "Portmore",
"labelpos": "left"
},
{
"id": "10",
"x": "259.67",
"y": "95.82",
"label": "Spanish Town",
"labelpos": "right"
},
{
"id": "11",
"x": "240.51",
"y": "123.5",
"label": "Port Esquivel",
"labelpos": "left"
},
{
"id": "12",
"x": "210.7",
"y": "109.66",
"label": "May Pen",
"labelpos": "left"
},
{
"id": "13",
"x": "153.2",
"y": "128.82",
"label": "Alligator Pond",
"labelpos": "left"
},
{
"id": "14",
"x": "161.72",
"y": "86.23",
"label": "Mandeville"
},
{
"id": "15",
"x": "17.99",
"y": "54.29",
"label": "Negrill"
},
{
"id": "16",
"x": "104.23",
"y": "97.95",
"label": "Black River"
}
],
"application": [
{
"id": "KI",
"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": "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"
}
]
}
}
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='KI' x='292.68' y='109.66' label='Kingston' labelPos='right' />
<marker id='01' x='93.58' y='17.03' label='Montego Bay' labelPos='left' />
<marker id='02' x='184.08' y='22.35' label='Discovery Bay' labelPos='left' />
<marker id='03' x='231.99' y='30.87' label='Ocho Rios' />
<marker id='04' x='353.36' y='74.52' label='Port Antonio' />
<marker id='05' x='358.69' y='124.56' label='Morant Bay' labelPos='left' />
<marker id='06' x='387.43' y='124.56' label='Rocky Point' labelPos='bottom' />
<marker id='08' x='279.9' y='113.92' label='Portmore' labelPos='left' />
<marker id='10' x='259.67' y='95.82' label='Spanish Town' labelPos='right' />
<marker id='11' x='240.51' y='123.5' label='Port Esquivel' labelPos='left' />
<marker id='12' x='210.7' y='109.66' label='May Pen' labelPos='left' />
<marker id='13' x='153.2' y='128.82' label='Alligator Pond' labelPos='left' />
<marker id='14' x='161.72' y='86.23' label='Mandeville' />
<marker id='15' x='17.99' y='54.29' label='Negrill' />
<marker id='16' x='104.23' y='97.95' label='Black River' />
</definition>
<application>
<marker id='KI' 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='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' />
</application>
</markers>
</map>