非常感謝您的幫助。我試圖用新的mvc3剃鬚刀使用谷歌地圖api,但是當我去運行我的代碼時,除了標籤外,沒有任何東西正在顯示。但是,如果我創建一個html文件,我可以讓地圖顯示出來。我確信我會對答案的答案有多明顯,但在過去的幾天裏,我一直在研究這段代碼,但一直無法弄清楚如何讓它在VS中工作。請幫助:在MVC 3中不顯示Google Maps v3
我在_Layout.cshtml
<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>
<pre lang="aspnet">@RenderSection("Scripts", false)
<style type="text/css">
@RenderSection("Styles", false)
</style>
</head>
<body>
@RenderBody()
</body>
</html>
在我Index.cshtml:
@{
ViewBag.Title = "MVC 3 and Google Maps";
}
@section Scripts {
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
}
@section Styles {
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 80% }
}
<script type="text/javascript">
function initialize() {
//var latlng = new google.maps.LatLng(40.716948, -74.003563);
var options = { center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById
("map_canvas"), options);
}
$(function() {
initialize();
});
</script>
<h2>Hello, Google Maps</h2>
<div id="map_canvas" style="width:80%; height:80%"></div>
這一切都是我的工作,現在,希望你能及告訴我我缺少的東西。我已經查看了幾個類似的代碼,但由於某種原因在VS它不想顯示谷歌地圖,但就像我說我的顯示。謝謝你的幫助!
謝謝你的幫助,但我已經試過了,沒有運氣。 – 4everAStudent 2012-03-13 23:11:41