我下载了一个已经集成了gmap的模板。我所要做的就是调整标记,使其指向正确的位置。
我正在创建一个新网站,在联系页面上,我想添加模板上的相同gmap。
我使用相同的代码,复制到相同的文件并将它们放在各自的目录中,但我无法让地图显示在我的页面上。
在HTML文档的HEAD中,我已经包含了这段代码:
<script src="https://maps.googleapis.com/maps/api/js"></script>
在BODY中,我创建了一个像这样的SECTION标签:
<section id="map-section">
<div id="map"></div>
</section>
在关闭的BODY标签上方,我有这些Javascript:
<script src="js/jquery-1.11.0.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/jquery.gmap.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#map').gMap(
{
latitude: 50.000000,
longitude: 50.000000,
html: "My Location",
popup: true,
panControl: true,
zoomControl: true,
zoomControlOptions:
{
style: google.maps.ZoomControlStyle.SMALL
},
mapTypeControl: true,
scaleControl: true,
streetViewControl: false,
overviewMapControl: true,
scrollwheel: true,
icon:
{
image: "http://www.google.com/mapfiles/marker.png",
shadow: "http://www.google.com/mapfiles/shadow50.png",
iconsize: [20, 34],
shadowsize: [37, 34],
iconanchor: [9, 34],
shadowanchor: [19, 34]
},
zoom:15,
markers: [{
latitude: 50.000000,
longitude: 50.000000
}]
});
});
</script>
另外,在我的CSS中,我的MAP-SECTION看起来像这样:
#map-section {
bottom: 0px;
padding: 0px;
height: 250px;
width: 100%;
z-index: 0;
border: 1px solid red;
}
#map{
display: block;
height: 250px;
width: 100%;
min-width: 100%;
max-width:1350px;
margin-left:auto;
margin-right:auto;
}
如果您在CSS中注意到#map-section
,我已经在屏幕上显示了一个红色边框。它只是没有显示地图。
有人能看到我错过的东西吗?
请帮忙。
答案 0 :(得分:0)
在script标签中包含此处提到的所有js文件。 maps.google.com/maps/api/js?sensor=false, jquery.ui.map.js, jquery.ui.map.extensions.js, jquery.ui.map.overlays.js, jquery.ui.map.services.js
<div id="map_canvas" style="width:100%; height:500px;"></div>
var mapa = $('#map_canvas').gmap({'center': '-18.646245,35.815918'});
$('#map_canvas').gmap('option', 'zoom', 7);
//create the layer (all countries except Mozambique)
var world_geometry;
$('#map_canvas').gmap().bind('init', function(event, map) {
world_geometry = new google.maps.FusionTablesLayer({
query: {
select: 'geometry',
from: '1N2LBk4JHwWpOY4d9fobIn27lfnZ5MDy-NoqqRpk',
where: "ISO_2DIGIT NOT EQUAL TO 'MZ'"
},
styles: [{
polygonOptions: {
fillColor: "#333333",
fillOpacity: 0.3
}
}],
map: map,
suppressInfoWindows: true
});
});
$('#map_canvas').gmap().bind('init', function(event, map) {
$(map).click(function(event) {
$('#map_canvas').gmap('clear', 'markers');
$('#map_canvas').gmap('addMarker', {
'position': event.latLng,
'draggable': true,
'bounds': false
}, function(map, marker) {
}).dragend(function(event) {
google.maps.geometry.poly.containsLocation(event.latLng, world_geometry);
}).click(function() {
})
});
});
现场演示检查此jsfidlle“http://jsfiddle.net/Lq2p5/”