Liechtenstein

Map Name: Liechtenstein

Javascript Alias: maps/liechtenstein

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": "VA",
                "shapeid": "myCustomShape",
                "x": "101.26",
                "y": "307.26",
                "label": "Vaduz ",
                "labelpos": "right"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "103.33",
                "y": "67.52",
                "label": "Ruggell"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "116.76",
                "y": "180.16",
                "label": "Nendeln"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "77.49",
                "y": "246.29",
                "label": "Schaan"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "254.19",
                "y": "439.52",
                "label": "Malbun"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "72.33",
                "y": "540.79",
                "label": "Balzers"
            }
        ]
    }
}

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": "VA",
                "x": "101.26",
                "y": "307.26",
                "label": "Vaduz ",
                "labelpos": "right"
            },
            {
                "id": "01",
                "x": "103.33",
                "y": "67.52",
                "label": "Ruggell"
            },
            {
                "id": "02",
                "x": "116.76",
                "y": "180.16",
                "label": "Nendeln"
            },
            {
                "id": "03",
                "x": "77.49",
                "y": "246.29",
                "label": "Schaan"
            },
            {
                "id": "04",
                "x": "254.19",
                "y": "439.52",
                "label": "Malbun"
            },
            {
                "id": "05",
                "x": "72.33",
                "y": "540.79",
                "label": "Balzers"
            }
        ],
        "application": [
            {
                "id": "VA",
                "shapeid": "myCustomShape"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape"
            },
            {
                "id": "05",
                "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='VA' x='101.26' y='307.26' label='Vaduz ' labelPos='right'  />
            <marker id='01' x='103.33' y='67.52' label='Ruggell'  />
            <marker id='02' x='116.76' y='180.16' label='Nendeln'  />
            <marker id='03' x='77.49' y='246.29' label='Schaan'  />
            <marker id='04' x='254.19' y='439.52' label='Malbun'  />
            <marker id='05' x='72.33' y='540.79' label='Balzers'  />

        </definition>
        <application>
            <marker id='VA' 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'  />

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