| <!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> |
| |
| |
| <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> |
| |
| <style> |
| |
| .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;"> |
| |
| {{ map_html|safe }} |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| </body> |
| </html> |