我正在将我的网站从谷歌地图转换为传单/openstreetmap。在该网站上,搜索结果显示为地图上的标记。结果可以有一个标记,或 10 个,或 200 个。这一切都很好。但是当结果有多个标记时,我很难让它缩放/适合所有标记。相反,它只是放大了一个(可能是因为我将 map.setView 放大到 18!)。
就我而言,是否有使用 map.setView 的替代方法?我不想在所有情况下都将缩放设置为 18。但希望缩放只适合内容。我知道关于 SO 有一些类似的问题,但它们没有帮助,因为我不知道如何用不会对缩放进行硬编码的东西替换 map.setView。这是我的整个功能:
function showLocations(ids, lats, lons, contents) {
locationIDs = ids;
infoWindows = new Array();
markers = new Array();
map = new L.Map('map_canvas');
var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var osmAttrib='Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors';
var osm = new L.TileLayer(osmUrl, {minZoom: 1, maxZoom: 19, attribution: osmAttrib});
for (i in ids) {
var infoWindow = L.popup()
.setContent(contents[i]);
map.setView(new L.LatLng(lats[i], lons[i]),18);
map.addLayer(osm);
L.marker([lats[i], lons[i]]).addTo(map)
.bindPopup(infoWindow)
.openPopup();
}
}
使用谷歌地图,我使用这个:
markers.push(marker);
bounds.extend(latlng);
if (contents.length === 1) {
map.setZoom(18);
map.setCenter(new google.maps.LatLng(lats[0], lons[0]));
} else {
map.fitBounds(bounds);
}
谢谢!