Estonia

Map Name: Estonia

Javascript Alias: maps/estonia

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": "TA",
                "shapeid": "myCustomShape",
                "x": "273.46",
                "y": "48.23",
                "label": "Tallinn",
                "labelpos": "right"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "220.09",
                "y": "67.73",
                "label": "Paldiski",
                "labelpos": "right"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "169.8",
                "y": "141.63",
                "label": "Haapsalu",
                "labelpos": "right"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "258.06",
                "y": "232.97",
                "label": "Parnu"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "286.8",
                "y": "182.68",
                "label": "Vohma",
                "labelpos": "right"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "437.67",
                "y": "227.84",
                "label": "Tartu"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape",
                "x": "405.85",
                "y": "325.34",
                "label": "Valga",
                "labelpos": "right"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape",
                "x": "503.35",
                "y": "52.34",
                "label": "Kohtla-Jarve"
            },
            {
                "id": "08",
                "shapeid": "newCustomShape",
                "x": "585.46",
                "y": "54.39",
                "label": "Narva",
                "labelpos": "left"
            }
        ]
    }
}

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": "TA",
                "x": "273.46",
                "y": "48.23",
                "label": "Tallinn",
                "labelpos": "right"
            },
            {
                "id": "01",
                "x": "220.09",
                "y": "67.73",
                "label": "Paldiski",
                "labelpos": "right"
            },
            {
                "id": "02",
                "x": "169.8",
                "y": "141.63",
                "label": "Haapsalu",
                "labelpos": "right"
            },
            {
                "id": "03",
                "x": "258.06",
                "y": "232.97",
                "label": "Parnu"
            },
            {
                "id": "04",
                "x": "286.8",
                "y": "182.68",
                "label": "Vohma",
                "labelpos": "right"
            },
            {
                "id": "05",
                "x": "437.67",
                "y": "227.84",
                "label": "Tartu"
            },
            {
                "id": "06",
                "x": "405.85",
                "y": "325.34",
                "label": "Valga",
                "labelpos": "right"
            },
            {
                "id": "07",
                "x": "503.35",
                "y": "52.34",
                "label": "Kohtla-Jarve"
            },
            {
                "id": "08",
                "x": "585.46",
                "y": "54.39",
                "label": "Narva",
                "labelpos": "left"
            }
        ],
        "application": [
            {
                "id": "TA",
                "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": "07",
                "shapeid": "newCustomShape"
            },
            {
                "id": "08",
                "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='TA' x='273.46' y='48.23' label='Tallinn' labelPos='right'  />
            <marker id='01' x='220.09' y='67.73' label='Paldiski' labelPos='right' />
            <marker id='02' x='169.8' y='141.63' label='Haapsalu' labelPos='right'  />
            <marker id='03' x='258.06' y='232.97' label='Parnu'  />
            <marker id='04' x='286.8' y='182.68' label='Vohma'  labelPos='right'/>
            <marker id='05' x='437.67' y='227.84' label='Tartu'  />
            <marker id='06' x='405.85' y='325.34' label='Valga' labelPos='right'  />
            <marker id='07' x='503.35' y='52.34' label='Kohtla-Jarve'  />
            <marker id='08' x='585.46' y='54.39' label='Narva' labelPos='left' />
        </definition>
        <application>
            <marker id='TA' 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='07' shapeId='newCustomShape'  />
            <marker id='08' shapeId='newCustomShape'  />

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