Australia

Map Name: Australia

Javascript Alias: maps/australia

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": "SW",
                "shapeid": "myCustomShape",
                "x": "200.33",
                "y": "142.3",
                "label": "Canberra ",
                "labelpos": "right"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape",
                "x": "209.41",
                "y": "136.24",
                "label": "Sydney",
                "labelpos": "top"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape",
                "x": "181.15",
                "y": "154.41",
                "label": "Melbourne",
                "labelpos": "left"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape",
                "x": "223.54",
                "y": "100.92",
                "label": "Brisbane"
            },
            {
                "id": "04",
                "shapeid": "newCustomShape",
                "x": "20.68",
                "y": "121.1",
                "label": "Perth"
            },
            {
                "id": "06",
                "shapeid": "newCustomShape",
                "x": "145.83",
                "y": "141.29",
                "label": "Adelaide"
            },
            {
                "id": "07",
                "shapeid": "newCustomShape",
                "x": "195.28",
                "y": "181.66",
                "label": "Hobart"
            },
            {
                "id": "08",
                "shapeid": "newCustomShape",
                "x": "104.45",
                "y": "19.17",
                "label": "Darwin",
                "labelpos": "bottom"
            }
        ]
    }
}

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": "SW",
                "x": "200.33",
                "y": "142.3",
                "label": "Canberra ",
                "labelpos": "right"
            },
            {
                "id": "01",
                "x": "209.41",
                "y": "136.24",
                "label": "Sydney",
                "labelpos": "top"
            },
            {
                "id": "02",
                "x": "181.15",
                "y": "154.41",
                "label": "Melbourne",
                "labelpos": "left"
            },
            {
                "id": "03",
                "x": "223.54",
                "y": "100.92",
                "label": "Brisbane"
            },
            {
                "id": "04",
                "x": "20.68",
                "y": "121.1",
                "label": "Perth"
            },
            {
                "id": "06",
                "x": "145.83",
                "y": "141.29",
                "label": "Adelaide"
            },
            {
                "id": "07",
                "x": "195.28",
                "y": "181.66",
                "label": "Hobart"
            },
            {
                "id": "08",
                "x": "104.45",
                "y": "19.17",
                "label": "Darwin",
                "labelpos": "bottom"
            }
        ],
        "application": [
            {
                "id": "SW",
                "shapeid": "myCustomShape"
            },
            {
                "id": "01",
                "shapeid": "newCustomShape"
            },
            {
                "id": "02",
                "shapeid": "newCustomShape"
            },
            {
                "id": "03",
                "shapeid": "newCustomShape"
            },
            {
                "id": "04",
                "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='SW' x='200.33' y='142.3' label='Canberra ' labelPos='right'  />
            <marker id='01' x='209.41' y='136.24' label='Sydney' labelPos='top' />
            <marker id='02' x='181.15' y='154.41' label='Melbourne' labelPos='left' />
            <marker id='03' x='223.54' y='100.92' label='Brisbane'  />
            <marker id='04' x='20.68' y='121.1' label='Perth'  />
            <marker id='06' x='145.83' y='141.29' label='Adelaide'  />
            <marker id='07' x='195.28' y='181.66' label='Hobart'  />
            <marker id='08' x='104.45' y='19.17' label='Darwin' labelPos='bottom' />
        </definition>
        <application>
            <marker id='SW' shapeId='myCustomShape'  />
            <marker id='01' shapeId='newCustomShape'  />
            <marker id='02' shapeId='newCustomShape'  />
            <marker id='03' shapeId='newCustomShape'  />
            <marker id='04' shapeId='newCustomShape'  />
            <marker id='06' shapeId='newCustomShape'  />
            <marker id='07' shapeId='newCustomShape'  />
            <marker id='08' shapeId='newCustomShape'  />
        </application>
    </markers>
</map>