Loading
Kiribati Map Configuration
Select a country or region from the list below
- World
-
Europe
-
Countries
- Albania
- Andorra
- Austria
- Belarus
- Belgium
- Bosnia-Herzegovina
- Bulgaria
- Croatia
- Cyprus
- Czech Republic
- Denmark
- England
- Estonia
- Finland
- France
- Germany
- Greece
- Hungary
- Iceland
- Ireland
- Italy
- Italy (Regions)
- Latvia
- Liechtenstein
- Lithuania
- Luxembourg
- Macedonia
- Moldova
- Monaco
- Montenegro
- Netherlands
- Northern Ireland
- Norway
- Poland
- Portugal
- Romania
- San Marino
- Scotland
- Serbia
- Slovakia
- Slovenia
- Spain (Autonomous)
- Spain (Provinces)
- Sweden
- Switzerland
- Turkey
- United Kingdom
- Ukraine
- Vatican City
- Wales
-
North America
- Antigua
- Bahamas
- Barbados
- Cayman Island
- Cuba
- Dominica
- Dominican Republic
- Greenland
- Grenada
- Haiti
- Jamaica
- Mexico
- Puerto Rico
- St. Kitts & Nevis
- St. Lucia
- St. Vincent & The Grenadines
- Trinidad & Tobago
- Canada
- Mexico
-
USA
-
States
- USA (States)
- Alaska
- Alabama
- Arizona
- Arkansas
- California
- Colorado
- Connecticut
- Delaware
- Florida
- Georgia
- Hawaii
- Idaho
- Illinois
- Indiana
- Iowa
- Kansas
- Kentucky
- Louisiana
- Maine
- Maryland
- Massachusetts
- Michigan
- Minnesota
- Mississippi
- Missouri
- Montana
- Nebraska
- Nevada
- New Hampshire
- New Jersey
- New Mexico
- New York
- North Carolina
- North Dakota
- Ohio
- Oklahoma
- Oregon
- Pennsylvania
- Rhode Island
- South Carolina
- South Dakota
- Tennessee
- Texas
- Utah
- Vermont
- Virginia
- Washington
- West Virginia
- Wisconsin
- Wyoming
-
States
- Central America
- South America
-
Asia
- Oceania
-
Africa
-
Countries
- Algeria
- Angola
- Benin
- Botswana
- Burkina Faso
- Burundi
- Cameroon
- Cape Verde
- Central African Republic
- Chad
- Comoros
- Congo
- Cote Divoire
- Democratic Republic of the Congo
- Djibouti
- Equatorial Guinea
- Eritrea
- Ethiopia
- Gabon
- Gambia
- Ghana
- Guinea
- Guinea-Bissau
- Kenya
- Lesotho
- Liberia
- Libya
- Malawi
- Mali
- Mauritania
- Mauritius
- Morocco
- Mozambique
- Namibia
- Niger
- Nigeria
- Rwanda
- Sao Tome and Principe
- Senegal
- Sierra Leone
- Somalia
- South Africa
- Swaziland
- Tanzania
- Togo
- Tunisia
- Uganda
- Western Sahara
- Zambia
- Zimbabwe
- Madagascar
- Sudan
- Egypt
Loading
Map Name: Kiribati
JavaScript Alias: maps/kiribati
{
"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"
},
"data": [
{
"id": "KI.GI"
},
{
"id": "KI.LI"
},
{
"id": "KI.PI"
}
],
"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": "26.66",
"y": "49.06",
"label": "Tarawa"
}
]
}
}
New JSON format for map marker data.
{
"map": {
"animation": "0",
"showshadow": "0",
"showbevel": "0",
"showlabels": "0",
"showmarkerlabels": "1",
"fillcolor": "F1f1f1",
"bordercolor": "999999",
"basefont": "Verdana",
"basefontsize": "10",
"legendposition": "bottom",
"usehovercolor": "1",
"showmarkertooltip": "1"
},
"data": [
{
"id": "KI.GI"
},
{
"id": "KI.LI"
},
{
"id": "KI.PI"
}
],
"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": "26.66",
"y": "49.06",
"label": "Tarawa"
}
],
"application": [
{
"id": "TA",
"shapeid": "myCustomShape"
}
]
}
}
Old JSON format for map marker data, using separate application and definition blocks.
<map animation='0' showShadow='0' showBevel='0' showLabels='0' showMarkerLabels='1' fillColor='F1f1f1' borderColor='999999' baseFont='Verdana' baseFontSize='10' legendPosition='bottom' useHoverColor='1' showMarkerToolTip='1' >
<data>
<entity id='KI.GI' />
<entity id='KI.LI' />
<entity id='KI.PI' />
</data>
<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='26.66' y='49.06' label='Tarawa' />
</definition>
<application>
<marker id='TA' shapeId='myCustomShape' />
</application>
</markers>
</map>
Old XML format for map marker data, using separate application and definition blocks.