我是 Django 新手,我已经在我的 Mac 上安装了 mapTiler 服务器以将其用作地图服务器。我有一个具有嵌入式 folium 地图的 django 应用程序,我想通过应用程序在本地(离线)托管我的数据:从服务器 [mapTiler 服务器接口][1] 获取信息后,我已将这部分代码放入视图.py
tilesServer = "http://localhost:3650/api/tiles/2017-07-03_illinois_chicago/{z}/{x}/{y}.png"
m = folium.Map(location=[41.85, -87.68], zoom_start=10, tiles=tilesServer,attr="<a href=\"http://www.openmaptiles.org/\" target=\"_blank\">© OpenMapTiles</a> <a href=\"http://www.openstreetmap.org/about/\" target=\"_blank\">© OpenStreetMap contributors</a>")
m.add_child(fullscreen)
然后我在我的模板中调用它{{my_map|safe}}
地图没有加载,它显示为空白!!!正如您在这张图片 [Heatmap][2] 上看到的,其中显示了热图和集群,但没有显示图块。
可以帮助或指导我吗?[1]:https ://i.stack.imgur.com/9eRWH.png [2]:https ://i.stack.imgur.com/P0Sp4.png