<script src="//maps.google.com/maps/api/js?sensor=false&language=en"></script>
<script src="//cdn.jsdelivr.net/gmap3/5.0b/gmap3.min.js"></script>
<!-- Map Area -->
<div class="panel googleMaparea">
<div id="googleMap"></div>
在index.html中,我将Jakarta
作为地图位置
参考图片:
我正在使用gmap3.min
javascript api,它包含在项目文件中。
我需要将地图位置更改为其他位置。怎么实现呢? 非常感谢您的帮助。
更新:
答案 0 :(得分:2)
使用
设置Google地图和标记的中心位置 $('#test').gmap3({
map:{
options:{
center: [-33, 151],//place the latitude and longitude of map's center position
zoom: 8
}
},
marker:{
latLng: [-33, 151],// place the latitude and longitude of the marker
callback: function(){
$(this).css('border', '1px solid red');
}
}
});
<强>更新强>
在index.html
内,在</body>
<script>
$('#googleMap').gmap3({
map:{
options:{
center: [-33, 151],//place the latitude and longitude of map's center position
zoom: 8
}
},
marker:{
latLng: [-33, 151],// place the latitude and longitude of the marker
callback: function(){
$(this).css('border', '1px solid red');
}
}
});
</script>