web-dev-qa-db-fra.com

Zoom pour adapter tous les marqueurs dans Mapbox ou Leaflet

Comment définir la vue pour voir tous les marqueurs sur la carte dans Mapbox ou Dépliant ? Comme Google Maps API avec bounds?

Par exemple:

var latlngbounds = new google.maps.LatLngBounds();
for (var i = 0; i < latlng.length; i++) {
  latlngbounds.extend(latlng[i]);
}
map.fitBounds(latlngbounds);
81
AHOYAHOY
var group = new L.featureGroup([marker1, marker2, marker3]);

map.fitBounds(group.getBounds());

Voir la documentation pour plus d'informations.

202
L. Sanna

La "réponse" n'a pas fonctionné pour moi pour certaines raisons. Alors voici ce que j'ai fini par faire:

////var group = new L.featureGroup(markerArray);//getting 'getBounds() not a function error.
////map.fitBounds(group.getBounds());
var bounds = L.latLngBounds(markerArray);
map.fitBounds(bounds);//works!
16
IrfanClemson
var markerArray = [];
markerArray.Push(L.marker([51.505, -0.09]));
...
var group = L.featureGroup(markerArray).addTo(map);
map.fitBounds(group.getBounds());
15
malhal

Leaflet a également LatLngBounds qui a même une fonction d’extension, tout comme Google Maps.

http://leafletjs.com/reference.html#latlngbounds

Pour que vous puissiez simplement utiliser:

var latlngbounds = new L.latLngBounds();

Le reste est exactement le même.

13
hassassin

Pour Leaflet, j'utilise

    map.setView(markersLayer.getBounds().getCenter());
4
Yvonne Ng

Vous pouvez également localiser toutes les fonctionnalités dans un FeatureGroup ou tous les featureGroups, Voir comment cela fonctionne!

//Group1
m1=L.marker([7.11, -70.11]);
m2=L.marker([7.33, -70.33]);
m3=L.marker([7.55, -70.55]);
fg1=L.featureGroup([m1,m2,m3]);

//Group2
m4=L.marker([3.11, -75.11]);
m5=L.marker([3.33, -75.33]);
m6=L.marker([3.55, -75.55]);
fg2=L.featureGroup([m4,m5,m6]);

//BaseMap
baseLayer = L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png');
var map = L.map('map', {
  center: [3, -70],
  zoom: 4,
  layers: [baseLayer, fg1, fg2]
});

//locate group 1
function LocateOne() {
    LocateAllFeatures(map, fg1);
}

function LocateAll() {
    LocateAllFeatures(map, [fg1,fg2]);
}

//Locate the features
function LocateAllFeatures(iobMap, iobFeatureGroup) {
		if(Array.isArray(iobFeatureGroup)){			
			var obBounds = L.latLngBounds();
			for (var i = 0; i < iobFeatureGroup.length; i++) {
				obBounds.extend(iobFeatureGroup[i].getBounds());
			}
			iobMap.fitBounds(obBounds);			
		} else {
			iobMap.fitBounds(iobFeatureGroup.getBounds());
		}
}
.mymap{
  height: 300px;
  width: 100%;
}
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet"/>

<div id="map" class="mymap"></div>
<button onclick="LocateOne()">locate group 1</button>
<button onclick="LocateAll()">locate All</button>

0
Es Noguera

le meilleur moyen est d'utiliser le code suivant

var group = new L.featureGroup([marker1, marker2, marker3]);

map.fitBounds(group.getBounds());

Bonne chance

0
Kais Tounsi