Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1443 → Rev 1444

/branches/v1.5-cisaille/widget/modules/carto/squelettes/scripts/carto.js
111,6 → 111,7
}
}
 
var pointCentreAvantAffichageInfoBulle = null;
function rafraichirCarte() {
var points = [];
var bounds = new google.maps.LatLngBounds();
127,6 → 128,7
bounds.extend(maLatLng);
google.maps.event.addListener(point, 'click', function() {
pointCentreAvantAffichageInfoBulle = map.getCenter();
pointClique = this;
infoBulle.open(map, this);
152,7 → 154,7
}
 
function deplacerCartePointClique() {
map.panTo(pointClique.position);
map.panTo(pointCentreAvantAffichageInfoBulle);
}
 
function executerMarkerClusterer(points, bounds) {