爲什麼下面的gMap參數返回一個視圖,標記靠近視圖底部而不是中心?gMap爲什麼不將座標中心放在座標上?
謝謝。
<!-- Google Maps -->
<section class="google-map-container">
<div id="googlemaps" class="google-map google-map-full" style="padding-bottom:40%"></div>
<script src="//maps.google.com/maps/api/js?sensor=true"></script>
<script src="/assets/scripts/jquery.gmap.min.js"></script>
<script type="text/javascript">
jQuery('#googlemaps').gMap({
maptype: 'ROADMAP',
scrollwheel: false,
center: '44.51154, 11.28113',
zoom: 16,
markers: [
{
latitude: 44.51154,
longitude: 11.28113,
html: 'My company name<br/>Address</br>City<br/>Country',
popup: false,
}
],
});
</script>
</section>
<!-- Google Maps/End -->
編輯:用CSS樣式更新了代碼部分。
你使用的是什麼版本?我認爲你需要設置一個參數'center'(不在標記中)。 – putvande
我們正在使用版本2.1.2 – abenci
甚至沒有中心的幫助。我們添加了這一行'中心:'44.51154,11.28113','沒有成功。 – abenci