-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
162 lines (130 loc) · 33.9 KB
/
map.html
File metadata and controls
162 lines (130 loc) · 33.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_9c7bcafa42636a4d568e7ac5b07382a4 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>
.foliumtooltip {
}
.foliumtooltip table{
margin: auto;
}
.foliumtooltip tr{
text-align: left;
}
.foliumtooltip th{
padding: 2px; padding-right: 8px;
}
</style>
</head>
<body>
<div class="folium-map" id="map_9c7bcafa42636a4d568e7ac5b07382a4" ></div>
</body>
<script>
var map_9c7bcafa42636a4d568e7ac5b07382a4 = L.map(
"map_9c7bcafa42636a4d568e7ac5b07382a4",
{
center: [-1.8747615, -59.25],
crs: L.CRS.EPSG3857,
zoom: 5,
zoomControl: true,
preferCanvas: false,
}
);
L.control.scale().addTo(map_9c7bcafa42636a4d568e7ac5b07382a4);
var tile_layer_4386041ac0368cf9c73669fa0ce9d308 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_9c7bcafa42636a4d568e7ac5b07382a4);
function geo_json_20b504df5bc2fb935c5bdd98ac4ce844_styler(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 1, "weight": 2};
}
}
function geo_json_20b504df5bc2fb935c5bdd98ac4ce844_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_20b504df5bc2fb935c5bdd98ac4ce844_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3};
let style = geo_json_20b504df5bc2fb935c5bdd98ac4ce844_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_20b504df5bc2fb935c5bdd98ac4ce844_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_20b504df5bc2fb935c5bdd98ac4ce844.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_20b504df5bc2fb935c5bdd98ac4ce844_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_20b504df5bc2fb935c5bdd98ac4ce844 = L.geoJson(null, {
onEachFeature: geo_json_20b504df5bc2fb935c5bdd98ac4ce844_onEachFeature,
style: geo_json_20b504df5bc2fb935c5bdd98ac4ce844_styler,
pointToLayer: geo_json_20b504df5bc2fb935c5bdd98ac4ce844_pointToLayer
});
function geo_json_20b504df5bc2fb935c5bdd98ac4ce844_add (data) {
geo_json_20b504df5bc2fb935c5bdd98ac4ce844
.addData(data)
.addTo(map_9c7bcafa42636a4d568e7ac5b07382a4);
}
geo_json_20b504df5bc2fb935c5bdd98ac4ce844_add({"bbox": [-76.0, -14.301823, -42.5, 10.5523], "features": [{"bbox": [-55.463912, -14.163292, -55.463912, -14.163292], "geometry": {"coordinates": [-55.463912, -14.163292], "type": "Point"}, "id": "0", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "bak", "Glottocode": "", "ID": "wbak", "ISO": "", "Latitude": "-14.163292", "Longitude": "-55.463912", "Name": "Western Bakairi", "Shorthand": "wbakairi"}, "type": "Feature"}, {"bbox": [-54.625822, -14.301823, -54.625822, -14.301823], "geometry": {"coordinates": [-54.625822, -14.301823], "type": "Point"}, "id": "1", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "bak", "Glottocode": "", "ID": "ebak", "ISO": "", "Latitude": "-14.301823", "Longitude": "-54.625822", "Name": "Eastern Bakairi", "Shorthand": "ebakairi"}, "type": "Feature"}, {"bbox": [-60.862, 6.16277, -60.862, 6.16277], "geometry": {"coordinates": [-60.862, 6.16277], "type": "Point"}, "id": "2", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "kap", "Glottocode": "inga1250", "ID": "ing", "ISO": "", "Latitude": "6.16277", "Longitude": "-60.862", "Name": "Ingarik\u00f3", "Shorthand": "ingariko"}, "type": "Feature"}, {"bbox": [-60.86, 6.16, -60.86, 6.16], "geometry": {"coordinates": [-60.86, 6.16], "type": "Point"}, "id": "3", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "kap", "Glottocode": "akaw1239", "ID": "aka", "ISO": "", "Latitude": "6.16", "Longitude": "-60.86", "Name": "Akawaio", "Shorthand": "akawaio"}, "type": "Feature"}, {"bbox": [-59.58, 4.76, -59.58, 4.76], "geometry": {"coordinates": [-59.58, 4.76], "type": "Point"}, "id": "4", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "kap", "Glottocode": "pata1262", "ID": "pat", "ISO": "", "Latitude": "4.76", "Longitude": "-59.58", "Name": "Patamona", "Shorthand": "patamona"}, "type": "Feature"}, {"bbox": [-64.317835, 9.084793, -64.317835, 9.084793], "geometry": {"coordinates": [-64.317835, 9.084793], "type": "Point"}, "id": "5", "properties": {"Alive": "yes", "Alternative_Names": "Venezuelan Carib", "Comment": "", "Dialect_Of": "kar", "Glottocode": "taba1267", "ID": "tab", "ISO": "", "Latitude": "9.084793", "Longitude": "-64.317835", "Name": "Tabajari", "Shorthand": "tabajari"}, "type": "Feature"}, {"bbox": [-60.239822, 7.059752, -60.239822, 7.059752], "geometry": {"coordinates": [-60.239822, 7.059752], "type": "Point"}, "id": "6", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "kar", "Glottocode": "", "ID": "gkar", "ISO": "", "Latitude": "7.059752", "Longitude": "-60.239822", "Name": "Guianese Carib", "Shorthand": "gkar"}, "type": "Feature"}, {"bbox": [-56.353558, 5.341971, -56.353558, 5.341971], "geometry": {"coordinates": [-56.353558, 5.341971], "type": "Point"}, "id": "7", "properties": {"Alive": "yes", "Alternative_Names": "Western Surinamese Carib; Murato", "Comment": "", "Dialect_Of": "kar", "Glottocode": "mura1272", "ID": "aty", "ISO": "", "Latitude": "5.341971", "Longitude": "-56.353558", "Name": "Aretyry", "Shorthand": "aretyry"}, "type": "Feature"}, {"bbox": [-54.014828, 5.707015, -54.014828, 5.707015], "geometry": {"coordinates": [-54.014828, 5.707015], "type": "Point"}, "id": "8", "properties": {"Alive": "yes", "Alternative_Names": "Eastern Surinamese Carib", "Comment": "", "Dialect_Of": "kar", "Glottocode": "tyre1237", "ID": "tyr", "ISO": "", "Latitude": "5.707015", "Longitude": "-54.014828", "Name": "Tyrewuju", "Shorthand": "tyrewuju"}, "type": "Feature"}, {"bbox": [-57.92, 3.01, -57.92, 3.01], "geometry": {"coordinates": [-57.92, 3.01], "type": "Point"}, "id": "9", "properties": {"Alive": "yes", "Alternative_Names": "Shikuyana; Sikiana", "Comment": "", "Dialect_Of": "kax", "Glottocode": "siki1239", "ID": "siku", "ISO": "", "Latitude": "3.01", "Longitude": "-57.92", "Name": "Sikiana", "Shorthand": "sikiana"}, "type": "Feature"}, {"bbox": [-62.71231, 5.6014065, -62.71231, 5.6014065], "geometry": {"coordinates": [-62.71231, 5.6014065], "type": "Point"}, "id": "12", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "pem", "Glottocode": "cama1252", "ID": "kam", "ISO": "", "Latitude": "5.6014065", "Longitude": "-62.71231", "Name": "Kamarakoto", "Shorthand": "kamara"}, "type": "Feature"}, {"bbox": [-62.0, 4.97031, -62.0, 4.97031], "geometry": {"coordinates": [-62.0, 4.97031], "type": "Point"}, "id": "13", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "pem", "Glottocode": "taul1252", "ID": "tau", "ISO": "", "Latitude": "4.97031", "Longitude": "-62", "Name": "Taulipang", "Shorthand": "tauli"}, "type": "Feature"}, {"bbox": [-61.4033, 5.0, -61.4033, 5.0], "geometry": {"coordinates": [-61.4033, 5.0], "type": "Point"}, "id": "14", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "pem", "Glottocode": "arec1238", "ID": "are", "ISO": "", "Latitude": "5", "Longitude": "-61.4033", "Name": "Arekuna", "Shorthand": "arekuna"}, "type": "Feature"}, {"bbox": [-53.294949, -12.103217, -53.294949, -12.103217], "geometry": {"coordinates": [-53.294949, -12.103217], "type": "Point"}, "id": "15", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "uxc", "Glottocode": "nahu1343", "ID": "nah", "ISO": "", "Latitude": "-12.103217", "Longitude": "-53.294949", "Name": "Nahukwa", "Shorthand": "nahukwa"}, "type": "Feature"}, {"bbox": [-53.209209, -12.351506, -53.209209, -12.351506], "geometry": {"coordinates": [-53.209209, -12.351506], "type": "Point"}, "id": "16", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "uxc", "Glottocode": "", "ID": "kui", "ISO": "", "Latitude": "-12.351506", "Longitude": "-53.209209", "Name": "Kuikuro", "Shorthand": "kuikuro"}, "type": "Feature"}, {"bbox": [-53.186218, -12.23117, -53.186218, -12.23117], "geometry": {"coordinates": [-53.186218, -12.23117], "type": "Point"}, "id": "17", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "uxc", "Glottocode": "nucl1657", "ID": "mat", "ISO": "", "Latitude": "-12.23117", "Longitude": "-53.186218", "Name": "Matipu", "Shorthand": "matipu"}, "type": "Feature"}, {"bbox": [-52.923844, -12.598618, -52.923844, -12.598618], "geometry": {"coordinates": [-52.923844, -12.598618], "type": "Point"}, "id": "18", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "uxc", "Glottocode": "", "ID": "kal", "ISO": "", "Latitude": "-12.598618", "Longitude": "-52.923844", "Name": "Kalapalo", "Shorthand": "kalapalo"}, "type": "Feature"}, {"bbox": [-73.0557, 9.67534, -73.0557, 9.67534], "geometry": {"coordinates": [-73.0557, 9.67534], "type": "Point"}, "id": "19", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "yukp1241", "ID": "yuk", "ISO": "yup", "Latitude": "9.67534", "Longitude": "-73.0557", "Name": "Yukpa", "Shorthand": "yukpa"}, "type": "Feature"}, {"bbox": [-72.7101, 10.5523, -72.7101, 10.5523], "geometry": {"coordinates": [-72.7101, 10.5523], "type": "Point"}, "id": "20", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "japr1238", "ID": "jap", "ISO": "jru", "Latitude": "10.5523", "Longitude": "-72.7101", "Name": "Japreria", "Shorthand": "japreria"}, "type": "Feature"}, {"bbox": [-72.0664, 1.21894, -72.0664, 1.21894], "geometry": {"coordinates": [-72.0664, 1.21894], "type": "Point"}, "id": "21", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "cari1279", "ID": "car", "ISO": "cbd", "Latitude": "1.21894", "Longitude": "-72.0664", "Name": "Karijona", "Shorthand": "carijo"}, "type": "Feature"}, {"bbox": [-67.2581, 5.96952, -67.2581, 5.96952], "geometry": {"coordinates": [-67.2581, 5.96952], "type": "Point"}, "id": "22", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "mapo1246", "ID": "map", "ISO": "mcg", "Latitude": "5.96952", "Longitude": "-67.2581", "Name": "Mapoyo", "Shorthand": "mapoyo"}, "type": "Feature"}, {"bbox": [-66.276, 5.32692, -66.276, 5.32692], "geometry": {"coordinates": [-66.276, 5.32692], "type": "Point"}, "id": "23", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "yaba1248", "ID": "yab", "ISO": "yar", "Latitude": "5.32692", "Longitude": "-66.276", "Name": "Yawarana", "Shorthand": "yawarana"}, "type": "Feature"}, {"bbox": [-65.8483, 6.95035, -65.8483, 6.95035], "geometry": {"coordinates": [-65.8483, 6.95035], "type": "Point"}, "id": "24", "properties": {"Alive": "yes", "Alternative_Names": "E\u0027\u00f1apa (Woromaipu)", "Comment": "", "Dialect_Of": "", "Glottocode": "enap1235", "ID": "pan", "ISO": "pbh", "Latitude": "6.95035", "Longitude": "-65.8483", "Name": "Panare", "Shorthand": "panare"}, "type": "Feature"}, {"bbox": [-61.4033, 4.97031, -61.4033, 4.97031], "geometry": {"coordinates": [-61.4033, 4.97031], "type": "Point"}, "id": "26", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "pemo1248", "ID": "pem", "ISO": "aoc", "Latitude": "4.97031", "Longitude": "-61.4033", "Name": "Pem\u00f3n", "Shorthand": "pemon"}, "type": "Feature"}, {"bbox": [-60.862, 6.16277, -60.862, 6.16277], "geometry": {"coordinates": [-60.862, 6.16277], "type": "Point"}, "id": "27", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "kapo1251", "ID": "kap", "ISO": "ake; pbc", "Latitude": "6.16277", "Longitude": "-60.862", "Name": "Kapong", "Shorthand": "kapon"}, "type": "Feature"}, {"bbox": [-60.4259, -0.61832, -60.4259, -0.61832], "geometry": {"coordinates": [-60.4259, -0.61832], "type": "Point"}, "id": "28", "properties": {"Alive": "yes", "Alternative_Names": "yawaperi; crichana?", "Comment": "", "Dialect_Of": "", "Glottocode": "waim1253", "ID": "wmr", "ISO": "atr", "Latitude": "-0.61832", "Longitude": "-60.4259", "Name": "Waimiri-Atroari", "Shorthand": "waimiri"}, "type": "Feature"}, {"bbox": [-60.2209, 4.31861, -60.2209, 4.31861], "geometry": {"coordinates": [-60.2209, 4.31861], "type": "Point"}, "id": "29", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "macu1259", "ID": "mac", "ISO": "mbc", "Latitude": "4.31861", "Longitude": "-60.2209", "Name": "Macushi", "Shorthand": "macushi"}, "type": "Feature"}, {"bbox": [-59.1417, 1.50881, -59.1417, 1.50881], "geometry": {"coordinates": [-59.1417, 1.50881], "type": "Point"}, "id": "30", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "waiw1244", "ID": "wai", "ISO": "waw", "Latitude": "1.50881", "Longitude": "-59.1417", "Name": "Waiwai", "Shorthand": "waiwai"}, "type": "Feature"}, {"bbox": [-58.80153, -0.16265, -58.80153, -0.16265], "geometry": {"coordinates": [-58.80153, -0.16265], "type": "Point"}, "id": "31", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "hixk1239", "ID": "hix", "ISO": "hix", "Latitude": "-0.16265", "Longitude": "-58.80153", "Name": "Hixkary\u00e1na", "Shorthand": "hixka"}, "type": "Feature"}, {"bbox": [-55.9101, 2.17138, -55.9101, 2.17138], "geometry": {"coordinates": [-55.9101, 2.17138], "type": "Point"}, "id": "32", "properties": {"Alive": "yes", "Alternative_Names": "Katxuyana", "Comment": "", "Dialect_Of": "", "Glottocode": "kaxu1237", "ID": "kax", "ISO": "kbb", "Latitude": "2.17138", "Longitude": "-55.9101", "Name": "Werikyana", "Shorthand": "kaxui"}, "type": "Feature"}, {"bbox": [-55.7599, 2.53616, -55.7599, 2.53616], "geometry": {"coordinates": [-55.7599, 2.53616], "type": "Point"}, "id": "33", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "trio1238", "ID": "tri", "ISO": "tri", "Latitude": "2.53616", "Longitude": "-55.7599", "Name": "Tiriy\u00f3", "Shorthand": "trio"}, "type": "Feature"}, {"bbox": [-55.6294, 3.19607, -55.6294, 3.19607], "geometry": {"coordinates": [-55.6294, 3.19607], "type": "Point"}, "id": "34", "properties": {"Alive": "yes", "Alternative_Names": "Wama", "Comment": "", "Dialect_Of": "", "Glottocode": "akur1238", "ID": "aku", "ISO": "ako", "Latitude": "3.19607", "Longitude": "-55.6294", "Name": "Akuriy\u00f3", "Shorthand": "akuriyo"}, "type": "Feature"}, {"bbox": [-54.7457, 1.49792, -54.7457, 1.49792], "geometry": {"coordinates": [-54.7457, 1.49792], "type": "Point"}, "id": "35", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "apal1257", "ID": "apa", "ISO": "apy", "Latitude": "1.49792", "Longitude": "-54.7457", "Name": "Apala\u00ed", "Shorthand": "apalai"}, "type": "Feature"}, {"bbox": [-54.4429, 2.77537, -54.4429, 2.77537], "geometry": {"coordinates": [-54.4429, 2.77537], "type": "Point"}, "id": "36", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "waya1269", "ID": "way", "ISO": "way", "Latitude": "2.77537", "Longitude": "-54.4429", "Name": "Wayana", "Shorthand": "wayana"}, "type": "Feature"}, {"bbox": [-53.49553, -11.37822, -53.49553, -11.37822], "geometry": {"coordinates": [-53.49553, -11.37822], "type": "Point"}, "id": "37", "properties": {"Alive": "yes", "Alternative_Names": "Txik\u00e3o", "Comment": "", "Dialect_Of": "", "Glottocode": "ikpe1245", "ID": "ikp", "ISO": "txi", "Latitude": "-11.37822", "Longitude": "-53.49553", "Name": "Ikpeng", "Shorthand": "ikpeng"}, "type": "Feature"}, {"bbox": [-53.0657, -3.71263, -53.0657, -3.71263], "geometry": {"coordinates": [-53.0657, -3.71263], "type": "Point"}, "id": "38", "properties": {"Alive": "yes", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "para1310", "ID": "ara", "ISO": "aap", "Latitude": "-3.71263", "Longitude": "-53.0657", "Name": "Arara", "Shorthand": "arara"}, "type": "Feature"}, {"bbox": [-72.0664, 1.21894, -72.0664, 1.21894], "geometry": {"coordinates": [-72.0664, 1.21894], "type": "Point"}, "id": "42", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "car", "Glottocode": "", "ID": "hian", "ISO": "", "Latitude": "1.21894", "Longitude": "-72.0664", "Name": "Hianakoto-Umawa", "Shorthand": "hiana"}, "type": "Feature"}, {"bbox": [-63.1, 9.21256, -63.1, 9.21256], "geometry": {"coordinates": [-63.1, 9.21256], "type": "Point"}, "id": "43", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "cum", "Glottocode": "chai1253", "ID": "cha", "ISO": "", "Latitude": "9.21256", "Longitude": "-63.1", "Name": "Chayma", "Shorthand": "chayma"}, "type": "Feature"}, {"bbox": [-63.02, 10.21, -63.02, 10.21], "geometry": {"coordinates": [-63.02, 10.21], "type": "Point"}, "id": "44", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "cum", "Glottocode": "cuma1240", "ID": "cgt", "ISO": "", "Latitude": "10.21", "Longitude": "-63.02", "Name": "Kumanagoto", "Shorthand": "kumanagoto"}, "type": "Feature"}, {"bbox": [-56.51, 1.75, -56.51, 1.75], "geometry": {"coordinates": [-56.51, 1.75], "type": "Point"}, "id": "46", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "tri", "Glottocode": "salu1254", "ID": "salu", "ISO": "", "Latitude": "1.75", "Longitude": "-56.51", "Name": "Salum\u00e1", "Shorthand": "saluma"}, "type": "Feature"}, {"bbox": [-54.35032, 2.7984202, -54.35032, 2.7984202], "geometry": {"coordinates": [-54.35032, 2.7984202], "type": "Point"}, "id": "47", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Girard p. 6", "Dialect_Of": "tri", "Glottocode": "", "ID": "uruk", "ISO": "", "Latitude": "2.7984202", "Longitude": "-54.35032", "Name": "Urukuena", "Shorthand": "urukue"}, "type": "Feature"}, {"bbox": [-53.40764, 3.2176412, -53.40764, 3.2176412], "geometry": {"coordinates": [-53.40764, 3.2176412], "type": "Point"}, "id": "48", "properties": {"Alive": "no", "Alternative_Names": "Triometesem", "Comment": "Girard p. 6", "Dialect_Of": "tri", "Glottocode": "", "ID": "waya", "ISO": "", "Latitude": "3.2176412", "Longitude": "-53.40764", "Name": "Wayakul\u00e9", "Shorthand": "wayakule"}, "type": "Feature"}, {"bbox": [-56.69205, 1.2913186, -56.69205, 1.2913186], "geometry": {"coordinates": [-56.69205, 1.2913186], "type": "Point"}, "id": "51", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Girard p. 6", "Dialect_Of": "wai", "Glottocode": "", "ID": "paru", "ISO": "", "Latitude": "1.2913186", "Longitude": "-56.69205", "Name": "Parukoto", "Shorthand": "parukoto"}, "type": "Feature"}, {"bbox": [-60.4259, -0.61832, -60.4259, -0.61832], "geometry": {"coordinates": [-60.4259, -0.61832], "type": "Point"}, "id": "52", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "wmr", "Glottocode": "jawa1240", "ID": "jawa", "ISO": "", "Latitude": "-0.61832", "Longitude": "-60.4259", "Name": "Jawaperi", "Shorthand": "yawaperi"}, "type": "Feature"}, {"bbox": [-73.0557, 9.67534, -73.0557, 9.67534], "geometry": {"coordinates": [-73.0557, 9.67534], "type": "Point"}, "id": "53", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "yuk", "Glottocode": "", "ID": "mcta", "ISO": "", "Latitude": "9.67534", "Longitude": "-73.0557", "Name": "Macoita", "Shorthand": "macoita"}, "type": "Feature"}, {"bbox": [-73.0557, 9.67534, -73.0557, 9.67534], "geometry": {"coordinates": [-73.0557, 9.67534], "type": "Point"}, "id": "54", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "yuk", "Glottocode": "", "ID": "maco", "ISO": "", "Latitude": "9.67534", "Longitude": "-73.0557", "Name": "Macoa", "Shorthand": "macoa"}, "type": "Feature"}, {"bbox": [-73.0557, 9.67534, -73.0557, 9.67534], "geometry": {"coordinates": [-73.0557, 9.67534], "type": "Point"}, "id": "55", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "yuk", "Glottocode": "", "ID": "chak", "ISO": "", "Latitude": "9.67534", "Longitude": "-73.0557", "Name": "Chake", "Shorthand": "chake"}, "type": "Feature"}, {"bbox": [-76.0, 9.0, -76.0, 9.0], "geometry": {"coordinates": [-76.0, 9.0], "type": "Point"}, "id": "56", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Spelling \u003cKoyama\u003e likely from Gildea 1998, originally \u003cKoyaima\u003e.", "Dialect_Of": "", "Glottocode": "", "ID": "koya", "ISO": "", "Latitude": "9", "Longitude": "-76", "Name": "Koyaima", "Shorthand": "koyaima"}, "type": "Feature"}, {"bbox": [-73.62266, 6.6993472, -73.62266, 6.6993472], "geometry": {"coordinates": [-73.62266, 6.6993472], "type": "Point"}, "id": "57", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "opon1234", "ID": "opon", "ISO": "", "Latitude": "6.6993472", "Longitude": "-73.62266", "Name": "Op\u00f3n-Carare", "Shorthand": "opon"}, "type": "Feature"}, {"bbox": [-72.08, 1.0, -72.08, 1.0], "geometry": {"coordinates": [-72.08, 1.0], "type": "Point"}, "id": "58", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Location from WALS", "Dialect_Of": "", "Glottocode": "", "ID": "guak", "ISO": "", "Latitude": "1", "Longitude": "-72.08", "Name": "Guake", "Shorthand": "guake"}, "type": "Feature"}, {"bbox": [-66.082, 5.248, -66.082, 5.248], "geometry": {"coordinates": [-66.082, 5.248], "type": "Point"}, "id": "59", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "pemo1245", "ID": "pno", "ISO": "", "Latitude": "5.248", "Longitude": "-66.082", "Name": "P\u00e9mono", "Shorthand": "pemono"}, "type": "Feature"}, {"bbox": [-66.02333, 9.9467688, -66.02333, 9.9467688], "geometry": {"coordinates": [-66.02333, 9.9467688], "type": "Point"}, "id": "60", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Girard p. 6", "Dialect_Of": "", "Glottocode": "", "ID": "piri", "ISO": "", "Latitude": "9.9467688", "Longitude": "-66.02333", "Name": "P\u00edritu", "Shorthand": "piritu"}, "type": "Feature"}, {"bbox": [-65.883, 2.765, -65.883, 2.765], "geometry": {"coordinates": [-65.883, 2.765], "type": "Point"}, "id": "61", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "tama1338", "ID": "tam", "ISO": "tmz", "Latitude": "2.765", "Longitude": "-65.883", "Name": "Tamanaku", "Shorthand": "tamanaku"}, "type": "Feature"}, {"bbox": [-65.49599, 8.8387087, -65.49599, 8.8387087], "geometry": {"coordinates": [-65.49599, 8.8387087], "type": "Point"}, "id": "62", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Girard p. 6", "Dialect_Of": "", "Glottocode": "", "ID": "pale", "ISO": "", "Latitude": "8.8387087", "Longitude": "-65.49599", "Name": "Palenque", "Shorthand": "palenque"}, "type": "Feature"}, {"bbox": [-63.1, 9.21, -63.1, 9.21], "geometry": {"coordinates": [-63.1, 9.21], "type": "Point"}, "id": "63", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "From Girard", "Dialect_Of": "", "Glottocode": "", "ID": "avar", "ISO": "", "Latitude": "9.21", "Longitude": "-63.1", "Name": "Avarikoto", "Shorthand": "avarikoto"}, "type": "Feature"}, {"bbox": [-63.018, 10.209, -63.018, 10.209], "geometry": {"coordinates": [-63.018, 10.209], "type": "Point"}, "id": "64", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "coas1302", "ID": "cum", "ISO": "", "Latitude": "10.209", "Longitude": "-63.018", "Name": "Kuman\u00e1", "Shorthand": "kumana"}, "type": "Feature"}, {"bbox": [-62.8, -13.0, -62.8, -13.0], "geometry": {"coordinates": [-62.8, -13.0], "type": "Point"}, "id": "65", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "palm1241", "ID": "palm", "ISO": "", "Latitude": "-13", "Longitude": "-62.8", "Name": "Palmela", "Shorthand": "palmela"}, "type": "Feature"}, {"bbox": [-62.52, 1.45, -62.52, 1.45], "geometry": {"coordinates": [-62.52, 1.45], "type": "Point"}, "id": "66", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "paux1236", "ID": "pxan", "ISO": "", "Latitude": "1.45", "Longitude": "-62.52", "Name": "Pauxiana", "Shorthand": "pauxiana"}, "type": "Feature"}, {"bbox": [-62.51541, 10.102185, -62.51541, 10.102185], "geometry": {"coordinates": [-62.51541, 10.102185], "type": "Point"}, "id": "67", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "tive1236", "ID": "tive", "ISO": "", "Latitude": "10.102185", "Longitude": "-62.51541", "Name": "Tiverighotto", "Shorthand": "tiveri"}, "type": "Feature"}, {"bbox": [-61.69889, 3.4489861, -61.69889, 3.4489861], "geometry": {"coordinates": [-61.69889, 3.4489861], "type": "Point"}, "id": "68", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "", "ID": "puru", "ISO": "", "Latitude": "3.4489861", "Longitude": "-61.69889", "Name": "Purukoto", "Shorthand": "purukoto"}, "type": "Feature"}, {"bbox": [-61.58054, 3.433437, -61.58054, 3.433437], "geometry": {"coordinates": [-61.58054, 3.433437], "type": "Point"}, "id": "69", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "sapa1254", "ID": "sapa", "ISO": "", "Latitude": "3.433437", "Longitude": "-61.58054", "Name": "Sapara", "Shorthand": "sapara"}, "type": "Feature"}, {"bbox": [-61.43483, 10.171563, -61.43483, 10.171563], "geometry": {"coordinates": [-61.43483, 10.171563], "type": "Point"}, "id": "70", "properties": {"Alive": "no", "Alternative_Names": "Yebarana", "Comment": "", "Dialect_Of": "", "Glottocode": "yaoa1239", "ID": "yao", "ISO": "", "Latitude": "10.171563", "Longitude": "-61.43483", "Name": "Yao", "Shorthand": "yao"}, "type": "Feature"}, {"bbox": [-61.21079, 3.133111, -61.21079, 3.133111], "geometry": {"coordinates": [-61.21079, 3.133111], "type": "Point"}, "id": "71", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "wayu1242", "ID": "wayu", "ISO": "", "Latitude": "3.133111", "Longitude": "-61.21079", "Name": "Wayumara", "Shorthand": "wayu"}, "type": "Feature"}, {"bbox": [-61.0, -5.0, -61.0, -5.0], "geometry": {"coordinates": [-61.0, -5.0], "type": "Point"}, "id": "72", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "Western Madeira river, no data (Girard p. 2)", "Dialect_Of": "", "Glottocode": "", "ID": "juma", "ISO": "", "Latitude": "-5", "Longitude": "-61", "Name": "Juma", "Shorthand": "juma"}, "type": "Feature"}, {"bbox": [-60.48, 3.12, -60.48, 3.12], "geometry": {"coordinates": [-60.48, 3.12], "type": "Point"}, "id": "73", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "para1309", "ID": "para", "ISO": "", "Latitude": "3.12", "Longitude": "-60.48", "Name": "Paravilhana", "Shorthand": "paravi"}, "type": "Feature"}, {"bbox": [-60.4259, -0.61832, -60.4259, -0.61832], "geometry": {"coordinates": [-60.4259, -0.61832], "type": "Point"}, "id": "74", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "", "ID": "cric", "ISO": "", "Latitude": "-0.61832", "Longitude": "-60.4259", "Name": "Crichana", "Shorthand": "crichana"}, "type": "Feature"}, {"bbox": [-58.0, -2.0, -58.0, -2.0], "geometry": {"coordinates": [-58.0, -2.0], "type": "Point"}, "id": "75", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "bona1255", "ID": "bona", "ISO": "", "Latitude": "-2", "Longitude": "-58", "Name": "Bonari", "Shorthand": "bonari"}, "type": "Feature"}, {"bbox": [-55.55878, -1.690001, -55.55878, -1.690001], "geometry": {"coordinates": [-55.55878, -1.690001], "type": "Point"}, "id": "76", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "paux1235", "ID": "paux", "ISO": "", "Latitude": "-1.690001", "Longitude": "-55.55878", "Name": "Pauxi", "Shorthand": "pauxi"}, "type": "Feature"}, {"bbox": [-52.8, -11.6333, -52.8, -11.6333], "geometry": {"coordinates": [-52.8, -11.6333], "type": "Point"}, "id": "77", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "yaru1255", "ID": "yaru", "ISO": "", "Latitude": "-11.6333", "Longitude": "-52.8", "Name": "Yarum\u00e1", "Shorthand": "yaruma"}, "type": "Feature"}, {"bbox": [-52.0, -4.0, -52.0, -4.0], "geometry": {"coordinates": [-52.0, -4.0], "type": "Point"}, "id": "78", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "", "ID": "arak", "ISO": "", "Latitude": "-4", "Longitude": "-52", "Name": "Arakaju", "Shorthand": "arakaju"}, "type": "Feature"}, {"bbox": [-49.77173, -6.5, -49.77173, -6.5], "geometry": {"coordinates": [-49.77173, -6.5], "type": "Point"}, "id": "79", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "apia1247", "ID": "apia", "ISO": "", "Latitude": "-6.5", "Longitude": "-49.77173", "Name": "Apiaka-Tocantins", "Shorthand": "apiaka"}, "type": "Feature"}, {"bbox": [-42.5, -10.0, -42.5, -10.0], "geometry": {"coordinates": [-42.5, -10.0], "type": "Point"}, "id": "80", "properties": {"Alive": "no", "Alternative_Names": "", "Comment": "", "Dialect_Of": "", "Glottocode": "pime1237", "ID": "pime", "ISO": "", "Latitude": "-10", "Longitude": "-42.5", "Name": "Pimenteira", "Shorthand": "piment"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_20b504df5bc2fb935c5bdd98ac4ce844.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["ID", "Glottocode", "Shorthand", "Name", "Longitude", "Latitude", "Alive", "Alternative_Names", "Comment", "Dialect_Of", "ISO"];
let aliases = ["ID", "Glottocode", "Shorthand", "Name", "Longitude", "Latitude", "Alive", "Alternative_Names", "Comment", "Dialect_Of", "ISO"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
</script>
</html>