Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Géocontrib Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
GéoContrib
Géocontrib Frontend
Commits
2634461d
Commit
2634461d
authored
3 years ago
by
Timothee P
Browse files
Options
Downloads
Patches
Plain Diff
change leaflet-draw button order for mobile display on feature_edit
parent
ef978f64
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!216
2.3.2-rc2
,
!211
REDMINE_ISSUE-11876
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/views/feature/Feature_edit.vue
+22
-6
22 additions, 6 deletions
src/views/feature/Feature_edit.vue
with
22 additions
and
6 deletions
src/views/feature/Feature_edit.vue
+
22
−
6
View file @
2634461d
...
...
@@ -181,11 +181,6 @@
/>
<div
class=
"ui tab active map-container"
data-tab=
"map"
>
<div
id=
"map"
ref=
"map"
></div>
<!-- // todo: ajouter v-if -->
<!--
{% if serialized_base_maps|length > 0 %} {% include
"geocontrib/map-layers/sidebar-layers.html" with
basemaps=serialized_base_maps layers=serialized_layers
project=project.slug%} {% endif %} -->
<SidebarLayers
v-if=
"basemaps && map"
/>
</div>
</div>
...
...
@@ -850,7 +845,10 @@ export default {
if
(
this
.
currentRouteName
===
"
editer-signalement
"
)
{
this
.
map
.
addControl
(
this
.
drawControlEditOnly
);
}
else
this
.
map
.
addControl
(
this
.
drawControlFull
);
}
else
{
this
.
map
.
addControl
(
this
.
drawControlFull
);
}
this
.
changeMobileBtnOrder
();
this
.
map
.
on
(
"
draw:created
"
,
...
...
@@ -984,6 +982,24 @@ export default {
}
},
changeMobileBtnOrder
()
{
//* move large toolbar for polygon creation, cutting map in the middle
function
changeDisplay
()
{
let
buttons
=
document
.
querySelector
(
"
.leaflet-draw-actions.leaflet-draw-actions-top.leaflet-draw-actions-bottom
"
)
if
(
buttons
&&
buttons
.
style
)
{
buttons
.
style
.
display
=
"
flex
"
buttons
.
style
[
"
flex-direction
"
]
=
"
column
"
}
}
if
(
window
.
screen
.
availWidth
<
767
)
{
//* change button order all the time to keep homogeinity on mobile
let
wrapper
=
document
.
querySelector
(
"
.leaflet-top.leaflet-right
"
);
if
(
wrapper
)
wrapper
.
appendChild
(
wrapper
.
children
[
0
]);
if
(
this
.
feature_type
.
geom_type
===
"
polygon
"
)
{
//* if it's a polygon, change tools direction to vertical
let
polygonBtn
=
document
.
querySelector
(
"
.leaflet-draw-draw-polygon
"
);
//* since elements are generated
if
(
polygonBtn
)
polygonBtn
.
addEventListener
(
"
click
"
,
changeDisplay
)
//* it should be done at each click
}
}
},
getFeatureAttachments
()
{
featureAPI
.
getFeatureAttachments
(
this
.
$route
.
params
.
slug_signal
)
...
...
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