Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
mesh
meshmap
Commits
84376389
Commit
84376389
authored
Jun 04, 2021
by
Eric - kg6wxc
Browse files
hopefully fixed spiderfy and the screwed up link lines
parent
89d1e802
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/map_functions.inc
View file @
84376389
...
...
@@ -1157,10 +1157,9 @@ function create_MapImage()
//SPIDERFY
var oms = new Spiderfy(map);
oms.disable();
map.on('zoomend', function(e) {
currZoom = e.target._zoom;
if(currZoom >=
12
) {
if(currZoom >=
0
) {
oms.enable();
document.getElementById('spiderfyActive').style.visibility = 'visible';
oms.addListener('activate', function(markers) {
...
...
@@ -1168,7 +1167,8 @@ function create_MapImage()
markers[i].closePopup();
}
});
}else {
}
if(currZoom >= 12) {
oms.disable();
document.getElementById('spiderfyActive').style.visibility = 'hidden';
oms.removeListener('activate', function(markers) {
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment