Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
3f80ef0d
Commit
3f80ef0d
authored
Dec 03, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #705 from bpezan/bettermap
better performance when adding thousands of markers to bettermap.
parents
d0f90b00
8c2816a7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/app/panels/bettermap/module.js
+6
-2
No files found.
src/app/panels/bettermap/module.js
View file @
3f80ef0d
...
@@ -213,14 +213,18 @@ function (angular, app, _, L, localRequire) {
...
@@ -213,14 +213,18 @@ function (angular, app, _, L, localRequire) {
layerGroup
.
clearLayers
();
layerGroup
.
clearLayers
();
}
}
var
markerList
=
[];
_
.
each
(
scope
.
data
,
function
(
p
)
{
_
.
each
(
scope
.
data
,
function
(
p
)
{
if
(
!
_
.
isUndefined
(
p
.
tooltip
)
&&
p
.
tooltip
!==
''
)
{
if
(
!
_
.
isUndefined
(
p
.
tooltip
)
&&
p
.
tooltip
!==
''
)
{
layerGroup
.
addLayer
(
L
.
marker
(
p
.
coordinates
).
bindLabel
(
p
.
tooltip
));
markerList
.
push
(
L
.
marker
(
p
.
coordinates
).
bindLabel
(
p
.
tooltip
));
}
else
{
}
else
{
layerGroup
.
addLayer
(
L
.
marker
(
p
.
coordinates
));
markerList
.
push
(
L
.
marker
(
p
.
coordinates
));
}
}
});
});
layerGroup
.
addLayers
(
markerList
);
layerGroup
.
addTo
(
map
);
layerGroup
.
addTo
(
map
);
map
.
fitBounds
(
_
.
pluck
(
scope
.
data
,
'coordinates'
));
map
.
fitBounds
(
_
.
pluck
(
scope
.
data
,
'coordinates'
));
...
...
Write
Preview
Markdown
is supported
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