Marker data

Map Name: Austria

JavaScript Alias: maps/austria


{
    "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": "VI",
                "shapeid": "myCustomShape",
                "x": "504.11",
                "y": "96.1",
                "label": "Vienna"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "356.34",
                "y": "88.86",
                "label": "Linz"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "261.27",
                "y": "148.79",
                "label": "Salzburg"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "137.27",
                "y": "202.53",
                "label": "Innsbruck"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "356.34",
                "y": "273.83",
                "label": "Klagenfurt"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "447.27",
                "y": "227.33",
                "label": "Graz"
            }
        ]
    }
}

New JSON format for map marker data.


{
    "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": "VI",
                "x": "504.11",
                "y": "96.1",
                "label": "Vienna"
            },
            {
                "id": "01",
                "x": "356.34",
                "y": "88.86",
                "label": "Linz"
            },
            {
                "id": "03",
                "x": "261.27",
                "y": "148.79",
                "label": "Salzburg"
            },
            {
                "id": "02",
                "x": "137.27",
                "y": "202.53",
                "label": "Innsbruck"
            },
            {
                "id": "04",
                "x": "356.34",
                "y": "273.83",
                "label": "Klagenfurt"
            },
            {
                "id": "05",
                "x": "447.27",
                "y": "227.33",
                "label": "Graz"
            }
        ],
        "application": [
            {
                "id": "VI",
                "shapeid": "myCustomShape"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape"
            }
        ]
    }
}

Old JSON format for map marker data, using separate application and definition blocks.