Correções ao modelo: - Adiciona conservação de fluxo em nós de inspeção (bug que permitia criação/destruição de unidades de fluxo, inflando cobertura para 50/50 sem atribuição real de rotas) - Remove restrição C6 simplificada que somava horas totais sem respeitar resets de inspeção, tornando 2809/2811 artificialmente ociosos Nomenclatura alinhada ao Al-Thani (2016): - InspecaoParam.lrt_h → f_max (F do artigo: batente máximo legal) - Aeronave.horas_iniciais → f0 (f_k: horas acumuladas no início) - orcamento_h() → lrt_inicial() (LRT = F_max − f0) - horas_iniciais_aleatorias() → gerar_f0_aleatorio() - carregar_horas_iniciais() → carregar_f0() - CLI --horas-iniciais → --f0 Novos arquivos: - software/gerar_ofrag.py: gera tabela de OFRAGs com prioridades 1-5 - software/visualizar_resultado.py: mapa Folium interativo de rotas - db/processed/ofrag.csv: 50 OFRAGs sintéticas (seed 42) - db/processed/mapa_rotas.html: mapa gerado da última rodada Resultado com --sintetico --aleatorio --ofrag: 50/50 missões cumpridas (antes: 30/50 sem ferry, 7/50 com bug de fluxo) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1999 lines
80 KiB
HTML
1999 lines
80 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
|
||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/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/leaflet@1.9.3/dist/leaflet.css"/>
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
|
||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/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_23c9458eddeb239141eced86bfa41d7b {
|
||
position: relative;
|
||
width: 100.0%;
|
||
height: 100.0%;
|
||
left: 0.0%;
|
||
top: 0.0%;
|
||
}
|
||
.leaflet-container { font-size: 1rem; }
|
||
</style>
|
||
|
||
<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>
|
||
L_NO_TOUCH = false;
|
||
L_DISABLE_3D = false;
|
||
</script>
|
||
|
||
|
||
</head>
|
||
<body>
|
||
|
||
|
||
<div style="position:fixed;bottom:30px;left:30px;z-index:1000;background:white;
|
||
padding:12px 16px;border-radius:8px;box-shadow:2px 2px 6px rgba(0,0,0,0.3);
|
||
font-family:sans-serif;font-size:12px;">
|
||
<b>Esquadrão Arara — OAMRP v3</b><br><br>
|
||
<b>Aeronaves:</b><br>
|
||
<span style="display:inline-block;width:16px;height:4px;background:#1f77b4;margin-right:6px;vertical-align:middle;"></span>EVAM 2800<br> <span style="display:inline-block;width:16px;height:4px;background:#2ca02c;margin-right:6px;vertical-align:middle;"></span>EVAM 2803<br> <span style="display:inline-block;width:16px;height:4px;background:#d62728;margin-right:6px;vertical-align:middle;"></span>EVAM 2809<br> <span style="display:inline-block;width:16px;height:4px;background:#ff7f0e;margin-right:6px;vertical-align:middle;"></span>EVAM 2811<br>
|
||
<br><b>Prioridade (preenchimento):</b><br>
|
||
<span style="display:inline-block;width:12px;height:12px;border-radius:50%;
|
||
background:red;margin-right:6px;"></span>Prio 1 (urgente)<br>
|
||
<span style="display:inline-block;width:12px;height:12px;border-radius:50%;
|
||
background:orange;margin-right:6px;"></span>Prio 2<br>
|
||
<span style="display:inline-block;width:12px;height:12px;border-radius:50%;
|
||
background:yellow;margin-right:6px;"></span>Prio 3<br>
|
||
<span style="display:inline-block;width:12px;height:12px;border-radius:50%;
|
||
background:lightblue;margin-right:6px;"></span>Prio 4–5<br>
|
||
<br>
|
||
<span style="border-bottom:2px dashed #aaa;display:inline-block;width:20px;
|
||
margin-right:6px;"></span>Não cumprida
|
||
</div>
|
||
|
||
|
||
<div class="folium-map" id="map_23c9458eddeb239141eced86bfa41d7b" ></div>
|
||
|
||
</body>
|
||
<script>
|
||
|
||
|
||
var map_23c9458eddeb239141eced86bfa41d7b = L.map(
|
||
"map_23c9458eddeb239141eced86bfa41d7b",
|
||
{
|
||
center: [-3.5, -62.0],
|
||
crs: L.CRS.EPSG3857,
|
||
...{
|
||
"zoom": 5,
|
||
"zoomControl": true,
|
||
"preferCanvas": false,
|
||
}
|
||
|
||
}
|
||
);
|
||
|
||
|
||
|
||
|
||
|
||
var tile_layer_8bfaa06d55cea85807f561b41af3bee3 = L.tileLayer(
|
||
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
|
||
{
|
||
"minZoom": 0,
|
||
"maxZoom": 20,
|
||
"maxNativeZoom": 20,
|
||
"noWrap": false,
|
||
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e",
|
||
"subdomains": "abcd",
|
||
"detectRetina": false,
|
||
"tms": false,
|
||
"opacity": 1,
|
||
}
|
||
|
||
);
|
||
|
||
|
||
tile_layer_8bfaa06d55cea85807f561b41af3bee3.addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var feature_group_6cec6a7ae423a437f009d0d3f177999d = L.featureGroup(
|
||
{
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_ac7e326cba3b7dffcfc364155e970cb8 = L.polyline(
|
||
[[-4.25, -69.94], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_f9cb245c7188edacb86baf04cf3060d7 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_7cdac151a1bc387f11468fb2cb80f17d = $(`<div id="html_7cdac151a1bc387f11468fb2cb80f17d" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #1<br>SBTS → SBMN<br>OM: 7 | Prio: 2<br>Partida: 2025-01-05 08:52Z<br>Chegada: 2025-01-05 11:40Z<br>Duração: 2.80h</div>`)[0];
|
||
popup_f9cb245c7188edacb86baf04cf3060d7.setContent(html_7cdac151a1bc387f11468fb2cb80f17d);
|
||
|
||
|
||
|
||
poly_line_ac7e326cba3b7dffcfc364155e970cb8.bindPopup(popup_f9cb245c7188edacb86baf04cf3060d7)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_ac7e326cba3b7dffcfc364155e970cb8.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBTS→SBMN | OM 7 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_8337cbc1befd115340e92ea63879f84f = L.circleMarker(
|
||
[-4.25, -69.94],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_8337cbc1befd115340e92ea63879f84f.bindTooltip(
|
||
`<div>
|
||
SBTS | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_18b1b50542cc9766c84aeac1c3b7d825 = L.polyline(
|
||
[[-1.38, -48.48], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_77ba4202b4767c90fdbdad85c177b4e3 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_b0108e2290ed5dab2572212e5c67745c = $(`<div id="html_b0108e2290ed5dab2572212e5c67745c" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #2<br>SBBE → SBTS<br>OM: 8 | Prio: 4<br>Partida: 2025-01-05 16:11Z<br>Chegada: 2025-01-05 21:53Z<br>Duração: 5.70h</div>`)[0];
|
||
popup_77ba4202b4767c90fdbdad85c177b4e3.setContent(html_b0108e2290ed5dab2572212e5c67745c);
|
||
|
||
|
||
|
||
poly_line_18b1b50542cc9766c84aeac1c3b7d825.bindPopup(popup_77ba4202b4767c90fdbdad85c177b4e3)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_18b1b50542cc9766c84aeac1c3b7d825.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBBE→SBTS | OM 8 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_96bbaef41b5a54da0ce7854df129bde1 = L.circleMarker(
|
||
[-1.38, -48.48],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "lightblue", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_96bbaef41b5a54da0ce7854df129bde1.bindTooltip(
|
||
`<div>
|
||
SBBE | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_8fa08174298831b7f9db828ca2724224 = L.polyline(
|
||
[[-3.15, -59.99], [-8.71, -63.9]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_581ca4fc4198dbf9d7a1d94d5dc15011 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_459fd51cea6594a9e6eed18636e22784 = $(`<div id="html_459fd51cea6594a9e6eed18636e22784" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #3<br>SBMN → SBPV<br>OM: 15 | Prio: 1<br>Partida: 2025-01-12 01:42Z<br>Chegada: 2025-01-12 03:21Z<br>Duração: 1.66h</div>`)[0];
|
||
popup_581ca4fc4198dbf9d7a1d94d5dc15011.setContent(html_459fd51cea6594a9e6eed18636e22784);
|
||
|
||
|
||
|
||
poly_line_8fa08174298831b7f9db828ca2724224.bindPopup(popup_581ca4fc4198dbf9d7a1d94d5dc15011)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_8fa08174298831b7f9db828ca2724224.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBMN→SBPV | OM 15 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_7315fb489670784f7b0f58bc6634e36d = L.circleMarker(
|
||
[-3.15, -59.99],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_7315fb489670784f7b0f58bc6634e36d.bindTooltip(
|
||
`<div>
|
||
SBMN | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_e6dff0e4621c72d55740777a4e65f47f = L.polyline(
|
||
[[-3.15, -59.99], [-8.71, -63.9]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_3a8d8d89ff91a56432f8ebf8ecd59959 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_82e791bc6bf508c5ecf471465a5d0685 = $(`<div id="html_82e791bc6bf508c5ecf471465a5d0685" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #4<br>SBMN → SBPV<br>OM: 21 | Prio: 1<br>Partida: 2025-01-16 06:26Z<br>Chegada: 2025-01-16 08:12Z<br>Duração: 1.77h</div>`)[0];
|
||
popup_3a8d8d89ff91a56432f8ebf8ecd59959.setContent(html_82e791bc6bf508c5ecf471465a5d0685);
|
||
|
||
|
||
|
||
poly_line_e6dff0e4621c72d55740777a4e65f47f.bindPopup(popup_3a8d8d89ff91a56432f8ebf8ecd59959)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_e6dff0e4621c72d55740777a4e65f47f.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBMN→SBPV | OM 21 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_5f43d831a04c70423d750e2738be4859 = L.circleMarker(
|
||
[-3.15, -59.99],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_5f43d831a04c70423d750e2738be4859.bindTooltip(
|
||
`<div>
|
||
SBMN | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_a93692ac87b3d2d233abb04251248430 = L.polyline(
|
||
[[2.84, -60.69], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_f67941db0cc172b964ae5a7c288a8279 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_158ff4e8cc5078de92b4fb9dbf98b29e = $(`<div id="html_158ff4e8cc5078de92b4fb9dbf98b29e" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #5<br>SBBV → SBMN<br>OM: 37 | Prio: 3<br>Partida: 2025-01-23 20:18Z<br>Chegada: 2025-01-23 21:50Z<br>Duração: 1.54h</div>`)[0];
|
||
popup_f67941db0cc172b964ae5a7c288a8279.setContent(html_158ff4e8cc5078de92b4fb9dbf98b29e);
|
||
|
||
|
||
|
||
poly_line_a93692ac87b3d2d233abb04251248430.bindPopup(popup_f67941db0cc172b964ae5a7c288a8279)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_a93692ac87b3d2d233abb04251248430.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBBV→SBMN | OM 37 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_829420ab3a1519d8a81f84cffa6ce180 = L.circleMarker(
|
||
[2.84, -60.69],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_829420ab3a1519d8a81f84cffa6ce180.bindTooltip(
|
||
`<div>
|
||
SBBV | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_563236ce24c66a07340b287a4098e410 = L.polyline(
|
||
[[-1.38, -48.48], [-2.42, -54.79]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_ae5d096ff13274b00922f62505316f8e = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_d5f0f3b622f9e9fce4883568f1832036 = $(`<div id="html_d5f0f3b622f9e9fce4883568f1832036" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #6<br>SBBE → SBSN<br>OM: 42 | Prio: 5<br>Partida: 2025-01-25 14:54Z<br>Chegada: 2025-01-25 16:35Z<br>Duração: 1.68h</div>`)[0];
|
||
popup_ae5d096ff13274b00922f62505316f8e.setContent(html_d5f0f3b622f9e9fce4883568f1832036);
|
||
|
||
|
||
|
||
poly_line_563236ce24c66a07340b287a4098e410.bindPopup(popup_ae5d096ff13274b00922f62505316f8e)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_563236ce24c66a07340b287a4098e410.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBBE→SBSN | OM 42 | prio 5
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_a0c663706bfd7863ed9fd08fdbf8292e = L.circleMarker(
|
||
[-1.38, -48.48],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "lightgray", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_a0c663706bfd7863ed9fd08fdbf8292e.bindTooltip(
|
||
`<div>
|
||
SBBE | prio 5
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_bd70ad5de5c510cfda42707d3cbe077c = L.polyline(
|
||
[[-4.25, -69.94], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#1f77b4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
var popup_7f2a4391e764afd09243ea2feba9410d = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_17332c89f84f8acbc70df6bbb2b007bb = $(`<div id="html_17332c89f84f8acbc70df6bbb2b007bb" style="width: 100.0%; height: 100.0%;"><b>EVAM 2800</b> — Missão #7<br>SBTS → SBMN<br>OM: 45 | Prio: 4<br>Partida: 2025-01-28 01:21Z<br>Chegada: 2025-01-28 03:43Z<br>Duração: 2.36h</div>`)[0];
|
||
popup_7f2a4391e764afd09243ea2feba9410d.setContent(html_17332c89f84f8acbc70df6bbb2b007bb);
|
||
|
||
|
||
|
||
poly_line_bd70ad5de5c510cfda42707d3cbe077c.bindPopup(popup_7f2a4391e764afd09243ea2feba9410d)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_bd70ad5de5c510cfda42707d3cbe077c.bindTooltip(
|
||
`<div>
|
||
EVAM 2800 | SBTS→SBMN | OM 45 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_f18983b201d79f5aa4942e68e71cab70 = L.circleMarker(
|
||
[-4.25, -69.94],
|
||
{"bubblingMouseEvents": true, "color": "#1f77b4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "lightblue", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_6cec6a7ae423a437f009d0d3f177999d);
|
||
|
||
|
||
circle_marker_f18983b201d79f5aa4942e68e71cab70.bindTooltip(
|
||
`<div>
|
||
SBTS | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
feature_group_6cec6a7ae423a437f009d0d3f177999d.addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var feature_group_17146a38a420258af0ccdc19451ec790 = L.featureGroup(
|
||
{
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_7037b2cf83b3ab44a0c38fba53698cdc = L.polyline(
|
||
[[-2.42, -54.79], [-1.38, -48.48]],
|
||
{"bubblingMouseEvents": true, "color": "#2ca02c", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#2ca02c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_17146a38a420258af0ccdc19451ec790);
|
||
|
||
|
||
var popup_743c316ea829d2d1c1e8ae6e732f464b = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_4a091a8a71a726efc846eb053195b667 = $(`<div id="html_4a091a8a71a726efc846eb053195b667" style="width: 100.0%; height: 100.0%;"><b>EVAM 2803</b> — Missão #1<br>SBSN → SBBE<br>OM: 6 | Prio: 2<br>Partida: 2025-01-05 06:29Z<br>Chegada: 2025-01-05 08:16Z<br>Duração: 1.79h</div>`)[0];
|
||
popup_743c316ea829d2d1c1e8ae6e732f464b.setContent(html_4a091a8a71a726efc846eb053195b667);
|
||
|
||
|
||
|
||
poly_line_7037b2cf83b3ab44a0c38fba53698cdc.bindPopup(popup_743c316ea829d2d1c1e8ae6e732f464b)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_7037b2cf83b3ab44a0c38fba53698cdc.bindTooltip(
|
||
`<div>
|
||
EVAM 2803 | SBSN→SBBE | OM 6 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_1c242c773156737fb84ae773cea03b09 = L.circleMarker(
|
||
[-2.42, -54.79],
|
||
{"bubblingMouseEvents": true, "color": "#2ca02c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_17146a38a420258af0ccdc19451ec790);
|
||
|
||
|
||
circle_marker_1c242c773156737fb84ae773cea03b09.bindTooltip(
|
||
`<div>
|
||
SBSN | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_660bfa7a9f49999aa766bce123fd5b4c = L.polyline(
|
||
[[2.84, -60.69], [-0.98, -62.92]],
|
||
{"bubblingMouseEvents": true, "color": "#2ca02c", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#2ca02c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_17146a38a420258af0ccdc19451ec790);
|
||
|
||
|
||
var popup_895463d82cc22fbe7fc7c34e90ff5ec2 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_9723c4fc525f1acd12af9bb838e4b09c = $(`<div id="html_9723c4fc525f1acd12af9bb838e4b09c" style="width: 100.0%; height: 100.0%;"><b>EVAM 2803</b> — Missão #2<br>SBBV → SWBC<br>OM: 23 | Prio: 3<br>Partida: 2025-01-17 11:36Z<br>Chegada: 2025-01-17 12:47Z<br>Duração: 1.18h</div>`)[0];
|
||
popup_895463d82cc22fbe7fc7c34e90ff5ec2.setContent(html_9723c4fc525f1acd12af9bb838e4b09c);
|
||
|
||
|
||
|
||
poly_line_660bfa7a9f49999aa766bce123fd5b4c.bindPopup(popup_895463d82cc22fbe7fc7c34e90ff5ec2)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_660bfa7a9f49999aa766bce123fd5b4c.bindTooltip(
|
||
`<div>
|
||
EVAM 2803 | SBBV→SWBC | OM 23 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_2008f1a0b155bf7ade9b0deb17783827 = L.circleMarker(
|
||
[2.84, -60.69],
|
||
{"bubblingMouseEvents": true, "color": "#2ca02c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_17146a38a420258af0ccdc19451ec790);
|
||
|
||
|
||
circle_marker_2008f1a0b155bf7ade9b0deb17783827.bindTooltip(
|
||
`<div>
|
||
SBBV | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_559681f95137bf9781cb0e133ef7aa44 = L.polyline(
|
||
[[-3.15, -59.99], [-3.38, -64.72]],
|
||
{"bubblingMouseEvents": true, "color": "#2ca02c", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#2ca02c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_17146a38a420258af0ccdc19451ec790);
|
||
|
||
|
||
var popup_2507632792b506506950578e8a403f1e = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_9e5bac63c82151173534ef6c34bff718 = $(`<div id="html_9e5bac63c82151173534ef6c34bff718" style="width: 100.0%; height: 100.0%;"><b>EVAM 2803</b> — Missão #3<br>SBMN → SBTT<br>OM: 28 | Prio: 2<br>Partida: 2025-01-19 05:45Z<br>Chegada: 2025-01-19 07:06Z<br>Duração: 1.34h</div>`)[0];
|
||
popup_2507632792b506506950578e8a403f1e.setContent(html_9e5bac63c82151173534ef6c34bff718);
|
||
|
||
|
||
|
||
poly_line_559681f95137bf9781cb0e133ef7aa44.bindPopup(popup_2507632792b506506950578e8a403f1e)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_559681f95137bf9781cb0e133ef7aa44.bindTooltip(
|
||
`<div>
|
||
EVAM 2803 | SBMN→SBTT | OM 28 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_47a15eeb10dcc11636dca6788f46b0a6 = L.circleMarker(
|
||
[-3.15, -59.99],
|
||
{"bubblingMouseEvents": true, "color": "#2ca02c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_17146a38a420258af0ccdc19451ec790);
|
||
|
||
|
||
circle_marker_47a15eeb10dcc11636dca6788f46b0a6.bindTooltip(
|
||
`<div>
|
||
SBMN | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
feature_group_17146a38a420258af0ccdc19451ec790.addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var feature_group_fafa7b9b1210c6fc9ca2017134df8350 = L.featureGroup(
|
||
{
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_fcc60d8059cea9270d2277d0d463ec06 = L.polyline(
|
||
[[-8.71, -63.9], [-0.98, -62.92]],
|
||
{"bubblingMouseEvents": true, "color": "#d62728", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#d62728", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_fafa7b9b1210c6fc9ca2017134df8350);
|
||
|
||
|
||
var popup_b65627294143c6da938e6d66d751f063 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_22ac7747cf9ab955eef898f1d26fc36e = $(`<div id="html_22ac7747cf9ab955eef898f1d26fc36e" style="width: 100.0%; height: 100.0%;"><b>EVAM 2809</b> — Missão #1<br>SBPV → SWBC<br>OM: 36 | Prio: 3<br>Partida: 2025-01-23 18:49Z<br>Chegada: 2025-01-23 21:00Z<br>Duração: 2.18h</div>`)[0];
|
||
popup_b65627294143c6da938e6d66d751f063.setContent(html_22ac7747cf9ab955eef898f1d26fc36e);
|
||
|
||
|
||
|
||
poly_line_fcc60d8059cea9270d2277d0d463ec06.bindPopup(popup_b65627294143c6da938e6d66d751f063)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_fcc60d8059cea9270d2277d0d463ec06.bindTooltip(
|
||
`<div>
|
||
EVAM 2809 | SBPV→SWBC | OM 36 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_b23de8fc7cddc219ffcd43fad4671a1c = L.circleMarker(
|
||
[-8.71, -63.9],
|
||
{"bubblingMouseEvents": true, "color": "#d62728", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_fafa7b9b1210c6fc9ca2017134df8350);
|
||
|
||
|
||
circle_marker_b23de8fc7cddc219ffcd43fad4671a1c.bindTooltip(
|
||
`<div>
|
||
SBPV | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
feature_group_fafa7b9b1210c6fc9ca2017134df8350.addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var feature_group_fe90cfcd55ab3495bb0dffc00114c85b = L.featureGroup(
|
||
{
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_7c8fa457b70956be8234a6f3d331b2a1 = L.polyline(
|
||
[[-3.15, -59.99], [-5.81, -61.28]],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#ff7f0e", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
var popup_0fce1ecc4151ead483390713e3043091 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_550bcdb4f13a0475e4d36be5ad935b45 = $(`<div id="html_550bcdb4f13a0475e4d36be5ad935b45" style="width: 100.0%; height: 100.0%;"><b>EVAM 2811</b> — Missão #1<br>SBMN → SBMY<br>OM: 1 | Prio: 1<br>Partida: 2025-01-01 02:22Z<br>Chegada: 2025-01-01 03:09Z<br>Duração: 0.77h</div>`)[0];
|
||
popup_0fce1ecc4151ead483390713e3043091.setContent(html_550bcdb4f13a0475e4d36be5ad935b45);
|
||
|
||
|
||
|
||
poly_line_7c8fa457b70956be8234a6f3d331b2a1.bindPopup(popup_0fce1ecc4151ead483390713e3043091)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_7c8fa457b70956be8234a6f3d331b2a1.bindTooltip(
|
||
`<div>
|
||
EVAM 2811 | SBMN→SBMY | OM 1 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_30bee4854deb59edebbe8ecba63f77fe = L.circleMarker(
|
||
[-3.15, -59.99],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
circle_marker_30bee4854deb59edebbe8ecba63f77fe.bindTooltip(
|
||
`<div>
|
||
SBMN | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_b4c5cf5728db51c875e872515b5f61b1 = L.polyline(
|
||
[[-3.15, -59.99], [-8.71, -63.9]],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#ff7f0e", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
var popup_9f92dc57819e4ded7bf9480a386f0337 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_29b8bcabd2590d669c4bcc30d0abfddc = $(`<div id="html_29b8bcabd2590d669c4bcc30d0abfddc" style="width: 100.0%; height: 100.0%;"><b>EVAM 2811</b> — Missão #2<br>SBMN → SBPV<br>OM: 3 | Prio: 1<br>Partida: 2025-01-04 06:06Z<br>Chegada: 2025-01-04 07:48Z<br>Duração: 1.71h</div>`)[0];
|
||
popup_9f92dc57819e4ded7bf9480a386f0337.setContent(html_29b8bcabd2590d669c4bcc30d0abfddc);
|
||
|
||
|
||
|
||
poly_line_b4c5cf5728db51c875e872515b5f61b1.bindPopup(popup_9f92dc57819e4ded7bf9480a386f0337)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_b4c5cf5728db51c875e872515b5f61b1.bindTooltip(
|
||
`<div>
|
||
EVAM 2811 | SBMN→SBPV | OM 3 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_84f734cbd3e7afbcd2b391d3ba8feea8 = L.circleMarker(
|
||
[-3.15, -59.99],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
circle_marker_84f734cbd3e7afbcd2b391d3ba8feea8.bindTooltip(
|
||
`<div>
|
||
SBMN | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_1457b1b4c6d129e0cd7c0938f4d3a231 = L.polyline(
|
||
[[-2.42, -54.79], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#ff7f0e", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
var popup_299b209a8f2331e5d75c2c751f51d326 = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_82d5ceae50e8bd073bd7aef197952794 = $(`<div id="html_82d5ceae50e8bd073bd7aef197952794" style="width: 100.0%; height: 100.0%;"><b>EVAM 2811</b> — Missão #3<br>SBSN → SBTS<br>OM: 5 | Prio: 2<br>Partida: 2025-01-05 05:32Z<br>Chegada: 2025-01-05 09:50Z<br>Duração: 4.30h</div>`)[0];
|
||
popup_299b209a8f2331e5d75c2c751f51d326.setContent(html_82d5ceae50e8bd073bd7aef197952794);
|
||
|
||
|
||
|
||
poly_line_1457b1b4c6d129e0cd7c0938f4d3a231.bindPopup(popup_299b209a8f2331e5d75c2c751f51d326)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_1457b1b4c6d129e0cd7c0938f4d3a231.bindTooltip(
|
||
`<div>
|
||
EVAM 2811 | SBSN→SBTS | OM 5 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_276b9c57cb7d7730a7787e2ccc7beeb8 = L.circleMarker(
|
||
[-2.42, -54.79],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
circle_marker_276b9c57cb7d7730a7787e2ccc7beeb8.bindTooltip(
|
||
`<div>
|
||
SBSN | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_265e340040993ef93f0e2cf00f5179c5 = L.polyline(
|
||
[[-0.98, -62.92], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#ff7f0e", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
var popup_4fa2ef7edfe092e415c005c6d099a26b = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_f61dac8f10ed470ed195d2991caa59fb = $(`<div id="html_f61dac8f10ed470ed195d2991caa59fb" style="width: 100.0%; height: 100.0%;"><b>EVAM 2811</b> — Missão #4<br>SWBC → SBMN<br>OM: 25 | Prio: 3<br>Partida: 2025-01-18 08:18Z<br>Chegada: 2025-01-18 09:11Z<br>Duração: 0.88h</div>`)[0];
|
||
popup_4fa2ef7edfe092e415c005c6d099a26b.setContent(html_f61dac8f10ed470ed195d2991caa59fb);
|
||
|
||
|
||
|
||
poly_line_265e340040993ef93f0e2cf00f5179c5.bindPopup(popup_4fa2ef7edfe092e415c005c6d099a26b)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_265e340040993ef93f0e2cf00f5179c5.bindTooltip(
|
||
`<div>
|
||
EVAM 2811 | SWBC→SBMN | OM 25 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_eb8004831b07e4c59e34a0923a270117 = L.circleMarker(
|
||
[-0.98, -62.92],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
circle_marker_eb8004831b07e4c59e34a0923a270117.bindTooltip(
|
||
`<div>
|
||
SWBC | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_d58d089d335ffc235b162972cd2d3371 = L.polyline(
|
||
[[-1.38, -48.48], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#ff7f0e", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.8, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
var popup_fb23afdc5d13c46c17580a0a1bd3b6fe = L.popup({
|
||
"maxWidth": 250,
|
||
});
|
||
|
||
|
||
|
||
var html_fd3ef6cce8bdab693aac62a901704436 = $(`<div id="html_fd3ef6cce8bdab693aac62a901704436" style="width: 100.0%; height: 100.0%;"><b>EVAM 2811</b> — Missão #5<br>SBBE → SBTS<br>OM: 41 | Prio: 1<br>Partida: 2025-01-24 12:09Z<br>Chegada: 2025-01-24 17:48Z<br>Duração: 5.65h</div>`)[0];
|
||
popup_fb23afdc5d13c46c17580a0a1bd3b6fe.setContent(html_fd3ef6cce8bdab693aac62a901704436);
|
||
|
||
|
||
|
||
poly_line_d58d089d335ffc235b162972cd2d3371.bindPopup(popup_fb23afdc5d13c46c17580a0a1bd3b6fe)
|
||
;
|
||
|
||
|
||
|
||
|
||
poly_line_d58d089d335ffc235b162972cd2d3371.bindTooltip(
|
||
`<div>
|
||
EVAM 2811 | SBBE→SBTS | OM 41 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var circle_marker_b036d192caa34efbed1bb9f862b76c17 = L.circleMarker(
|
||
[-1.38, -48.48],
|
||
{"bubblingMouseEvents": true, "color": "#ff7f0e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.9, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
|
||
).addTo(feature_group_fe90cfcd55ab3495bb0dffc00114c85b);
|
||
|
||
|
||
circle_marker_b036d192caa34efbed1bb9f862b76c17.bindTooltip(
|
||
`<div>
|
||
SBBE | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
feature_group_fe90cfcd55ab3495bb0dffc00114c85b.addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var feature_group_79adaba70b86d9ca2c65e5c71a98ef52 = L.featureGroup(
|
||
{
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_2c81358de5dfbe83317b33b10ebf253f = L.polyline(
|
||
[[-1.38, -48.48], [-3.38, -64.72]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_2c81358de5dfbe83317b33b10ebf253f.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBBE→SBTT | OM 2 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_294ed481241a385becab1fc9ff61a105 = L.polyline(
|
||
[[-3.15, -59.99], [-0.15, -67.05]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_294ed481241a385becab1fc9ff61a105.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBUA | OM 4 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_adfddae041dfc89948df9a799aa1a565 = L.polyline(
|
||
[[-5.81, -61.28], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_adfddae041dfc89948df9a799aa1a565.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMY→SBTS | OM 9 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_e3100b3d6fa6a2a7f4403151965b61fb = L.polyline(
|
||
[[-3.38, -64.72], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_e3100b3d6fa6a2a7f4403151965b61fb.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBTT→SBMN | OM 10 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_d0fb2068bdc2b4831aaddb3bdc057784 = L.polyline(
|
||
[[-1.38, -48.48], [-2.42, -54.79]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_d0fb2068bdc2b4831aaddb3bdc057784.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBBE→SBSN | OM 11 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_2cdb8cafc5c1752935b2b015267701d5 = L.polyline(
|
||
[[-0.98, -62.92], [-2.42, -54.79]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_2cdb8cafc5c1752935b2b015267701d5.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SWBC→SBSN | OM 12 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_389b5581e1fd6f8a6abb011477b9791c = L.polyline(
|
||
[[-3.15, -59.99], [2.84, -60.69]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_389b5581e1fd6f8a6abb011477b9791c.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBBV | OM 13 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_8dd7271b58e55bac8961cc07c1fe7698 = L.polyline(
|
||
[[-3.15, -59.99], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_8dd7271b58e55bac8961cc07c1fe7698.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBTS | OM 14 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_b23f0484f86570f8135fc9b7ee1386a2 = L.polyline(
|
||
[[-8.71, -63.9], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_b23f0484f86570f8135fc9b7ee1386a2.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBPV→SBMN | OM 16 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_a8592ddd627bd705ff4b821c7e5d60c0 = L.polyline(
|
||
[[-2.42, -54.79], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_a8592ddd627bd705ff4b821c7e5d60c0.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBSN→SBMN | OM 17 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_073c0878caa067fb2087aa8fff7a5517 = L.polyline(
|
||
[[-2.42, -54.79], [2.84, -60.69]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_073c0878caa067fb2087aa8fff7a5517.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBSN→SBBV | OM 18 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_6fca409b793850e8909b5f04acf609f5 = L.polyline(
|
||
[[2.84, -60.69], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_6fca409b793850e8909b5f04acf609f5.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBBV→SBMN | OM 19 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_41965cb0edb9044ca0dc4125bb12fd18 = L.polyline(
|
||
[[-0.98, -62.92], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_41965cb0edb9044ca0dc4125bb12fd18.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SWBC→SBTS | OM 20 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_3989dbb51249093220c86cd175bb275b = L.polyline(
|
||
[[-3.15, -59.99], [2.84, -60.69]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_3989dbb51249093220c86cd175bb275b.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBBV | OM 22 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_7bf7dddbbab14b0c6ceb9215e4eb7f0c = L.polyline(
|
||
[[-5.81, -61.28], [2.84, -60.69]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_7bf7dddbbab14b0c6ceb9215e4eb7f0c.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMY→SBBV | OM 24 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_524e38639cc4e7cf0d1700be8c09986e = L.polyline(
|
||
[[-0.15, -67.05], [-3.38, -64.72]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_524e38639cc4e7cf0d1700be8c09986e.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBUA→SBTT | OM 26 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_ba974b8bd3c62cf665c6c8f592bb39a5 = L.polyline(
|
||
[[-4.25, -69.94], [-5.81, -61.28]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_ba974b8bd3c62cf665c6c8f592bb39a5.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBTS→SBMY | OM 27 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_4d84058b9c2c4a36abc70ce87d8bb73c = L.polyline(
|
||
[[-3.38, -64.72], [-2.42, -54.79]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_4d84058b9c2c4a36abc70ce87d8bb73c.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBTT→SBSN | OM 29 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_5d2ce2736e5d4e9cf7e44f89531a8d86 = L.polyline(
|
||
[[-0.98, -62.92], [-2.42, -54.79]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_5d2ce2736e5d4e9cf7e44f89531a8d86.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SWBC→SBSN | OM 30 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_30ccc4727ab2ac37b53d94045f9b9db2 = L.polyline(
|
||
[[-3.15, -59.99], [-3.38, -64.72]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_30ccc4727ab2ac37b53d94045f9b9db2.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBTT | OM 31 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_21ed3f641d933acb07ae86414c66812b = L.polyline(
|
||
[[-3.15, -59.99], [-1.38, -48.48]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_21ed3f641d933acb07ae86414c66812b.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBBE | OM 32 | prio 5
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_517b6a623abf34ade64b3b23434b6226 = L.polyline(
|
||
[[2.84, -60.69], [-2.42, -54.79]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_517b6a623abf34ade64b3b23434b6226.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBBV→SBSN | OM 33 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_50407df90f9ec47eb42cf4f48df0a3b8 = L.polyline(
|
||
[[-4.25, -69.94], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_50407df90f9ec47eb42cf4f48df0a3b8.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBTS→SBMN | OM 34 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_5e3c7cefae2024d1b57bffb4f387f5f6 = L.polyline(
|
||
[[-3.38, -64.72], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_5e3c7cefae2024d1b57bffb4f387f5f6.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBTT→SBMN | OM 35 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_3ff3e056b6628d1f6002763e9b1c1cf2 = L.polyline(
|
||
[[2.84, -60.69], [-1.38, -48.48]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_3ff3e056b6628d1f6002763e9b1c1cf2.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBBV→SBBE | OM 38 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_f1edde403197b9d4639c2159d10530c3 = L.polyline(
|
||
[[-2.42, -54.79], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_f1edde403197b9d4639c2159d10530c3.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBSN→SBMN | OM 39 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_38042442d4ce75f5d019b6c54628eb3d = L.polyline(
|
||
[[-2.42, -54.79], [-3.15, -59.99]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_38042442d4ce75f5d019b6c54628eb3d.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBSN→SBMN | OM 40 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_e450720575d23633accc80894808d8fd = L.polyline(
|
||
[[-3.15, -59.99], [-8.71, -63.9]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_e450720575d23633accc80894808d8fd.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBPV | OM 43 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_959b2c5f4f8e435a49cda532371cc38c = L.polyline(
|
||
[[-1.38, -48.48], [-8.71, -63.9]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_959b2c5f4f8e435a49cda532371cc38c.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBBE→SBPV | OM 44 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_491c8c6837fccf5071db6c2f31fd6878 = L.polyline(
|
||
[[-3.15, -59.99], [-0.15, -67.05]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_491c8c6837fccf5071db6c2f31fd6878.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBUA | OM 46 | prio 3
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_93f3d30bcf8b7b828332a808c39d7d4e = L.polyline(
|
||
[[-0.98, -62.92], [-4.25, -69.94]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_93f3d30bcf8b7b828332a808c39d7d4e.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SWBC→SBTS | OM 47 | prio 2
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_80d226669e53befd6b8c6bc9dadbb9ec = L.polyline(
|
||
[[-2.42, -54.79], [-0.15, -67.05]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_80d226669e53befd6b8c6bc9dadbb9ec.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBSN→SBUA | OM 48 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_88ac262c45c79a9ffea674141ae9a453 = L.polyline(
|
||
[[-3.15, -59.99], [-5.81, -61.28]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_88ac262c45c79a9ffea674141ae9a453.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBMN→SBMY | OM 49 | prio 4
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
var poly_line_e4c8eabb2a2ad9d3939e8442d560ebd4 = L.polyline(
|
||
[[-3.38, -64.72], [-8.71, -63.9]],
|
||
{"bubblingMouseEvents": true, "color": "#aaaaaa", "dashArray": "6 4", "dashOffset": null, "fill": false, "fillColor": "#aaaaaa", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 1.5}
|
||
).addTo(feature_group_79adaba70b86d9ca2c65e5c71a98ef52);
|
||
|
||
|
||
poly_line_e4c8eabb2a2ad9d3939e8442d560ebd4.bindTooltip(
|
||
`<div>
|
||
NÃO CUMPRIDA | SBTT→SBPV | OM 50 | prio 1
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
feature_group_79adaba70b86d9ca2c65e5c71a98ef52.addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var marker_4a44f8404c8eda3153b9b5461a9e0a0f = L.marker(
|
||
[-3.15, -59.99],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_c604bea661a8131dec720ffbae2a2456 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "red",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_6bd5517b679d422dc5a711c3f686e645 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_a0f38593d2448e45a7bf3eb64be54f76 = $(`<div id="html_a0f38593d2448e45a7bf3eb64be54f76" style="width: 100.0%; height: 100.0%;"><b>SBMN</b><br>Manaus / Ponta Pelada (Hub)</div>`)[0];
|
||
popup_6bd5517b679d422dc5a711c3f686e645.setContent(html_a0f38593d2448e45a7bf3eb64be54f76);
|
||
|
||
|
||
|
||
marker_4a44f8404c8eda3153b9b5461a9e0a0f.bindPopup(popup_6bd5517b679d422dc5a711c3f686e645)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_4a44f8404c8eda3153b9b5461a9e0a0f.bindTooltip(
|
||
`<div>
|
||
<b>SBMN</b><br>Manaus / Ponta Pelada (Hub)
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_4a44f8404c8eda3153b9b5461a9e0a0f.setIcon(icon_c604bea661a8131dec720ffbae2a2456);
|
||
|
||
|
||
var marker_d9709d5f8018d05a1ae07a8c8cfad942 = L.marker(
|
||
[-1.38, -48.48],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_388f4d4e9051d18071548b9ac34d6b75 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_46aa7b1b0df194b010b2bf686607742b = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_f1b39b758b5bf52cb53c049754155e83 = $(`<div id="html_f1b39b758b5bf52cb53c049754155e83" style="width: 100.0%; height: 100.0%;"><b>SBBE</b><br>Belém</div>`)[0];
|
||
popup_46aa7b1b0df194b010b2bf686607742b.setContent(html_f1b39b758b5bf52cb53c049754155e83);
|
||
|
||
|
||
|
||
marker_d9709d5f8018d05a1ae07a8c8cfad942.bindPopup(popup_46aa7b1b0df194b010b2bf686607742b)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_d9709d5f8018d05a1ae07a8c8cfad942.bindTooltip(
|
||
`<div>
|
||
<b>SBBE</b><br>Belém
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_d9709d5f8018d05a1ae07a8c8cfad942.setIcon(icon_388f4d4e9051d18071548b9ac34d6b75);
|
||
|
||
|
||
var marker_1e798ec58426d2ad290109dd70ad8b67 = L.marker(
|
||
[2.84, -60.69],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_2b0eed7f108d781c39be3b9a338053c6 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_2ce7060e4fb23b4e58a8c2a3d61fd215 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_06179aa44af6a42ff9da40af2eeb6a9b = $(`<div id="html_06179aa44af6a42ff9da40af2eeb6a9b" style="width: 100.0%; height: 100.0%;"><b>SBBV</b><br>Boa Vista</div>`)[0];
|
||
popup_2ce7060e4fb23b4e58a8c2a3d61fd215.setContent(html_06179aa44af6a42ff9da40af2eeb6a9b);
|
||
|
||
|
||
|
||
marker_1e798ec58426d2ad290109dd70ad8b67.bindPopup(popup_2ce7060e4fb23b4e58a8c2a3d61fd215)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_1e798ec58426d2ad290109dd70ad8b67.bindTooltip(
|
||
`<div>
|
||
<b>SBBV</b><br>Boa Vista
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_1e798ec58426d2ad290109dd70ad8b67.setIcon(icon_2b0eed7f108d781c39be3b9a338053c6);
|
||
|
||
|
||
var marker_49d8de05fdf736101ccb2741e9d6b159 = L.marker(
|
||
[-2.42, -54.79],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_ffdfaf341cb861939468c16c12073fe4 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_18018eab469a0a82545056b068d2bf69 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_94e1a35ad1635715828d8a9d8f2478cc = $(`<div id="html_94e1a35ad1635715828d8a9d8f2478cc" style="width: 100.0%; height: 100.0%;"><b>SBSN</b><br>Santarém</div>`)[0];
|
||
popup_18018eab469a0a82545056b068d2bf69.setContent(html_94e1a35ad1635715828d8a9d8f2478cc);
|
||
|
||
|
||
|
||
marker_49d8de05fdf736101ccb2741e9d6b159.bindPopup(popup_18018eab469a0a82545056b068d2bf69)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_49d8de05fdf736101ccb2741e9d6b159.bindTooltip(
|
||
`<div>
|
||
<b>SBSN</b><br>Santarém
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_49d8de05fdf736101ccb2741e9d6b159.setIcon(icon_ffdfaf341cb861939468c16c12073fe4);
|
||
|
||
|
||
var marker_91f0796da7266e390c4ab7e8702e073d = L.marker(
|
||
[-8.71, -63.9],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_2150a9e74139ceeeaa8c57c867fa712a = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_e76844d43753f9bf4e92e0c504999f86 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_24ba05f069bc246696f647fa90702845 = $(`<div id="html_24ba05f069bc246696f647fa90702845" style="width: 100.0%; height: 100.0%;"><b>SBPV</b><br>Porto Velho</div>`)[0];
|
||
popup_e76844d43753f9bf4e92e0c504999f86.setContent(html_24ba05f069bc246696f647fa90702845);
|
||
|
||
|
||
|
||
marker_91f0796da7266e390c4ab7e8702e073d.bindPopup(popup_e76844d43753f9bf4e92e0c504999f86)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_91f0796da7266e390c4ab7e8702e073d.bindTooltip(
|
||
`<div>
|
||
<b>SBPV</b><br>Porto Velho
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_91f0796da7266e390c4ab7e8702e073d.setIcon(icon_2150a9e74139ceeeaa8c57c867fa712a);
|
||
|
||
|
||
var marker_16f50eadb81114f75ad46d1d3c6d4b0a = L.marker(
|
||
[-4.25, -69.94],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_ddd717f418a7713c9efd97f713e6de1c = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_5efedb7d4b65ffaa62969eaf6c4ad5d9 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_d48639410dc9a85053ab8ead017554c3 = $(`<div id="html_d48639410dc9a85053ab8ead017554c3" style="width: 100.0%; height: 100.0%;"><b>SBTS</b><br>Tabatinga</div>`)[0];
|
||
popup_5efedb7d4b65ffaa62969eaf6c4ad5d9.setContent(html_d48639410dc9a85053ab8ead017554c3);
|
||
|
||
|
||
|
||
marker_16f50eadb81114f75ad46d1d3c6d4b0a.bindPopup(popup_5efedb7d4b65ffaa62969eaf6c4ad5d9)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_16f50eadb81114f75ad46d1d3c6d4b0a.bindTooltip(
|
||
`<div>
|
||
<b>SBTS</b><br>Tabatinga
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_16f50eadb81114f75ad46d1d3c6d4b0a.setIcon(icon_ddd717f418a7713c9efd97f713e6de1c);
|
||
|
||
|
||
var marker_1204ce869e17fa564f97373a541aa9e5 = L.marker(
|
||
[-3.38, -64.72],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_a45469e9f455531e9dff8328a5c43aef = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_42bd4e7c3be4efa28bc683ff5d6385ce = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_5fccc0ef097ea89d2c2e261816c9de6e = $(`<div id="html_5fccc0ef097ea89d2c2e261816c9de6e" style="width: 100.0%; height: 100.0%;"><b>SBTT</b><br>Tefé</div>`)[0];
|
||
popup_42bd4e7c3be4efa28bc683ff5d6385ce.setContent(html_5fccc0ef097ea89d2c2e261816c9de6e);
|
||
|
||
|
||
|
||
marker_1204ce869e17fa564f97373a541aa9e5.bindPopup(popup_42bd4e7c3be4efa28bc683ff5d6385ce)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_1204ce869e17fa564f97373a541aa9e5.bindTooltip(
|
||
`<div>
|
||
<b>SBTT</b><br>Tefé
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_1204ce869e17fa564f97373a541aa9e5.setIcon(icon_a45469e9f455531e9dff8328a5c43aef);
|
||
|
||
|
||
var marker_3bbef70abfe189e52655e1147aaf1c5c = L.marker(
|
||
[-0.15, -67.05],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_742dc2f668a8c331281be8faec88e9f9 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_47098d19eea09c38f6b3653c1b97310d = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_5442d1b8641409ab063064138d815612 = $(`<div id="html_5442d1b8641409ab063064138d815612" style="width: 100.0%; height: 100.0%;"><b>SBUA</b><br>São Gabriel da Cachoeira</div>`)[0];
|
||
popup_47098d19eea09c38f6b3653c1b97310d.setContent(html_5442d1b8641409ab063064138d815612);
|
||
|
||
|
||
|
||
marker_3bbef70abfe189e52655e1147aaf1c5c.bindPopup(popup_47098d19eea09c38f6b3653c1b97310d)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_3bbef70abfe189e52655e1147aaf1c5c.bindTooltip(
|
||
`<div>
|
||
<b>SBUA</b><br>São Gabriel da Cachoeira
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_3bbef70abfe189e52655e1147aaf1c5c.setIcon(icon_742dc2f668a8c331281be8faec88e9f9);
|
||
|
||
|
||
var marker_65a928d6773bf0521ebc112a3c42a3d5 = L.marker(
|
||
[-0.98, -62.92],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_a62e5402081736e9ba188e016cc60bc1 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_0503c578240ff23b05d1ab41a1fe7783 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_4dfa81c52431a614c3982ddcf5541f38 = $(`<div id="html_4dfa81c52431a614c3982ddcf5541f38" style="width: 100.0%; height: 100.0%;"><b>SWBC</b><br>Barcelos</div>`)[0];
|
||
popup_0503c578240ff23b05d1ab41a1fe7783.setContent(html_4dfa81c52431a614c3982ddcf5541f38);
|
||
|
||
|
||
|
||
marker_65a928d6773bf0521ebc112a3c42a3d5.bindPopup(popup_0503c578240ff23b05d1ab41a1fe7783)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_65a928d6773bf0521ebc112a3c42a3d5.bindTooltip(
|
||
`<div>
|
||
<b>SWBC</b><br>Barcelos
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_65a928d6773bf0521ebc112a3c42a3d5.setIcon(icon_a62e5402081736e9ba188e016cc60bc1);
|
||
|
||
|
||
var marker_3ade4915ad79550adca0dd82a8afd57b = L.marker(
|
||
[-5.81, -61.28],
|
||
{
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
var icon_2cd2991e0105823d2e0962f5b14b8046 = L.AwesomeMarkers.icon(
|
||
{
|
||
"markerColor": "blue",
|
||
"iconColor": "white",
|
||
"icon": "plane",
|
||
"prefix": "fa",
|
||
"extraClasses": "fa-rotate-0",
|
||
}
|
||
);
|
||
|
||
|
||
var popup_b79bea9744ca7473d047c818e667ff27 = L.popup({
|
||
"maxWidth": 200,
|
||
});
|
||
|
||
|
||
|
||
var html_8a3c1a6f066612e7aa48bb8a84a26a38 = $(`<div id="html_8a3c1a6f066612e7aa48bb8a84a26a38" style="width: 100.0%; height: 100.0%;"><b>SBMY</b><br>Manicoré</div>`)[0];
|
||
popup_b79bea9744ca7473d047c818e667ff27.setContent(html_8a3c1a6f066612e7aa48bb8a84a26a38);
|
||
|
||
|
||
|
||
marker_3ade4915ad79550adca0dd82a8afd57b.bindPopup(popup_b79bea9744ca7473d047c818e667ff27)
|
||
;
|
||
|
||
|
||
|
||
|
||
marker_3ade4915ad79550adca0dd82a8afd57b.bindTooltip(
|
||
`<div>
|
||
<b>SBMY</b><br>Manicoré
|
||
</div>`,
|
||
{
|
||
"sticky": true,
|
||
}
|
||
);
|
||
|
||
|
||
marker_3ade4915ad79550adca0dd82a8afd57b.setIcon(icon_2cd2991e0105823d2e0962f5b14b8046);
|
||
|
||
|
||
var layer_control_efe0829132f41dbe398e0110ce5f1808_layers = {
|
||
base_layers : {
|
||
"cartodbpositron" : tile_layer_8bfaa06d55cea85807f561b41af3bee3,
|
||
},
|
||
overlays : {
|
||
"EVAM 2800" : feature_group_6cec6a7ae423a437f009d0d3f177999d,
|
||
"EVAM 2803" : feature_group_17146a38a420258af0ccdc19451ec790,
|
||
"EVAM 2809" : feature_group_fafa7b9b1210c6fc9ca2017134df8350,
|
||
"EVAM 2811" : feature_group_fe90cfcd55ab3495bb0dffc00114c85b,
|
||
"N\u00e3o cumpridas" : feature_group_79adaba70b86d9ca2c65e5c71a98ef52,
|
||
},
|
||
};
|
||
let layer_control_efe0829132f41dbe398e0110ce5f1808 = L.control.layers(
|
||
layer_control_efe0829132f41dbe398e0110ce5f1808_layers.base_layers,
|
||
layer_control_efe0829132f41dbe398e0110ce5f1808_layers.overlays,
|
||
{
|
||
"position": "topright",
|
||
"collapsed": false,
|
||
"autoZIndex": true,
|
||
}
|
||
).addTo(map_23c9458eddeb239141eced86bfa41d7b);
|
||
|
||
|
||
</script>
|
||
</html> |