我使用Leaflet和谷歌地图插件(Google.js),但谷歌地图图层总是在标记前面。
var map = new L.Map('map', {center: new L.LatLng(51.51, -0.11), zoom: 9});
var googleLayer = new L.Google('ROADMAP');
map.addLayer(googleLayer);
L.marker([-32.69, -62.10]).addTo(map)
.bindPopup('A pretty CSS3 popup. <br> Easily customizable.')
.openPopup();
首先加载标记,然后加载地图,隐藏标记。 如果我删除包含图块的HTML节点,我可以看到灰色背景和标记。