zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "app/public/iframe_base.html" %}
 
{% block content %}
    <style type="text/css">
    #map-placeholder-header{
        display: none !important;
    }
    #map-placeholder-map{
        position: absolute; top: 0; bottom: 0; left: 0; right:0;
        margin-top: 0 !important;
        height: 100% !important;
    }
    </style>
 
    <div data-mapview
        {% for key, value in params %}
            data-{{key}}="{{value}}"
        {% endfor %}
    >
        {% include "map_placeholder.html" %}
    </div>
    {% load render_bundle from webpack_loader %}
    {% render_bundle 'MapView' attrs='async' %}
{% endblock %}