CzechRepublic

Map Name: CzechRepublic

Javascript Alias: maps/czechrepublic

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",
                "radius": "4"
            },
            {
                "id": "newCustomShape",
                "type": "circle",
                "fillcolor": "FFFFFF,000099",
                "fillpattern": "radial",
                "radius": "3"
            }
        ],
        "items": [
            {
                "id": "PG",
                "shapeid": "myCustomShape",
                "x": "284.51",
                "y": "176.86",
                "label": "Prague",
                "labelpos": "right"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "286.56",
                "y": "38.84",
                "label": "Decin",
                "labelpos": "left"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "271.22",
                "y": "48.04",
                "label": "Usti nad Labem",
                "labelpos": "left"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "140.36",
                "y": "245.36",
                "label": "Plzen"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "282.47",
                "y": "385.41",
                "label": "Ceske Budejovice"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "344.83",
                "y": "49.07",
                "label": "Liberec"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape",
                "x": "415.37",
                "y": "132.9",
                "label": "Hradec Kralove",
                "labelpos": "right"
            },
            {
                "id": "08",
                "shapeid": "newCustomShape",
                "x": "577.92",
                "y": "248.42",
                "label": "Olomouc"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape",
                "x": "721.05",
                "y": "202.42",
                "label": "Ostrava"
            },
            {
                "id": "10",
                "shapeid": "newCustomShape",
                "x": "530.89",
                "y": "347.59",
                "label": "Brno"
            }
        ]
    }
}

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",
                "radius": "4"
            },
            {
                "id": "newCustomShape",
                "type": "circle",
                "fillcolor": "FFFFFF,000099",
                "fillpattern": "radial",
                "radius": "3"
            }
        ],
        "definition": [
            {
                "id": "PG",
                "x": "284.51",
                "y": "176.86",
                "label": "Prague",
                "labelpos": "right"
            },
            {
                "id": "01",
                "x": "286.56",
                "y": "38.84",
                "label": "Decin",
                "labelpos": "left"
            },
            {
                "id": "02",
                "x": "271.22",
                "y": "48.04",
                "label": "Usti nad Labem",
                "labelpos": "left"
            },
            {
                "id": "03",
                "x": "140.36",
                "y": "245.36",
                "label": "Plzen"
            },
            {
                "id": "04",
                "x": "282.47",
                "y": "385.41",
                "label": "Ceske Budejovice"
            },
            {
                "id": "05",
                "x": "344.83",
                "y": "49.07",
                "label": "Liberec"
            },
            {
                "id": "06",
                "x": "415.37",
                "y": "132.9",
                "label": "Hradec Kralove",
                "labelpos": "right"
            },
            {
                "id": "08",
                "x": "577.92",
                "y": "248.42",
                "label": "Olomouc"
            },
            {
                "id": "07",
                "x": "721.05",
                "y": "202.42",
                "label": "Ostrava"
            },
            {
                "id": "10",
                "x": "530.89",
                "y": "347.59",
                "label": "Brno"
            }
        ],
        "application": [
            {
                "id": "PG",
                "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": "10",
                "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' radius='4'/>
             <shape id='newCustomShape' type='circle' fillColor='FFFFFF,000099' fillPattern='radial' radius='3'/>
        </shapes>     
        <definition>
            <marker id='PG' x='284.51' y='176.86' label='Prague'  labelPos='right'  />
            <marker id='01' x='286.56' y='38.84' label='Decin' labelpos='left' />
            <marker id='02' x='271.22' y='48.04' label='Usti nad Labem' labelPos='left'  />
            <marker id='03' x='140.36' y='245.36' label='Plzen'  />
            <marker id='04' x='282.47' y='385.41' label='Ceske Budejovice'  />
            <marker id='05' x='344.83' y='49.07' label='Liberec'  />
            <marker id='06' x='415.37' y='132.9' label='Hradec Kralove' labelPos='right'  />
            <marker id='08' x='577.92' y='248.42' label='Olomouc'  />
            <marker id='07' x='721.05' y='202.42' label='Ostrava'  />
            <marker id='10' x='530.89' y='347.59' label='Brno'  />

        </definition>
        <application>
            <marker id='PG' 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='10' shapeId='newCustomShape'  />

        </application>
    </markers>
</map>