Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
geolocation
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
geolocation
Merge requests
!105
Inital widget support
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Inital widget support
issue/geolocation-3525417:3525417-geometry-widget-functionality
into
4.x
Overview
0
Commits
15
Pipelines
16
Changes
80
Merged
Inital widget support
Christian Adamski
requested to merge
issue/geolocation-3525417:3525417-geometry-widget-functionality
into
4.x
2 months ago
Overview
0
Commits
15
Pipelines
16
Changes
80
Closes
#3525417
0
0
Merge request reports
Compare
4.x
version 14
39de1b7e
3 weeks ago
version 13
1cc61aef
3 weeks ago
version 12
1d86fc2c
3 weeks ago
version 11
f8946243
3 weeks ago
version 10
930f411e
3 weeks ago
version 9
8d2d440a
3 weeks ago
version 8
fdc02ef4
3 weeks ago
version 7
f5437de0
3 weeks ago
version 6
bef73a33
3 weeks ago
version 5
3f1c4c88
2 months ago
version 4
15e0fd12
2 months ago
version 3
58602d74
2 months ago
version 2
61ce4e94
2 months ago
version 1
1bf2b577
2 months ago
4.x (base)
and
latest version
latest version
bde781a3
15 commits,
3 weeks ago
version 14
39de1b7e
14 commits,
3 weeks ago
version 13
1cc61aef
13 commits,
3 weeks ago
version 12
1d86fc2c
12 commits,
3 weeks ago
version 11
f8946243
11 commits,
3 weeks ago
version 10
930f411e
10 commits,
3 weeks ago
version 9
8d2d440a
9 commits,
3 weeks ago
version 8
fdc02ef4
8 commits,
3 weeks ago
version 7
f5437de0
7 commits,
3 weeks ago
version 6
bef73a33
6 commits,
3 weeks ago
version 5
3f1c4c88
5 commits,
2 months ago
version 4
15e0fd12
4 commits,
2 months ago
version 3
58602d74
3 commits,
2 months ago
version 2
61ce4e94
2 commits,
2 months ago
version 1
1bf2b577
1 commit,
2 months ago
80 files
+
1751
−
930
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
80
js/Base/GeolocationGeometry.js
0 → 100644
+
14
−
0
View file @ bde781a3
Edit in single-file editor
Open in Web IDE
/**
* @prop {string} type
* @prop { number[] | number[][] | number[][][] | number[][][][]} coordinates
*/
export
class
GeolocationGeometry
{
/**
* @param {string} type
* @param {array} coordinates
*/
constructor
(
type
,
coordinates
)
{
this
.
type
=
type
;
this
.
coordinates
=
coordinates
;
}
}
Loading