【发布时间】:2014-09-20 18:33:13
【问题描述】:
我正在尝试向我的网站添加一个简单的谷歌地图,其中包括 jQuery 。 我得到的唯一错误是:
GET http://code.jquery.com/jquery.min.map 404 (Not Found)
这里是相关的代码部分,所有的插件都在头:
<!--jquery ,js scripts -->
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet"href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
<!--js scripts -->
<script src="jsCode.js"></script>
<script src ="sirJson.js"></script>
<!--gMap plugin API -->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src = "gmap.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
Javascript 代码:
$( document ).ready(function() {
var map = new GMaps({
el: '#map',
lat: 51.5073346,
lng: -0.1276831,
zoom: 12,
zoomControl : true,
zoomControlOpt: {
style : 'SMALL',
position: 'TOP_LEFT'
},
panControl : false,
});
最后是我的 html,地图的 jQuery div:
<div data-role="main" class="ui-content">
<div id="map"></div>
</div>
修正错误 - jQuery's jquery-1.10.2.min.map is triggering a 404 (Not Found)
但地图仍然没有显示在地图页面中。
JS代码:
$( document ).ready(function() {
var map = new GMaps({
el: '#map',
lat: 51.5073346,
lng: -0.1276831,
zoom: 12,
zoomControl : true,
zoomControlOpt: {
style : 'SMALL',
position: 'TOP_LEFT'
},
panControl : false,
});
map - div 元素。
【问题讨论】:
标签: javascript jquery google-maps jquery-plugins jquery-gmap3