File size: 1,183 Bytes
6f10462
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>