Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MapLibre
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Boris Mericskay
MapLibre
Commits
14e45eb9
Commit
14e45eb9
authored
3 years ago
by
Boris Mericskay
Browse files
Options
Downloads
Patches
Plain Diff
Update Dotmap.html
parent
552859d2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dotmap.html
+21
-23
21 additions, 23 deletions
Dotmap.html
with
21 additions
and
23 deletions
Dotmap.html
+
21
−
23
View file @
14e45eb9
...
...
@@ -8,7 +8,7 @@
<style>
#map
{
position
:
absolute
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;}
#legend
{
#legend
{
left
:
1%
;
padding
:
10px
;
box-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.10
);
...
...
@@ -35,29 +35,27 @@
<body>
<div
id=
"map"
></div>
<div
class=
'map-overlay'
id=
'legend'
><hR><b>
311 - Type of report
</b>
<hR>
</div>
<div
id=
"map"
></div>
<div
class=
'map-overlay'
id=
'legend'
><hR><b>
311 - Type of report
</b>
<hR>
</div>
<script>
//Appel et
configuration
de la carte
// Map
configuration
var
map
=
new
mapboxgl
.
Map
({
container
:
'
map
'
,
style
:
'
https://geoserveis.icgc.cat/contextmaps/positron.json
'
,
//
Fond de carte
style
:
'
https://geoserveis.icgc.cat/contextmaps/positron.json
'
,
//
Basemap
zoom
:
12
,
// Zoom
center
:
[
2.335
,
48.854
],
//
Centrage car
te
pitch
:
10
,
// Inclinaison
carte
bearing
:
0
,
// Rotation
carte
center
:
[
2.335
,
48.854
],
//
Map cen
te
r
pitch
:
10
,
// Inclinaison
bearing
:
0
,
// Rotation
minZoom
:
12
});
// Add personnal data (GEOJSON)
map
.
on
(
'
load
'
,
function
()
{
//
C
onfiguration
légende
//
Legend c
onfiguration
map
.
getCanvas
().
style
.
cursor
=
'
default
'
;
map
.
getCanvas
().
style
.
cursor
=
'
default
'
;
...
...
@@ -76,13 +74,16 @@ map.on('load', function () {
item
.
appendChild
(
value
);
legend
.
appendChild
(
item
);
}
// A
DD reporting
layer
// A
dd point data
layer
map
.
addSource
(
'
Stations
'
,
{
type
:
'
geojson
'
,
data
:
'
https://raw.githubusercontent.com/mastersigat/data/main/DMR.geojson
'
});
// Dots symbology
map
.
addLayer
({
'
id
'
:
'
Stations
'
,
'
type
'
:
'
circle
'
,
...
...
@@ -94,15 +95,15 @@ map.on('load', function () {
'
circle-color
'
:
[
'
match
'
,
[
'
get
'
,
'
type
'
],
'
A
'
,
'
#fbb03b
'
,
'
B
'
,
'
#0074D9
'
,
'
C
'
,
'
#2ECC40
'
,
/* other */
'
#ccc
'
'
A
'
,
'
#fbb03b
'
,
'
B
'
,
'
#0074D9
'
,
'
C
'
,
'
#2ECC40
'
,
/* other */
'
#ccc
'
]
}
});
// Add arrondissements
// Add arrondissements
layer
map
.
addSource
(
'
lignes
'
,
{
type
:
'
geojson
'
,
...
...
@@ -118,16 +119,13 @@ map.on('load', function () {
});
});
// A
jout controle de navigation et echel
le
// A
dd navigation control and sca
le
map
.
addControl
(
new
mapboxgl
.
NavigationControl
({
position
:
'
top-left
'
}));
map
.
addControl
(
new
mapboxgl
.
ScaleControl
({
position
:
'
bottom-right
'
}));
</script>
</body>
</html>
\ No newline at end of file
</html>
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