在本地服务器上使用leaflet.js 库时,我发现了这种非常奇怪的情况:
编码:
<!DOCTYPE html>
<html>
<head>
<title>map lab</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="leaflet.css" />
<script src="leaflet.js"></script>
<style type='text/css'>
#map { height: 256px; }
</style>
</head>
<body>
<div id='map'></div>
<script type='text/javascript'>
var map = new L.map('map').setView([0.0, 0.0], 14);
L.tileLayer('http://10.21.142.254/lab/map/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://cloudmade.com">CloudMade</a>'
}).addTo(map);
</script>
</body>
</html>
很好,但没有“加载”。在使用 Firebug 检查 FF 时,我发现整个 'html' 都插入到脚本标签内(第 7 行)。即整个htm 和传单代码都在里面,控制台返回(显然)一个语法错误。
从 Github 下载传单并尝试将其放在我的目录结构中的所有类型,但没有结果。
此外,使用以下方法从他们的服务器加载传单库:
<script src="http://cdn.leafletjs.com/leaflet-0.4/leaflet.js"></script>
到目前为止效果很好。
我错过了什么?