我正在尝试在我的 MVC 4 网页上实现一些基于位置的服务功能。我对使用 Javascript 和 MVC 完全陌生,所以请多多包涵。
这是我当前的网页:
@{
ViewBag.Title = "OnlineUsers";
}
<html>
<head>
<title>Online Users</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.4/leaflet.js"></script>
</head>
<body>
<button onclick="showMap()">Show Map</button>
<button onclick="goToLocation()">My Location</button>
<div id="locationDetails"></div>
<div id="map" style="height: 500px; width: 800px"></div>
<script type="text/javascript">
**var map = L.map('map');**
function showMap() {
var map = L.map('map');
L.tileLayer('http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{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);
map.locate({ setView: true, maxZoom: 16 });
}
</script>
</body>
</html>
脚本部分的顶部是以下代码:var map = L.map('map');
. 如果我在函数中包含此代码,则页面加载并调用该函数会创建地图。但是,如果我将此代码(或任何其他 JS 代码)放在函数之外,则页面根本不会加载。
我使用了 Chrome 的调试器,控制台显示以下错误:
Uncaught ReferenceError: L is not defined
我没有看到在任何地方定义了“L”,但是为什么从函数内部调用它会起作用?