Croatia

Map Name: Croatia

Javascript Alias: maps/croatia

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": "ZA",
                "shapeid": "myCustomShape",
                "x": "208.08",
                "y": "91.8",
                "label": "Zagreb",
                "labelpos": "left"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "241.74",
                "y": "133.62",
                "label": "Sisak"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "422.28",
                "y": "106.08",
                "label": "Osijek",
                "labelpos": "left"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "444.72",
                "y": "136.68",
                "label": "Vukovar",
                "labelpos": "left"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "76.5",
                "y": "137.69",
                "label": "Rijeka",
                "labelpos": "left"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "90.78",
                "y": "155.04",
                "label": "Omisalj",
                "labelpos": "right"
            },
            {
                "id": "08",
                "shapeid": "newCustomShape",
                "x": "33.66",
                "y": "194.82",
                "label": "Pula"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape",
                "x": "138.72",
                "y": "270.3",
                "label": "Zadar",
                "labelpos": "right"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape",
                "x": "196.86",
                "y": "330.48",
                "label": "Sibenik"
            },
            {
                "id": "09",
                "shapeid": "newCustomShape",
                "x": "233.58",
                "y": "352.92",
                "label": "Ploce"
            },
            {
                "id": "10",
                "shapeid": "newCustomShape",
                "x": "377.4",
                "y": "441.66",
                "label": "Dubrovnik",
                "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": "ZA",
                "x": "208.08",
                "y": "91.8",
                "label": "Zagreb",
                "labelpos": "left"
            },
            {
                "id": "01",
                "x": "241.74",
                "y": "133.62",
                "label": "Sisak"
            },
            {
                "id": "02",
                "x": "422.28",
                "y": "106.08",
                "label": "Osijek",
                "labelpos": "left"
            },
            {
                "id": "03",
                "x": "444.72",
                "y": "136.68",
                "label": "Vukovar",
                "labelpos": "left"
            },
            {
                "id": "04",
                "x": "76.5",
                "y": "137.69",
                "label": "Rijeka",
                "labelpos": "left"
            },
            {
                "id": "05",
                "x": "90.78",
                "y": "155.04",
                "label": "Omisalj",
                "labelpos": "right"
            },
            {
                "id": "08",
                "x": "33.66",
                "y": "194.82",
                "label": "Pula"
            },
            {
                "id": "06",
                "x": "138.72",
                "y": "270.3",
                "label": "Zadar",
                "labelpos": "right"
            },
            {
                "id": "07",
                "x": "196.86",
                "y": "330.48",
                "label": "Sibenik"
            },
            {
                "id": "09",
                "x": "233.58",
                "y": "352.92",
                "label": "Ploce"
            },
            {
                "id": "10",
                "x": "377.4",
                "y": "441.66",
                "label": "Dubrovnik",
                "labelpos": "right"
            }
        ],
        "application": [
            {
                "id": "ZA",
                "shapeid": "myCustomShape"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape"
            },
            {
                "id": "08",
                "shapeid": "newCustomShape"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape"
            },
            {
                "id": "09",
                "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' showBorder='0' radius='4'/>
             <shape id='newCustomshape' type='circle' fillColor='FFFFFF,000099' fillPattern='radial' showBorder='0' radius='3'/>
            </shapes> 
        <definition>
            <marker id='ZA' x='208.08' y='91.8' label='Zagreb' labelPos='left'  />
            <marker id='01' x='241.74' y='133.62' label='Sisak'  />
            <marker id='02' x='422.28' y='106.08' label='Osijek' labelPos='left' />
            <marker id='03' x='444.72' y='136.68' label='Vukovar' labelPos='left' />
            <marker id='04' x='76.5' y='137.69' label='Rijeka' labelPos='left' />
            <marker id='05' x='90.78' y='155.04' label='Omisalj' labelPos='right'  />
            <marker id='08' x='33.66' y='194.82' label='Pula'  />
            <marker id='06' x='138.72' y='270.3' label='Zadar'  labelpos='right'/>
            <marker id='07' x='196.86' y='330.48' label='Sibenik'  />
            <marker id='09' x='233.58' y='352.92' label='Ploce'  />
            <marker id='10' x='377.4' y='441.66' label='Dubrovnik' labelPos='right' />

        </definition>
        <application>
            <marker id='ZA' 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='08' shapeId='newCustomShape'  />
            <marker id='06' shapeId='newCustomShape'  />
            <marker id='07' shapeId='newCustomShape'  />
            <marker id='09' shapeId='newCustomShape'  />
            <marker id='10' shapeId='newCustomShape'  />
        </application>
    </markers>
</map>