Map Name: Maryland
Javascript Alias: maps/maryland
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": "AN",
"shapeid": "myCustomShape",
"x": "496.89",
"y": "173.63",
"label": "Annapolis",
"labelpos": "left"
},
{
"id": "01",
"shapeid": "newCustomShape",
"x": "111.14",
"y": "11.43",
"label": "Frostburg",
"labelpos": "left"
},
{
"id": "02",
"shapeid": "newCustomShape",
"x": "118.42",
"y": "22.87",
"label": "Cumberland",
"labelpos": "left"
},
{
"id": "03",
"shapeid": "newCustomShape",
"x": "7.17",
"y": "95.65",
"label": "Oakland"
},
{
"id": "06",
"shapeid": "newCustomShape",
"x": "294.14",
"y": "25.99",
"label": "Hagerstown"
},
{
"id": "07",
"shapeid": "newCustomShape",
"x": "326.37",
"y": "80.05",
"label": "Frederick",
"labelpos": "right"
},
{
"id": "08",
"shapeid": "newCustomShape",
"x": "429.3",
"y": "113.33",
"label": "Columbia"
},
{
"id": "09",
"shapeid": "newCustomShape",
"x": "384.59",
"y": "166.35",
"label": "Bethesda",
"labelpos": "right"
},
{
"id": "10",
"shapeid": "newCustomShape",
"x": "423.06",
"y": "240.17",
"label": "St.Charles"
},
{
"id": "11",
"shapeid": "newCustomShape",
"x": "508.32",
"y": "327.51",
"label": "Lexington Park"
},
{
"id": "12",
"shapeid": "newCustomShape",
"x": "467.77",
"y": "57.18",
"label": "Towson"
},
{
"id": "13",
"shapeid": "newCustomShape",
"x": "474.01",
"y": "94.61",
"label": "Baltimore"
},
{
"id": "15",
"shapeid": "newCustomShape",
"x": "608.14",
"y": "17.67",
"label": "Elkton"
},
{
"id": "16",
"shapeid": "newCustomShape",
"x": "614.38",
"y": "211.06",
"label": "Federalsburg",
"labelpos": "left"
},
{
"id": "17",
"shapeid": "newCustomShape",
"x": "543.67",
"y": "266.17",
"label": "Cambridge",
"labelpos": "right"
},
{
"id": "23",
"shapeid": "newCustomShape",
"x": "637.25",
"y": "292.16",
"label": "Salisbury",
"labelpos": "left"
},
{
"id": "24",
"shapeid": "newCustomShape",
"x": "641.41",
"y": "352.47",
"label": "Princess Anne",
"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": "AN",
"x": "496.89",
"y": "173.63",
"label": "Annapolis",
"labelpos": "left"
},
{
"id": "01",
"x": "111.14",
"y": "11.43",
"label": "Frostburg",
"labelpos": "left"
},
{
"id": "02",
"x": "118.42",
"y": "22.87",
"label": "Cumberland",
"labelpos": "left"
},
{
"id": "03",
"x": "7.17",
"y": "95.65",
"label": "Oakland"
},
{
"id": "06",
"x": "294.14",
"y": "25.99",
"label": "Hagerstown"
},
{
"id": "07",
"x": "326.37",
"y": "80.05",
"label": "Frederick",
"labelpos": "right"
},
{
"id": "08",
"x": "429.3",
"y": "113.33",
"label": "Columbia"
},
{
"id": "09",
"x": "384.59",
"y": "166.35",
"label": "Bethesda",
"labelpos": "right"
},
{
"id": "10",
"x": "423.06",
"y": "240.17",
"label": "St.Charles"
},
{
"id": "11",
"x": "508.32",
"y": "327.51",
"label": "Lexington Park"
},
{
"id": "12",
"x": "467.77",
"y": "57.18",
"label": "Towson"
},
{
"id": "13",
"x": "474.01",
"y": "94.61",
"label": "Baltimore"
},
{
"id": "15",
"x": "608.14",
"y": "17.67",
"label": "Elkton"
},
{
"id": "16",
"x": "614.38",
"y": "211.06",
"label": "Federalsburg",
"labelpos": "left"
},
{
"id": "17",
"x": "543.67",
"y": "266.17",
"label": "Cambridge",
"labelpos": "right"
},
{
"id": "23",
"x": "637.25",
"y": "292.16",
"label": "Salisbury",
"labelpos": "left"
},
{
"id": "24",
"x": "641.41",
"y": "352.47",
"label": "Princess Anne",
"labelpos": "right"
}
],
"application": [
{
"id": "AN",
"shapeid": "myCustomShape"
},
{
"id": "01",
"shapeid": "newCustomShape"
},
{
"id": "02",
"shapeid": "newCustomShape"
},
{
"id": "03",
"shapeid": "newCustomShape"
},
{
"id": "06",
"shapeid": "newCustomShape"
},
{
"id": "07",
"shapeid": "newCustomShape"
},
{
"id": "08",
"shapeid": "newCustomShape"
},
{
"id": "09",
"shapeid": "newCustomShape"
},
{
"id": "10",
"shapeid": "newCustomShape"
},
{
"id": "11",
"shapeid": "newCustomShape"
},
{
"id": "12",
"shapeid": "newCustomShape"
},
{
"id": "13",
"shapeid": "newCustomShape"
},
{
"id": "15",
"shapeid": "newCustomShape"
},
{
"id": "16",
"shapeid": "newCustomShape"
},
{
"id": "17",
"shapeid": "newCustomShape"
},
{
"id": "23",
"shapeid": "newCustomShape"
},
{
"id": "24",
"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='AN' x='496.89' y='173.63' label='Annapolis' labelPos='left' />
<marker id='01' x='111.14' y='11.43' label='Frostburg' labelPos='left' />
<marker id='02' x='118.42' y='22.87' label='Cumberland' labelPos='left' />
<marker id='03' x='7.17' y='95.65' label='Oakland' />
<marker id='06' x='294.14' y='25.99' label='Hagerstown' />
<marker id='07' x='326.37' y='80.05' label='Frederick' labelPos='right' />
<marker id='08' x='429.3' y='113.33' label='Columbia' />
<marker id='09' x='384.59' y='166.35' label='Bethesda' labelPos='right' />
<marker id='10' x='423.06' y='240.17' label='St.Charles' />
<marker id='11' x='508.32' y='327.51' label='Lexington Park' />
<marker id='12' x='467.77' y='57.18' label='Towson' />
<marker id='13' x='474.01' y='94.61' label='Baltimore' />
<marker id='15' x='608.14' y='17.67' label='Elkton' />
<marker id='16' x='614.38' y='211.06' label='Federalsburg' labelPos='left' />
<marker id='17' x='543.67' y='266.17' label='Cambridge' labelPos='right' />
<marker id='23' x='637.25' y='292.16' label='Salisbury' labelPos='left' />
<marker id='24' x='641.41' y='352.47' label='Princess Anne' labelPos='right' />
</definition>
<application>
<marker id='AN' shapeId='myCustomShape' />
<marker id='01' shapeId='newCustomShape' />
<marker id='02' shapeId='newCustomShape' />
<marker id='03' shapeId='newCustomShape' />
<marker id='06' shapeId='newCustomShape' />
<marker id='07' shapeId='newCustomShape' />
<marker id='08' 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='15' shapeId='newCustomShape' />
<marker id='16' shapeId='newCustomShape' />
<marker id='17' shapeId='newCustomShape' />
<marker id='23' shapeId='newCustomShape' />
<marker id='24' shapeId='newCustomShape' />
</application>
</markers>
</map>