Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
eb90411c
Commit
eb90411c
authored
Dec 27, 2018
by
Piotr Gawron
Browse files
overlay wrapping is disabled for Markers and data overlays
parent
e7388c7a
Pipeline
#8001
passed with stage
in 1 minute and 58 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
eb90411c
minerva
(
12.1.4
)
stable
;
urgency
=
medium
*
Bug
fix
:
there
are
no
more
extra
markers
due
to
map
wrapping
*
Bug
fix
:
upload
of
the
project
failed
when
another
project
was
removed
during
upload
...
...
frontend-js/src/main/js/map/canvas/OpenLayers/OpenLayerCanvas.js
View file @
eb90411c
...
...
@@ -26,24 +26,28 @@ function OpenLayerCanvas(element, options) {
self
.
_markerLayer
=
new
ol
.
layer
.
Vector
({
source
:
new
ol
.
source
.
Vector
({
wrapX
:
false
,
features
:
[]
})
});
self
.
_rectangleLayer
=
new
ol
.
layer
.
Vector
({
source
:
new
ol
.
source
.
Vector
({
wrapX
:
false
,
features
:
[]
})
});
self
.
_polylineLayer
=
new
ol
.
layer
.
Vector
({
source
:
new
ol
.
source
.
Vector
({
wrapX
:
false
,
features
:
[]
})
});
self
.
_drawingLayer
=
new
ol
.
layer
.
Vector
({
source
:
new
ol
.
source
.
Vector
({
wrapX
:
false
,
features
:
[]
}),
style
:
new
ol
.
style
.
Style
({
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment