map / app /templates /map.html
atsuga's picture
Upload 40 files
6f10462 verified
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Peta Polygon Jawa Timur - 38 Kabupaten/Kota</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<style>
/* Override styles for full map display */
.map-container {
border: 2px solid #333;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-container iframe {
width: 100%;
height: 700px;
border: none;
}
</style>
</head>
<body>
<main>
<section id="map" class="map-section">
<div class="container" style="max-width: 100%; padding: 20px;">
<div id="mapContainer" class="map-container" style="width: 100%; height: 700px; margin-top: 20px;">
<!-- Server-side generated Folium map with vibrant colors -->
{{ map_html|safe }}
</div>
</div>
</section>
</main>
</body>
</html>