Luxembourg

Map Name: Luxembourg

Javascript Alias: maps/luxembourg

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": "LU",
                "shapeid": "myCustomShape",
                "x": "300.46",
                "y": "586.84",
                "label": "Luxembourg"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "107.89",
                "y": "246.29",
                "label": "Wiltz"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "280.19",
                "y": "325.35",
                "label": "Diekirch"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "507.23",
                "y": "490.55",
                "label": "Mertert",
                "labelpos": "left"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "110.93",
                "y": "639.55",
                "label": "Petange",
                "labelpos": "right"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "117.01",
                "y": "668.94",
                "label": "Differdange"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape",
                "x": "151.47",
                "y": "690.22",
                "label": "Esch"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape",
                "x": "244.72",
                "y": "733.81",
                "label": "Budelange",
                "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": "LU",
                "x": "300.46",
                "y": "586.84",
                "label": "Luxembourg"
            },
            {
                "id": "01",
                "x": "107.89",
                "y": "246.29",
                "label": "Wiltz"
            },
            {
                "id": "02",
                "x": "280.19",
                "y": "325.35",
                "label": "Diekirch"
            },
            {
                "id": "03",
                "x": "507.23",
                "y": "490.55",
                "label": "Mertert",
                "labelpos": "left"
            },
            {
                "id": "04",
                "x": "110.93",
                "y": "639.55",
                "label": "Petange",
                "labelpos": "right"
            },
            {
                "id": "05",
                "x": "117.01",
                "y": "668.94",
                "label": "Differdange"
            },
            {
                "id": "06",
                "x": "151.47",
                "y": "690.22",
                "label": "Esch"
            },
            {
                "id": "07",
                "x": "244.72",
                "y": "733.81",
                "label": "Budelange",
                "labelpos": "left"
            }
        ],
        "application": [
            {
                "id": "LU",
                "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"
            }
        ]
    }
}

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='LU' x='300.46' y='586.84' label='Luxembourg'/>
            <marker id='01' x='107.89' y='246.29' label='Wiltz'  />
            <marker id='02' x='280.19' y='325.35' label='Diekirch'  />
            <marker id='03' x='507.23' y='490.55' label='Mertert' labelPos='left' />
            <marker id='04' x='110.93' y='639.55' label='Petange' labelPos='right' />
            <marker id='05' x='117.01' y='668.94' label='Differdange'  />
            <marker id='06' x='151.47' y='690.22' label='Esch'  />
            <marker id='07' x='244.72' y='733.81' label='Budelange' labelPos='left' />

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

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