Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PyBusMap
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
PyBusMap
Commits
6f28fd0f
Commit
6f28fd0f
authored
8 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bower.json
+2
-1
2 additions, 1 deletion
bower.json
static/js/map.js
+7
-8
7 additions, 8 deletions
static/js/map.js
templates/map.html
+1
-0
1 addition, 0 deletions
templates/map.html
with
10 additions
and
9 deletions
bower.json
+
2
−
1
View file @
6f28fd0f
...
...
@@ -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"
}
}
This diff is collapsed.
Click to expand it.
static/js/map.js
+
7
−
8
View file @
6f28fd0f
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
templates/map.html
+
1
−
0
View file @
6f28fd0f
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment