Zoom per adattare tutti i marker nella Mapbox o Leaflet


124

Come imposto la visualizzazione per vedere tutti gli indicatori sulla mappa in Mapbox o Leaflet ? Come l'API di Google Maps fa con bounds?

Per esempio:

var latlngbounds = new google.maps.LatLngBounds();
for (var i = 0; i < latlng.length; i++) {
  latlngbounds.extend(latlng[i]);
}
map.fitBounds(latlngbounds);

Risposte:


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

map.fitBounds(group.getBounds());

Consulta la documentazione per maggiori informazioni.


2
Il problema con questa soluzione è che a volte può tagliare un marker settentrionale, poiché il marker si estende oltre i limiti dati dalle sue coordinate.
aaronbauman

77
da @ user317946: "map.fitBounds (markers.getBounds (). pad (0.5)); ora le icone non
verranno

12
Sono contento di averlo cercato su Google prima di reinventare la ruota. Grazie
martynas

4
Nel caso in cui non sia ovvio per nessuno ... Puoi ottenere i limiti della maggior parte degli oggetti volantini. map.fitBounds (circle.getBounds ()); per esempio.
Ravendarksky

8
Puoi usare markers.getBounds().pad(<percentage>)se desideri estendere i limiti di una determinata percentuale, ma puoi anche passare l'opzione di riempimento a fitBounds per impostare il riempimento in pixel. markers.getBounds(), {padding: L.point(20, 20)})
Alex Guerrero

21

La "risposta" non ha funzionato per me per alcuni motivi. Quindi ecco cosa ho finito per fare:

////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!

Tentativo di eseguire questa operazione ma ottenere l'errore: LngLatLikeargomento deve essere specificato come un'istanza LngLat, un oggetto {lng: <lng>, lat: <lat>} o un array di [<lng>, <lat>]. Qualche idea?
ritornovoid

18
var markerArray = [];
markerArray.push(L.marker([51.505, -0.09]));
...
var group = L.featureGroup(markerArray).addTo(map);
map.fitBounds(group.getBounds());

1
Funziona senza addTo (map): map.fitBounds (L.featureGroup (markerArray) .getBounds ()); questo farà la differenza?
Lucas Steffen,

15

Leaflet ha anche LatLngBounds che ha anche una funzione di estensione, proprio come Google Maps.

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

Quindi potresti semplicemente usare:

var latlngbounds = new L.latLngBounds();

Il resto è esattamente lo stesso.


3
Grazie! Per me la soluzione, secondo la risposta sopra, era restituire 'getBounds () non è una funzione. Quindi ho cambiato il mio codice secondo il tuo suggerimento. Ce l'ho nella mia risposta.
IrfanClemson

6

Per Leaflet, sto usando

    map.setView(markersLayer.getBounds().getCenter());

Questa era l'unica soluzione che ho potuto ottenere per lavorare con un singolo marker in Chrome
Tim Styles

2

Puoi anche individuare tutte le funzionalità all'interno di un FeatureGroup o tutti i featureGroup, guarda come funziona!

//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/leaflet@1.3.1/dist/leaflet.js"></script>
<link href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" rel="stylesheet"/>

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


1

Per adattarmi solo ai marker visibili, ho questo metodo.

fitMapBounds() {
    // Get all visible Markers
    const visibleMarkers = [];
    this.map.eachLayer(function (layer) {
        if (layer instanceof L.Marker) {
            visibleMarkers.push(layer);
        }
    });

    // Ensure there's at least one visible Marker
    if (visibleMarkers.length > 0) {

        // Create bounds from first Marker then extend it with the rest
        const markersBounds = L.latLngBounds([visibleMarkers[0].getLatLng()]);
        visibleMarkers.forEach((marker) => {
            markersBounds.extend(marker.getLatLng());
        });

        // Fit the map with the visible markers bounds
        this.map.flyToBounds(markersBounds, {
            padding: L.point(36, 36), animate: true,
        });
    }
}

-2

Il modo migliore è utilizzare il codice successivo

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

map.fitBounds(group.getBounds());

2
c'è una risposta simile
AHOYAHOY
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.