Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
minerva
frontend
Commits
b1f29be8
Commit
b1f29be8
authored
5 months ago
by
Miłosz Grocholewski
Browse files
Options
Downloads
Patches
Plain Diff
feat(vector-map): text placement for modifications
parent
5d55acbe
No related branches found
No related tags found
1 merge request
!282
feat(vector-map): text placement for modifications
Pipeline
#96996
passed
5 months ago
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/Map/MapViewer/MapViewerVector/utils/shapes/elements/MapElement.ts
+32
-17
32 additions, 17 deletions
...iewer/MapViewerVector/utils/shapes/elements/MapElement.ts
src/models/modelElementModificationSchema.ts
+6
-0
6 additions, 0 deletions
src/models/modelElementModificationSchema.ts
with
38 additions
and
17 deletions
src/components/Map/MapViewer/MapViewerVector/utils/shapes/elements/MapElement.ts
+
32
−
17
View file @
b1f29be8
/* eslint-disable no-magic-numbers */
/* eslint-disable no-magic-numbers */
import
{
Style
,
Text
}
from
'
ol/style
'
;
import
{
Style
}
from
'
ol/style
'
;
import
{
UsePointToProjectionResult
}
from
'
@/utils/map/usePointToProjection
'
;
import
{
UsePointToProjectionResult
}
from
'
@/utils/map/usePointToProjection
'
;
import
getStroke
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/style/getStroke
'
;
import
getStroke
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/style/getStroke
'
;
import
getFill
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/style/getFill
'
;
import
getFill
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/style/getFill
'
;
...
@@ -18,6 +18,8 @@ import {
...
@@ -18,6 +18,8 @@ import {
}
from
'
@/components/Map/MapViewer/MapViewerVector/MapViewerVector.constants
'
;
}
from
'
@/components/Map/MapViewer/MapViewerVector/MapViewerVector.constants
'
;
import
BaseMultiPolygon
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/elements/BaseMultiPolygon
'
;
import
BaseMultiPolygon
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/elements/BaseMultiPolygon
'
;
import
getStyle
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/style/getStyle
'
;
import
getStyle
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/style/getStyle
'
;
import
getTextCoords
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/text/getTextCoords
'
;
import
getTextStyle
from
'
@/components/Map/MapViewer/MapViewerVector/utils/shapes/text/getTextStyle
'
;
export
type
MapElementProps
=
{
export
type
MapElementProps
=
{
shapes
:
Array
<
Shape
>
;
shapes
:
Array
<
Shape
>
;
...
@@ -175,24 +177,37 @@ export default class MapElement extends BaseMultiPolygon {
...
@@ -175,24 +177,37 @@ export default class MapElement extends BaseMultiPolygon {
fill
:
getFill
({
color
:
rgbToHex
(
modification
.
fillColor
)
}),
fill
:
getFill
({
color
:
rgbToHex
(
modification
.
fillColor
)
}),
zIndex
:
modification
.
z
,
zIndex
:
modification
.
z
,
});
});
const
modificationText
=
modification
.
stateAbbreviation
?
modification
.
stateAbbreviation
:
modification
.
name
;
if
(
modificationText
)
{
modificationStyle
.
setText
(
new
Text
({
text
:
modificationText
,
font
:
`
${
modification
.
fontSize
}
pt Arial`
,
textAlign
:
'
center
'
,
textBaseline
:
'
middle
'
,
fill
:
getFill
({
color
:
'
#000
'
}),
overflow
:
true
,
}),
);
this
.
polygonsTexts
.
push
(
modificationText
);
}
this
.
styles
.
push
(
modificationStyle
);
this
.
styles
.
push
(
modificationStyle
);
});
});
const
modificationText
=
modification
.
stateAbbreviation
?
modification
.
stateAbbreviation
:
modification
.
name
;
if
(
modificationText
)
{
const
modificationTextCoords
=
getTextCoords
({
x
:
modification
.
nameX
,
y
:
modification
.
nameY
,
width
:
modification
.
nameWidth
,
height
:
modification
.
nameHeight
,
fontSize
:
modification
.
fontSize
,
verticalAlign
:
modification
.
nameVerticalAlign
,
horizontalAlign
:
modification
.
nameHorizontalAlign
,
pointToProjection
:
this
.
pointToProjection
,
});
const
modificationTextPolygon
=
new
Polygon
([
[
modificationTextCoords
,
modificationTextCoords
],
]);
const
modificationTextStyle
=
getTextStyle
({
text
:
modificationText
,
fontSize
:
modification
.
fontSize
,
color
:
rgbToHex
(
BLACK_COLOR
),
zIndex
:
modification
.
z
,
horizontalAlign
:
modification
.
nameHorizontalAlign
,
});
modificationTextStyle
.
setGeometry
(
modificationTextPolygon
);
this
.
styles
.
push
(
modificationTextStyle
);
this
.
polygonsTexts
.
push
(
modificationText
);
this
.
polygons
.
push
(
modificationTextPolygon
);
}
}
}
drawActiveBorder
(
homodimerShift
:
number
,
homodimerOffset
:
number
):
void
{
drawActiveBorder
(
homodimerShift
:
number
,
homodimerOffset
:
number
):
void
{
...
...
This diff is collapsed.
Click to expand it.
src/models/modelElementModificationSchema.ts
+
6
−
0
View file @
b1f29be8
...
@@ -10,6 +10,12 @@ export const modelElementModificationSchema = z.object({
...
@@ -10,6 +10,12 @@ export const modelElementModificationSchema = z.object({
z
:
z
.
number
(),
z
:
z
.
number
(),
width
:
z
.
number
(),
width
:
z
.
number
(),
height
:
z
.
number
(),
height
:
z
.
number
(),
nameX
:
z
.
number
(),
nameY
:
z
.
number
(),
nameWidth
:
z
.
number
(),
nameHeight
:
z
.
number
(),
nameVerticalAlign
:
z
.
enum
([
'
TOP
'
,
'
MIDDLE
'
,
'
BOTTOM
'
]),
nameHorizontalAlign
:
z
.
enum
([
'
LEFT
'
,
'
RIGHT
'
,
'
CENTER
'
,
'
END
'
,
'
START
'
]),
species
:
z
.
number
(),
species
:
z
.
number
(),
borderColor
:
colorSchema
,
borderColor
:
colorSchema
,
fillColor
:
colorSchema
,
fillColor
:
colorSchema
,
...
...
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