Map Name: Turkey
Javascript Alias: maps/turkey
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": "AN",
"shapeid": "myCustomShape",
"x": "241.49",
"y": "115.61",
"label": "Ankara",
"labelpos": "right"
},
{
"id": "01",
"shapeid": "newCustomShape",
"x": "116.59",
"y": "56.77",
"label": "Istanbul",
"labelpos": "top"
},
{
"id": "02",
"shapeid": "newCustomShape",
"x": "145.49",
"y": "76.38",
"label": "Kocaeli(Izmit)",
"labelpos": "right"
},
{
"id": "03",
"shapeid": "newCustomShape",
"x": "120.72",
"y": "90.83",
"label": "Germik",
"labelpos": "right"
},
{
"id": "04",
"shapeid": "newCustomShape",
"x": "113.49",
"y": "109.41",
"label": "Bursa",
"labelpos": "left"
},
{
"id": "05",
"shapeid": "newCustomShape",
"x": "77.36",
"y": "136.25",
"label": "Balikesar",
"labelpos": "left"
},
{
"id": "06",
"shapeid": "newCustomShape",
"x": "40.2",
"y": "176.51",
"label": "Izmir"
},
{
"id": "08",
"shapeid": "newCustomShape",
"x": "63.94",
"y": "163.09",
"label": "Manisa",
"labelpos": "right"
},
{
"id": "09",
"shapeid": "newCustomShape",
"x": "162.01",
"y": "259.09",
"label": "Antalya",
"labelpos": "right"
},
{
"id": "10",
"shapeid": "newCustomShape",
"x": "219.81",
"y": "207.48",
"label": "Konya"
},
{
"id": "11",
"shapeid": "newCustomShape",
"x": "170.27",
"y": "122.83",
"label": "Eskisehir",
"labelpos": "right"
},
{
"id": "12",
"shapeid": "newCustomShape",
"x": "313.75",
"y": "270.45",
"label": "Icel(Mersin)",
"labelpos": "left"
},
{
"id": "13",
"shapeid": "newCustomShape",
"x": "347.81",
"y": "256",
"label": "Adana"
},
{
"id": "14",
"shapeid": "newCustomShape",
"x": "379.81",
"y": "282.83",
"label": "Iskenderun",
"labelpos": "top"
},
{
"id": "15",
"shapeid": "newCustomShape",
"x": "437.62",
"y": "258.06",
"label": "Gaziantep",
"labelpos": "right"
},
{
"id": "17",
"shapeid": "newCustomShape",
"x": "408.72",
"y": "230.19",
"label": "Kahramanmaras",
"labelpos": "right"
},
{
"id": "18",
"shapeid": "newCustomShape",
"x": "350.91",
"y": "178.58",
"label": "Kayseri"
},
{
"id": "19",
"shapeid": "newCustomShape",
"x": "404.59",
"y": "135.22",
"label": "Sivas"
},
{
"id": "20",
"shapeid": "newCustomShape",
"x": "503.69",
"y": "71.22",
"label": "Trabzon"
},
{
"id": "21",
"shapeid": "newCustomShape",
"x": "566.65",
"y": "48.51",
"label": "Hopa"
},
{
"id": "22",
"shapeid": "newCustomShape",
"x": "565.62",
"y": "117.67",
"label": "Erzurum"
},
{
"id": "23",
"shapeid": "newCustomShape",
"x": "376.72",
"y": "54.7",
"label": "Samsun",
"labelpos": "right"
},
{
"id": "24",
"shapeid": "newCustomShape",
"x": "650.27",
"y": "181.67",
"label": "Van"
},
{
"id": "25",
"shapeid": "newCustomShape",
"x": "553.23",
"y": "203.35",
"label": "Diyarbakir",
"labelpos": "left"
},
{
"id": "26",
"shapeid": "newCustomShape",
"x": "508.85",
"y": "243.61",
"label": "Sanli Urfa",
"labelpos": "right"
}
]
}
}
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": "AN",
"x": "241.49",
"y": "115.61",
"label": "Ankara",
"labelpos": "right"
},
{
"id": "01",
"x": "116.59",
"y": "56.77",
"label": "Istanbul",
"labelpos": "top"
},
{
"id": "02",
"x": "145.49",
"y": "76.38",
"label": "Kocaeli(Izmit)",
"labelpos": "right"
},
{
"id": "03",
"x": "120.72",
"y": "90.83",
"label": "Germik",
"labelpos": "right"
},
{
"id": "04",
"x": "113.49",
"y": "109.41",
"label": "Bursa",
"labelpos": "left"
},
{
"id": "05",
"x": "77.36",
"y": "136.25",
"label": "Balikesar",
"labelpos": "left"
},
{
"id": "06",
"x": "40.2",
"y": "176.51",
"label": "Izmir"
},
{
"id": "08",
"x": "63.94",
"y": "163.09",
"label": "Manisa",
"labelpos": "right"
},
{
"id": "09",
"x": "162.01",
"y": "259.09",
"label": "Antalya",
"labelpos": "right"
},
{
"id": "10",
"x": "219.81",
"y": "207.48",
"label": "Konya"
},
{
"id": "11",
"x": "170.27",
"y": "122.83",
"label": "Eskisehir",
"labelpos": "right"
},
{
"id": "12",
"x": "313.75",
"y": "270.45",
"label": "Icel(Mersin)",
"labelpos": "left"
},
{
"id": "13",
"x": "347.81",
"y": "256",
"label": "Adana"
},
{
"id": "14",
"x": "379.81",
"y": "282.83",
"label": "Iskenderun",
"labelpos": "top"
},
{
"id": "15",
"x": "437.62",
"y": "258.06",
"label": "Gaziantep",
"labelpos": "right"
},
{
"id": "17",
"x": "408.72",
"y": "230.19",
"label": "Kahramanmaras",
"labelpos": "right"
},
{
"id": "18",
"x": "350.91",
"y": "178.58",
"label": "Kayseri"
},
{
"id": "19",
"x": "404.59",
"y": "135.22",
"label": "Sivas"
},
{
"id": "20",
"x": "503.69",
"y": "71.22",
"label": "Trabzon"
},
{
"id": "21",
"x": "566.65",
"y": "48.51",
"label": "Hopa"
},
{
"id": "22",
"x": "565.62",
"y": "117.67",
"label": "Erzurum"
},
{
"id": "23",
"x": "376.72",
"y": "54.7",
"label": "Samsun",
"labelpos": "right"
},
{
"id": "24",
"x": "650.27",
"y": "181.67",
"label": "Van"
},
{
"id": "25",
"x": "553.23",
"y": "203.35",
"label": "Diyarbakir",
"labelpos": "left"
},
{
"id": "26",
"x": "508.85",
"y": "243.61",
"label": "Sanli Urfa",
"labelpos": "right"
}
],
"application": [
{
"id": "AN",
"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": "13",
"shapeid": "newCustomShape"
},
{
"id": "14",
"shapeid": "newCustomShape"
},
{
"id": "15",
"shapeid": "newCustomShape"
},
{
"id": "17",
"shapeid": "newCustomShape"
},
{
"id": "18",
"shapeid": "newCustomShape"
},
{
"id": "19",
"shapeid": "newCustomShape"
},
{
"id": "20",
"shapeid": "newCustomShape"
},
{
"id": "21",
"shapeid": "newCustomShape"
},
{
"id": "22",
"shapeid": "newCustomShape"
},
{
"id": "23",
"shapeid": "newCustomShape"
},
{
"id": "24",
"shapeid": "newCustomShape"
},
{
"id": "25",
"shapeid": "newCustomShape"
},
{
"id": "26",
"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='AN' x='241.49' y='115.61' label='Ankara' labelPos='right' />
<marker id='01' x='116.59' y='56.77' label='Istanbul' labelPos='top' />
<marker id='02' x='145.49' y='76.38' label='Kocaeli(Izmit)' labelPos='right' />
<marker id='03' x='120.72' y='90.83' label='Germik' labelPos='right' />
<marker id='04' x='113.49' y='109.41' label='Bursa' labelPos='left' />
<marker id='05' x='77.36' y='136.25' label='Balikesar' labelPos='left' />
<marker id='06' x='40.2' y='176.51' label='Izmir' />
<marker id='08' x='63.94' y='163.09' label='Manisa' labelPos='right' />
<marker id='09' x='162.01' y='259.09' label='Antalya' labelPos='right' />
<marker id='10' x='219.81' y='207.48' label='Konya' />
<marker id='11' x='170.27' y='122.83' label='Eskisehir' labelPos='right' />
<marker id='12' x='313.75' y='270.45' label='Icel(Mersin)' labelPos='left' />
<marker id='13' x='347.81' y='256' label='Adana' />
<marker id='14' x='379.81' y='282.83' label='Iskenderun' labelPos='top'/>
<marker id='15' x='437.62' y='258.06' label='Gaziantep' labelPos='right' />
<marker id='17' x='408.72' y='230.19' label='Kahramanmaras' labelPos='right' />
<marker id='18' x='350.91' y='178.58' label='Kayseri' />
<marker id='19' x='404.59' y='135.22' label='Sivas' />
<marker id='20' x='503.69' y='71.22' label='Trabzon' />
<marker id='21' x='566.65' y='48.51' label='Hopa' />
<marker id='22' x='565.62' y='117.67' label='Erzurum' />
<marker id='23' x='376.72' y='54.7' label='Samsun' labelPos='right' />
<marker id='24' x='650.27' y='181.67' label='Van' />
<marker id='25' x='553.23' y='203.35' label='Diyarbakir' labelPos='left' />
<marker id='26' x='508.85' y='243.61' label='Sanli Urfa' labelPos='right' />
</definition>
<application>
<marker id='AN' 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='13' shapeId='newCustomShape' />
<marker id='14' shapeId='newCustomShape' />
<marker id='15' shapeId='newCustomShape' />
<marker id='17' shapeId='newCustomShape' />
<marker id='18' shapeId='newCustomShape' />
<marker id='19' shapeId='newCustomShape' />
<marker id='20' shapeId='newCustomShape' />
<marker id='21' shapeId='newCustomShape' />
<marker id='22' shapeId='newCustomShape' />
<marker id='23' shapeId='newCustomShape' />
<marker id='24' shapeId='newCustomShape' />
<marker id='25' shapeId='newCustomShape' />
<marker id='26' shapeId='newCustomShape' />
</application>
</markers>
</map>