Map Name: SaintVincentAndTheGrenadlines
Javascript Alias: maps/saintvincentandthegrenadlines
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": "161.36",
"y": "155.28",
"label": "Kingstown",
"labelpos": "left"
},
{
"id": "01",
"shapeid": "newCustomShape",
"x": "153.4",
"y": "75.73",
"label": "Chateaubelair",
"labelpos": "left"
},
{
"id": "02",
"shapeid": "newCustomShape",
"x": "225",
"y": "81.42",
"label": "Georgetown"
}
]
}
}
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": "161.36",
"y": "155.28",
"label": "Kingstown",
"labelpos": "left"
},
{
"id": "01",
"x": "153.4",
"y": "75.73",
"label": "Chateaubelair",
"labelpos": "left"
},
{
"id": "02",
"x": "225",
"y": "81.42",
"label": "Georgetown"
}
],
"application": [
{
"id": "KI",
"shapeid": "myCustomShape"
},
{
"id": "01",
"shapeid": "newCustomShape"
},
{
"id": "02",
"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='161.36' y='155.28' label='Kingstown' labelPos='left' />
<marker id='01' x='153.4' y='75.73' label='Chateaubelair' labelPos='left' />
<marker id='02' x='225' y='81.42' label='Georgetown' />
</definition>
<application>
<marker id='KI' shapeId='myCustomShape' />
<marker id='01' shapeId='newCustomShape' />
<marker id='02' shapeId='newCustomShape' />
</application>
</markers>
</map>