Google Map API v3: imposta limiti e centro


303

Di recente sono passato all'API V3 di Google Maps. Sto lavorando a un semplice esempio che traccia i marker da un array, tuttavia non so come centrare e ingrandire automaticamente rispetto ai marker.

Ho cercato in rete alti e bassi, compresa la documentazione di Google, ma non ho trovato una risposta chiara. So che potrei semplicemente prendere una media delle coordinate, ma come impostare lo zoom di conseguenza?

function initialize() {
  var myOptions = {
    zoom: 10,
    center: new google.maps.LatLng(-33.9, 151.2),


    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);

  setMarkers(map, beaches);
}


var beaches = [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.423036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 121.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.450198, 151.259302, 1]
];

function setMarkers(map, locations) {

  var image = new google.maps.MarkerImage('images/beachflag.png',
      new google.maps.Size(20, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));
    var shadow = new google.maps.MarkerImage('images/beachflag_shadow.png',

      new google.maps.Size(37, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));


      var lat = map.getCenter().lat(); 
      var lng = map.getCenter().lng();      


  var shape = {
      coord: [1, 1, 1, 20, 18, 20, 18 , 1],
      type: 'poly'
  };
  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
        position: myLatLng,
        map: map,
        shadow: shadow,
        icon: image,
        shape: shape,
        title: beach[0],
        zIndex: beach[3]
    });
  }
}

Risposte:


423

Sì, puoi dichiarare il tuo nuovo oggetto limiti.

 var bounds = new google.maps.LatLngBounds();

Quindi, per ogni marcatore, estendi l'oggetto limiti:

bounds.extend(myLatLng);
map.fitBounds(bounds);

API: google.maps.LatLngBounds


42
puoi anche aggiungere questo map.setCenter (bounds.getCenter ());
Raman Ghai,

Sia la risposta che il commento di Raman mi hanno aiutato a sminuire la mia attenzione su ciò di cui avevo bisogno.
JustJohn,

@ Sam152: potresti essere interessato a una generosità di 500 rappresentanti per una domanda correlata .
Dan Dascalescu,

185

Hai tutto ordinato - vedi le ultime righe per il codice - ( bounds.extend(myLatLng); map.fitBounds(bounds);)

function initialize() {
  var myOptions = {
    zoom: 10,
    center: new google.maps.LatLng(0, 0),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(
    document.getElementById("map_canvas"),
    myOptions);
  setMarkers(map, beaches);
}

var beaches = [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.923036, 161.259052, 5],
  ['Cronulla Beach', -36.028249, 153.157507, 3],
  ['Manly Beach', -31.80010128657071, 151.38747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.159302, 1]
];

function setMarkers(map, locations) {
  var image = new google.maps.MarkerImage('images/beachflag.png',
    new google.maps.Size(20, 32),
    new google.maps.Point(0,0),
    new google.maps.Point(0, 32));
  var shadow = new google.maps.MarkerImage('images/beachflag_shadow.png',
    new google.maps.Size(37, 32),
    new google.maps.Point(0,0),
    new google.maps.Point(0, 32));
  var shape = {
    coord: [1, 1, 1, 20, 18, 20, 18 , 1],
    type: 'poly'
  };
  var bounds = new google.maps.LatLngBounds();
  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
      position: myLatLng,
      map: map,
      shadow: shadow,
      icon: image,
      shape: shape,
      title: beach[0],
      zIndex: beach[3]
    });
    bounds.extend(myLatLng);
  }
  map.fitBounds(bounds);
}

7
Grazie! I documenti 3.0 sono sorprendentemente vaghi su dove è andata questa funzionalità.
Bill

12
I documenti 3.0 sono sorprendentemente vaghi su dove sono andate MOLTE cose. :(
Scott,

5
Mi dispiace che sia nel posto sbagliato. È pensato per essere un commento per la risposta selezionata. Ma la funzione di estensione non deve essere all'interno del tuo ciclo for?
kidbrax,

1
Ciao, ottimo codice ma potrebbe essere migliorato per evitare "nessuna immagine disponibile a questo livello di zoom". perché questo codice non si occupa del livello di zoom, sicuramente mostra tutti i marker, ma personalmente preferirei vedere uno zoom più basso per evitare i messaggi "nessuna immagine ...". Qualche idea per favore?
slah,

Sono questi "bounds.extend (myLatLng); map.fitBounds (bounds);" disponibile anche per Android?
lionfly,

5

Il mio suggerimento per google maps api v3 sarebbe (non pensare che possa essere fatto in modo più efficiente):

gmap : {
    fitBounds: function(bounds, mapId)
    {
        //incoming: bounds - bounds object/array; mapid - map id if it was initialized in global variable before "var maps = [];"
        if (bounds==null) return false;
        maps[mapId].fitBounds(bounds);
    }
}

Nel risultato inserirai tutti i punti nei limiti della finestra della tua mappa.

L'esempio funziona perfettamente e puoi verificarlo liberamente qui www.zemelapis.lt


Invece di tornare falsese lo boundssono null, potresti maps[ mapId ].getBounds().
Kaiser

@localtime in realtà, il tuo sito web ha bisogno delle chiavi dell'API di Google Maps per funzionare

1

Le risposte sono perfette per regolare i confini della mappa per i marcatori ma se ti piace espandere i confini di Google Maps per forme come poligoni e cerchi, puoi utilizzare i seguenti codici:

Per i cerchi

bounds.union(circle.getBounds());

Per poligoni

polygon.getPaths().forEach(function(path, index)
{
    var points = path.getArray();
    for(var p in points) bounds.extend(points[p]);
});

Per rettangoli

bounds.union(overlay.getBounds());

Per polilinee

var path = polyline.getPath();

var slat, blat = path.getAt(0).lat();
var slng, blng = path.getAt(0).lng();

for(var i = 1; i < path.getLength(); i++)
{
    var e = path.getAt(i);
    slat = ((slat < e.lat()) ? slat : e.lat());
    blat = ((blat > e.lat()) ? blat : e.lat());
    slng = ((slng < e.lng()) ? slng : e.lng());
    blng = ((blng > e.lng()) ? blng : e.lng());
}

bounds.extend(new google.maps.LatLng(slat, slng));
bounds.extend(new google.maps.LatLng(blat, blng));

-1

Il metodo setCenter () è ancora applicabile all'ultima versione dell'API di Maps per Flash dove fitBounds () non esiste.


-15

Usa sotto uno,

map.setCenter (bounds.getCenter (), map.getBoundsZoomLevel (bounds));


12
Questo è per Google Maps API v2
dave1010,

Devi fornire una soluzione più ponderata. E credo che questo sia per Google Maps v2.
AllJs
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.