我能够使用django-leaflet在单个页面上显示地图。在另一页中,我试图在页面中显示两个(或更多)地图,但我不知道如何操作。
用于在单个页面中显示地图:
<div class="card">
{% leaflet_map "main" callback="map_init" %}
</div>
<script type="text/javascript">
function map_init(map, options) {
// get point lat and lon
var lon = "{{ project.longitude }}";
var lat = "{{ project.latitude }}";
// zoom to point & add it to map
map.setView([lat, lon], 12);
L.marker([lat, lon]).addTo(map);
}</script>
只要需要显示一张地图,上面的作品就可以正常工作。但是,我不确定如何在上面进行修改以支持多张地图。
我从此处开始jsfiddle页(有点空白),不确定是否有帮助。
我正在尝试在以下html中填充“ img-top” div:
var locations = [
{"lat":27.988098,"lng":86.924925},
{"lat":27.679535,"lng":83.507020}
]
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="card-columns m-5">
<div class="card">
<div class="card-header">Location A </div>
<div class="img-top" id="map-1" style="height:200px"></div>
<div class="card-body">
Some information of A
</div>
</div>
<div class="card">
<div class="card-header">Location B </div>
<div class="img-top" id="map-2" style="height:200px"></div>
<div class="card-body">
Some information of B
</div>
</div>
</div>
答案 0 :(得分:0)
不是很干,但是下面的工作正常吗?
<div class="card">
{% leaflet_map "map_1" callback="map_init_1" %}
</div>
<div class="card">
{% leaflet_map "map_2" callback="map_init_2" %}
</div>
<script type="text/javascript">
function map_init(map, lat, lon) {
// zoom to point & add it to map
map.setView([lat, lon], 12);
L.marker([lat, lon]).addTo(map);
}
function map_init_1(map) {
map_init(map, "{{ project1.latitude }}", "{{ project1.longitude }}")
}
function map2_init_2(map) {
map_init(map, "{{ project2.latitude }}", "{{ project2.longitude }}")
}
</script>
在我看来,django-leaflet解决了最简单的情况。您可能需要直接使用传单在javascript中编写逻辑,以实现您要执行的操作。
您可以在呼叫{% leaflet_map ... %}
时看到django-leaflet的作用:
更新的JS小提琴:https://jsfiddle.net/cdfrn53L/
编辑:
在Django模板中具有for循环:
{% for location in locations %}
<div class="card">
{% leaflet_map location.div_id callback=location.callback %}
</div>
{% endfor %}
<script type="text/javascript">
function map_init(map, lat, lon) {
// zoom to point & add it to map
map.setView([lat, lon], 12);
L.marker([lat, lon]).addTo(map);
}
{% for location in locations %}
function {{ location.callback }}(map) {
map_init(map, "{{ location.lat }}", "{{ location.lon }}")
}
{% endfor %}
</script>
提供您的视图可建立位置列表:
locations = [
{'lat': 27.988098, 'lng': 86.924925, 'div_id': 'map-1', 'callback': 'callback_1'},
{'lat': 27.679535, 'lng': 83.507020, 'div_id': 'map-2', 'callback': 'callback_1'}
]
您可以根据位置列表索引建立div_id
和callback
值。
答案 1 :(得分:0)
这就是我能够在div中动态显示两个(或多个)地图的方式。
<script type="text/javascript">
items_json.forEach(item => {
let map = L.map(item.id + "-map").setView([item.fields.latitude, item.fields.longitude], 10);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
});
</script>
在HTML中,此<div class="img-top" id="{{id}}-map" style="height:200px"></div>
用地图填充。