Skip to content
Snippets Groups Projects
Commit 6f28fd0f authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Make Zoom To Vehicles go to the nearest vehicle when clicked. Fixes #8.

parent c776989d
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
"jquery": "~2.2.3",
"leaflet.markercluster": "~0.4.0",
"leaflet-marker-rotate": "https://git.xhost.io/anton/leaflet-marker-rotate.git",
"Leaflet.label": "~0.2.1"
"Leaflet.label": "~0.2.1",
"Leaflet.GeometryUtil": "makinacorpus/Leaflet.GeometryUtil#^0.4.0"
}
}
......@@ -486,15 +486,14 @@ BusMap.Map = function(opts) {
// Go to zoom level and map center where vehicles are visible.
function goToVehicles() {
if (Object.keys(that.vehicleMarkers).length == 0) return false;
var zoom = BusMap.zoomShowVehicles;
var veh_keys = Object.keys(that.vehicleMarkers);
if (veh_keys.length > 0) {
var ll = that.vehicleMarkers[veh_keys[0]].getLatLng();
} else {
var ll = that.leaflet.getCenter();
}
console.log("setView("+ll+","+zoom+")");
that.leaflet.setView(ll, zoom);
var center = that.leaflet.getCenter();
// make vehicleMarkers an array because GeometryUtil can't handle obj/dict.
var vehicles = Object.keys(that.vehicleMarkers)
.map(function(k) { return that.vehicleMarkers[k]; });
var goto_veh = L.GeometryUtil.closestLayer(that.leaflet, that.vehicleMarkers, center);
that.leaflet.setView(goto_veh.latlng, zoom);
}
init();
......
......@@ -16,6 +16,7 @@
<script src="bower/Leaflet.label/dist/leaflet.label.js"></script>
<script src="bower/leaflet.markercluster/dist/leaflet.markercluster.js"></script>
<script src="bower/leaflet-marker-rotate/leaflet.marker.rotate.js"></script>
<script src="bower/Leaflet.GeometryUtil/dist/leaflet.geometryutil.js"></script>
<script src="bower/jquery/dist/jquery.min.js"></script>
<script src="static/js/map.js"></script>
<script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment