Closed. This question needs debugging details。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

去年关闭。



Improve this question




我试图在stackblitz中运行与此example类似的东西。

代码(不是我的代码,但与我要实现的代码类似)在js fiddle中运行,您可以在其中将依赖项作为来自github的url包括在内,但在stackblitz项目中尝试相同时则不起作用。

我试图像这样在index.html中包括依赖项:
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://kartena.github.io/Proj4Leaflet/lib/proj4-compressed.js"></script>
<script src="https://kartena.github.io/Proj4Leaflet/src/proj4leaflet.js"></script>
<script src="https://cdn.rawgit.com/MrMufflon/Leaflet.Coordinates/master/dist/Leaflet.Coordinates-0.1.5.min.js"></script>

我也尝试了一些动态加载代码段,但是我总是以

最佳答案

在页面<head>标签中添加脚本标签

<head>
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://kartena.github.io/Proj4Leaflet/lib/proj4-compressed.js"></script>
<script src="https://kartena.github.io/Proj4Leaflet/src/proj4leaflet.js"></script>
<script src="https://cdn.rawgit.com/MrMufflon/Leaflet.Coordinates/master/dist/Leaflet.Coordinates-0.1.5.min.js"></script>
</head>
<div id="app"></div>
<div id="map"></div>

demo

10-05 22:54
查看更多