France

Map Name: France

Javascript Alias: maps/france

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": "PA",
                "shapeid": "myCustomShape",
                "x": "353.38",
                "y": "142.76",
                "label": "Paris",
                "labelpos": "right"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "349.3",
                "y": "15.29",
                "label": "Dunkerque",
                "labelpos": "right"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "370.72",
                "y": "39.76",
                "label": "Lille",
                "labelpos": "left"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "198.38",
                "y": "100.95",
                "label": "Cherbourg"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "273.84",
                "y": "120.32",
                "label": "Rouen",
                "labelpos": "right"
            },
            {
                "id": "05",
                "shapeid": "newCustomShape",
                "x": "485.95",
                "y": "151.93",
                "label": "Nancy"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape",
                "x": "541.01",
                "y": "158.05",
                "label": "Strasbourg",
                "labelpos": "left"
            },
            {
                "id": "08",
                "shapeid": "newCustomShape",
                "x": "473.71",
                "y": "221.28",
                "label": "Dijon",
                "labelpos": "right"
            },
            {
                "id": "09",
                "shapeid": "newCustomShape",
                "x": "371.74",
                "y": "188.65",
                "label": "Orleans"
            },
            {
                "id": "10",
                "shapeid": "newCustomShape",
                "x": "60.72",
                "y": "162.13",
                "label": "Brest"
            },
            {
                "id": "11",
                "shapeid": "newCustomShape",
                "x": "189.21",
                "y": "246.77",
                "label": "Nantes"
            },
            {
                "id": "12",
                "shapeid": "newCustomShape",
                "x": "308.51",
                "y": "321.21",
                "label": "Limoges"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape",
                "x": "449.24",
                "y": "307.95",
                "label": "Lyon"
            },
            {
                "id": "13",
                "shapeid": "newCustomShape",
                "x": "478.81",
                "y": "332.43",
                "label": "Grenoble"
            },
            {
                "id": "15",
                "shapeid": "newCustomShape",
                "x": "463.51",
                "y": "356.9",
                "label": "Valence"
            },
            {
                "id": "14",
                "shapeid": "newCustomShape",
                "x": "224.9",
                "y": "391.57",
                "label": "Bordeaux",
                "labelpos": "right"
            },
            {
                "id": "18",
                "shapeid": "newCustomShape",
                "x": "308.51",
                "y": "440.52",
                "label": "Toulouse"
            },
            {
                "id": "17",
                "shapeid": "newCustomShape",
                "x": "350.32",
                "y": "494.56",
                "label": "Perpignan",
                "labelpos": "left"
            },
            {
                "id": "16",
                "shapeid": "newCustomShape",
                "x": "447.2",
                "y": "466.01",
                "label": "Marseille"
            },
            {
                "id": "19",
                "shapeid": "newCustomShape",
                "x": "474.73",
                "y": "473.15",
                "label": "Toulon",
                "labelpos": "top"
            },
            {
                "id": "21",
                "shapeid": "newCustomShape",
                "x": "525.72",
                "y": "433.38",
                "label": "Nice"
            }
        ]
    }
}

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": "PA",
                "x": "353.38",
                "y": "142.76",
                "label": "Paris",
                "labelpos": "right"
            },
            {
                "id": "01",
                "x": "349.3",
                "y": "15.29",
                "label": "Dunkerque",
                "labelpos": "right"
            },
            {
                "id": "02",
                "x": "370.72",
                "y": "39.76",
                "label": "Lille",
                "labelpos": "left"
            },
            {
                "id": "03",
                "x": "198.38",
                "y": "100.95",
                "label": "Cherbourg"
            },
            {
                "id": "04",
                "x": "273.84",
                "y": "120.32",
                "label": "Rouen",
                "labelpos": "right"
            },
            {
                "id": "05",
                "x": "485.95",
                "y": "151.93",
                "label": "Nancy"
            },
            {
                "id": "06",
                "x": "541.01",
                "y": "158.05",
                "label": "Strasbourg",
                "labelpos": "left"
            },
            {
                "id": "08",
                "x": "473.71",
                "y": "221.28",
                "label": "Dijon",
                "labelpos": "right"
            },
            {
                "id": "09",
                "x": "371.74",
                "y": "188.65",
                "label": "Orleans"
            },
            {
                "id": "10",
                "x": "60.72",
                "y": "162.13",
                "label": "Brest"
            },
            {
                "id": "11",
                "x": "189.21",
                "y": "246.77",
                "label": "Nantes"
            },
            {
                "id": "12",
                "x": "308.51",
                "y": "321.21",
                "label": "Limoges"
            },
            {
                "id": "07",
                "x": "449.24",
                "y": "307.95",
                "label": "Lyon"
            },
            {
                "id": "13",
                "x": "478.81",
                "y": "332.43",
                "label": "Grenoble"
            },
            {
                "id": "15",
                "x": "463.51",
                "y": "356.9",
                "label": "Valence"
            },
            {
                "id": "14",
                "x": "224.9",
                "y": "391.57",
                "label": "Bordeaux",
                "labelpos": "right"
            },
            {
                "id": "18",
                "x": "308.51",
                "y": "440.52",
                "label": "Toulouse"
            },
            {
                "id": "17",
                "x": "350.32",
                "y": "494.56",
                "label": "Perpignan",
                "labelpos": "left"
            },
            {
                "id": "16",
                "x": "447.2",
                "y": "466.01",
                "label": "Marseille"
            },
            {
                "id": "19",
                "x": "474.73",
                "y": "473.15",
                "label": "Toulon",
                "labelpos": "top"
            },
            {
                "id": "21",
                "x": "525.72",
                "y": "433.38",
                "label": "Nice"
            }
        ],
        "application": [
            {
                "id": "PA",
                "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": "08",
                "shapeid": "newCustomShape"
            },
            {
                "id": "09",
                "shapeid": "newCustomShape"
            },
            {
                "id": "10",
                "shapeid": "newCustomShape"
            },
            {
                "id": "11",
                "shapeid": "newCustomShape"
            },
            {
                "id": "12",
                "shapeid": "newCustomShape"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape"
            },
            {
                "id": "13",
                "shapeid": "newCustomShape"
            },
            {
                "id": "15",
                "shapeid": "newCustomShape"
            },
            {
                "id": "14",
                "shapeid": "newCustomShape"
            },
            {
                "id": "18",
                "shapeid": "newCustomShape"
            },
            {
                "id": "17",
                "shapeid": "newCustomShape"
            },
            {
                "id": "16",
                "shapeid": "newCustomShape"
            },
            {
                "id": "19",
                "shapeid": "newCustomShape"
            },
            {
                "id": "21",
                "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='PA' x='353.38' y='142.76' label='Paris' labelPos='right'  />
            <marker id='01' x='349.3' y='15.29' label='Dunkerque' labelPos='right'  />
            <marker id='02' x='370.72' y='39.76' label='Lille' labelPos='left' />
            <marker id='03' x='198.38' y='100.95' label='Cherbourg'  />
            <marker id='04' x='273.84' y='120.32' label='Rouen' labelPos='right'  />
            <marker id='05' x='485.95' y='151.93' label='Nancy'  />
            <marker id='06' x='541.01' y='158.05' label='Strasbourg' labelpos='left' />
            <marker id='08' x='473.71' y='221.28' label='Dijon' labelPos='right'  />
            <marker id='09' x='371.74' y='188.65' label='Orleans'  />
            <marker id='10' x='60.72' y='162.13' label='Brest'  />
            <marker id='11' x='189.21' y='246.77' label='Nantes'  />
            <marker id='12' x='308.51' y='321.21' label='Limoges'  />
            <marker id='07' x='449.24' y='307.95' label='Lyon'  />
            <marker id='13' x='478.81' y='332.43' label='Grenoble'  />
            <marker id='15' x='463.51' y='356.9' label='Valence'  />
            <marker id='14' x='224.9' y='391.57' label='Bordeaux' labelPos='right'  />
            <marker id='18' x='308.51' y='440.52' label='Toulouse'  />
            <marker id='17' x='350.32' y='494.56' label='Perpignan' labelPos='left'  />
            <marker id='16' x='447.2' y='466.01' label='Marseille'  />
            <marker id='19' x='474.73' y='473.15' label='Toulon' labelPos='top'  />
            <marker id='21' x='525.72' y='433.38' label='Nice'  />

        </definition>
        <application>
            <marker id='PA' 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='08' shapeId='newCustomShape'  />
            <marker id='09' shapeId='newCustomShape'  />
            <marker id='10' shapeId='newCustomShape'  />
            <marker id='11' shapeId='newCustomShape'  />
            <marker id='12' shapeId='newCustomShape'  />
            <marker id='07' shapeId='newCustomShape'  />
            <marker id='13' shapeId='newCustomShape'  />
            <marker id='15' shapeId='newCustomShape'  />
            <marker id='14' shapeId='newCustomShape'  />
            <marker id='18' shapeId='newCustomShape'  />
            <marker id='17' shapeId='newCustomShape'  />
            <marker id='16' shapeId='newCustomShape'  />
            <marker id='19' shapeId='newCustomShape'  />
            <marker id='21' shapeId='newCustomShape'  />

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