mirror of
https://github.com/CIMEngine/map.git
synced 2024-11-24 03:36:21 +03:00
feat: rollup, controls, debug mode
This commit is contained in:
parent
af689c92fe
commit
dd0d8fd077
6 changed files with 1221 additions and 51 deletions
1102
package-lock.json
generated
Normal file
1102
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
22
package.json
Normal file
22
package.json
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"name": "map",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Site that displays CIMEngine maps",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "rollup --config src/rollup.config.js"
|
||||||
|
},
|
||||||
|
"type": "module",
|
||||||
|
"keywords": [],
|
||||||
|
"author": "",
|
||||||
|
"license": "MIT",
|
||||||
|
"devDependencies": {
|
||||||
|
"@rollup/plugin-commonjs": "^25.0.1",
|
||||||
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
||||||
|
"rollup": "^3.25.1",
|
||||||
|
"rollup-plugin-copy": "^3.4.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"mapbox-gl-controls": "^2.3.5"
|
||||||
|
}
|
||||||
|
}
|
|
@ -14,14 +14,16 @@
|
||||||
<link rel="stylesheet" href="./index.css">
|
<link rel="stylesheet" href="./index.css">
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="https://i.imgur.com/i0yls6d.png">
|
<link rel="icon" type="image/x-icon" href="https://i.imgur.com/i0yls6d.png">
|
||||||
<link href="https://api.mapbox.com/mapbox-gl-js/v2.13.0/mapbox-gl.css" rel="stylesheet" />
|
<link href="https://api.mapbox.com/mapbox-gl-js/v2.15.0/mapbox-gl.css" rel="stylesheet" />
|
||||||
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||||
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
|
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
|
||||||
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
|
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mapbox-gl-controls@2.3/lib/controls.min.css">
|
||||||
|
<link href="https://watergis.github.io/mapbox-gl-export/mapbox-gl-export.css" rel="stylesheet" />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
|
@ -55,9 +57,11 @@
|
||||||
|
|
||||||
<div id="map"></div>
|
<div id="map"></div>
|
||||||
|
|
||||||
<script src="https://api.mapbox.com/mapbox-gl-js/v2.13.0/mapbox-gl.js"></script>
|
<script src="https://api.mapbox.com/mapbox-gl-js/v2.15.0/mapbox-gl.js"></script>
|
||||||
<script type="text/javascript" src=" https://unpkg.com/showdown/dist/showdown.min.js"></script>
|
<script type="text/javascript" src="https://unpkg.com/showdown/dist/showdown.min.js"></script>
|
||||||
<script src="./index.js" async defer></script>
|
<script src="https://watergis.github.io/mapbox-gl-export/mapbox-gl-export.js"></script>
|
||||||
|
|
||||||
|
<script src="./index.bundle.js" async defer></script>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
|
@ -1,3 +1,10 @@
|
||||||
|
import {
|
||||||
|
StylesControl,
|
||||||
|
ZoomControl,
|
||||||
|
CompassControl,
|
||||||
|
InspectControl,
|
||||||
|
} from "mapbox-gl-controls";
|
||||||
|
|
||||||
function loginfo(...str) {
|
function loginfo(...str) {
|
||||||
let info = str.shift();
|
let info = str.shift();
|
||||||
console.log(
|
console.log(
|
||||||
|
@ -6,35 +13,6 @@ function loginfo(...str) {
|
||||||
...str
|
...str
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
function logmarker(...str) {
|
|
||||||
let info = str.shift();
|
|
||||||
console.log(
|
|
||||||
`%c ${info} `,
|
|
||||||
"color:white; background-color: #9300fc; border-radius:10px;",
|
|
||||||
...str
|
|
||||||
);
|
|
||||||
}
|
|
||||||
function logland(...str) {
|
|
||||||
let info = str.shift();
|
|
||||||
console.log(
|
|
||||||
`%c ${info} `,
|
|
||||||
"color:white; background-color: #0c7700; border-radius:10px;",
|
|
||||||
...str
|
|
||||||
);
|
|
||||||
}
|
|
||||||
function logoccupation(...str) {
|
|
||||||
let info = str.shift();
|
|
||||||
console.log(
|
|
||||||
`%c ${info} `,
|
|
||||||
"color:white; background-color: #B22222; border-radius:10px;",
|
|
||||||
...str
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function onMapClick(e) {
|
|
||||||
loginfo("click on:", e.latlng.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
window.onload = async () => {
|
window.onload = async () => {
|
||||||
const params = new Proxy(new URLSearchParams(window.location.search), {
|
const params = new Proxy(new URLSearchParams(window.location.search), {
|
||||||
get: (searchParams, prop) => searchParams.get(prop),
|
get: (searchParams, prop) => searchParams.get(prop),
|
||||||
|
@ -53,10 +31,11 @@ window.onload = async () => {
|
||||||
|
|
||||||
const geoURL = params.geoURL || mapDataFromId.geoURL;
|
const geoURL = params.geoURL || mapDataFromId.geoURL;
|
||||||
const countryInfoUrl = params.countryInfoURL || mapDataFromId.countryInfoURL;
|
const countryInfoUrl = params.countryInfoURL || mapDataFromId.countryInfoURL;
|
||||||
|
const debug = params.debug || false;
|
||||||
|
|
||||||
mapboxgl.accessToken =
|
mapboxgl.accessToken =
|
||||||
"pk.eyJ1IjoiYXJ0ZWdvc2VyIiwiYSI6ImNrcDViN3BhcDAwbW0ydnBnOXZ0ZzFreXUifQ.FIVtaBNr9dr_TIw672Zqdw";
|
"pk.eyJ1IjoiYXJ0ZWdvc2VyIiwiYSI6ImNrcDViN3BhcDAwbW0ydnBnOXZ0ZzFreXUifQ.FIVtaBNr9dr_TIw672Zqdw";
|
||||||
let movc = new mapboxgl.Map({
|
let map = new mapboxgl.Map({
|
||||||
container: "map",
|
container: "map",
|
||||||
style: "mapbox://styles/artegoser/clfm612fg002601nlcika2018?optimize=true",
|
style: "mapbox://styles/artegoser/clfm612fg002601nlcika2018?optimize=true",
|
||||||
center: [53.19, 41.28],
|
center: [53.19, 41.28],
|
||||||
|
@ -64,31 +43,69 @@ window.onload = async () => {
|
||||||
projection: projection,
|
projection: projection,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
map.addControl(
|
||||||
|
new StylesControl({
|
||||||
|
styles: [
|
||||||
|
{
|
||||||
|
label: "Streets",
|
||||||
|
styleName: "Mapbox Streets",
|
||||||
|
styleUrl:
|
||||||
|
"mapbox://styles/artegoser/clfm612fg002601nlcika2018?optimize=true",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Satellite",
|
||||||
|
styleName: "Satellite",
|
||||||
|
styleUrl:
|
||||||
|
"mapbox://styles/artegoser/cliskjlhw00ug01pgfs9lesog?optimize=true",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
"top-left"
|
||||||
|
);
|
||||||
|
|
||||||
|
map.addControl(new ZoomControl(), "top-right");
|
||||||
|
map.addControl(new CompassControl(), "top-right");
|
||||||
|
map.addControl(
|
||||||
|
new MapboxExportControl({
|
||||||
|
PageSize: Size.A3,
|
||||||
|
PageOrientation: PageOrientation.Portrait,
|
||||||
|
Format: Format.PNG,
|
||||||
|
DPI: DPI[96],
|
||||||
|
Crosshair: true,
|
||||||
|
PrintableArea: true,
|
||||||
|
}),
|
||||||
|
"top-right"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (debug) {
|
||||||
|
map.addControl(new InspectControl(), "bottom-right");
|
||||||
|
}
|
||||||
|
|
||||||
let converter = new showdown.Converter();
|
let converter = new showdown.Converter();
|
||||||
|
|
||||||
movc.on("load", async () => {
|
map.on("load", async () => {
|
||||||
movc.loadImage(
|
map.loadImage(
|
||||||
"https://cimengine.github.io/map/icons/city.png",
|
"https://cimengine.github.io/map/icons/city.png",
|
||||||
(error, image) => {
|
(error, image) => {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
movc.addImage("city", image);
|
map.addImage("city", image);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
movc.loadImage(
|
map.loadImage(
|
||||||
"https://cimengine.github.io/map/icons/capital.png",
|
"https://cimengine.github.io/map/icons/capital.png",
|
||||||
(error, image) => {
|
(error, image) => {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
movc.addImage("capital-city", image);
|
map.addImage("capital-city", image);
|
||||||
movc.addImage("capital", image);
|
map.addImage("capital", image);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
movc.loadImage(
|
map.loadImage(
|
||||||
"https://cimengine.github.io/map/icons/landmark.png",
|
"https://cimengine.github.io/map/icons/landmark.png",
|
||||||
(error, image) => {
|
(error, image) => {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
movc.addImage("landmark-0", image);
|
map.addImage("landmark-0", image);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -101,12 +118,12 @@ window.onload = async () => {
|
||||||
for (let i = 0; i < coarray.length; i++)
|
for (let i = 0; i < coarray.length; i++)
|
||||||
countries[coarray[i].idc] = coarray[i];
|
countries[coarray[i].idc] = coarray[i];
|
||||||
|
|
||||||
movc.addSource("map-data", {
|
map.addSource("map-data", {
|
||||||
type: "geojson",
|
type: "geojson",
|
||||||
data: geoURL,
|
data: geoURL,
|
||||||
});
|
});
|
||||||
|
|
||||||
movc.addLayer({
|
map.addLayer({
|
||||||
id: "map-data-fill",
|
id: "map-data-fill",
|
||||||
type: "fill",
|
type: "fill",
|
||||||
source: "map-data",
|
source: "map-data",
|
||||||
|
@ -116,7 +133,7 @@ window.onload = async () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
movc.addLayer({
|
map.addLayer({
|
||||||
id: "map-data-fill-outline",
|
id: "map-data-fill-outline",
|
||||||
type: "line",
|
type: "line",
|
||||||
source: "map-data",
|
source: "map-data",
|
||||||
|
@ -127,7 +144,7 @@ window.onload = async () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
movc.addLayer({
|
map.addLayer({
|
||||||
id: "map-data-symbol",
|
id: "map-data-symbol",
|
||||||
type: "symbol",
|
type: "symbol",
|
||||||
source: "map-data",
|
source: "map-data",
|
||||||
|
@ -138,7 +155,7 @@ window.onload = async () => {
|
||||||
minzoom: 3,
|
minzoom: 3,
|
||||||
});
|
});
|
||||||
|
|
||||||
movc.on("click", "map-data-fill", (e) => {
|
map.on("click", "map-data-fill", (e) => {
|
||||||
const coordinates = e.lngLat;
|
const coordinates = e.lngLat;
|
||||||
while (Math.abs(e.lngLat.lng - coordinates[0]) > 180) {
|
while (Math.abs(e.lngLat.lng - coordinates[0]) > 180) {
|
||||||
coordinates[0] += e.lngLat.lng > coordinates[0] ? 360 : -360;
|
coordinates[0] += e.lngLat.lng > coordinates[0] ? 360 : -360;
|
||||||
|
@ -147,7 +164,7 @@ window.onload = async () => {
|
||||||
onEachFeature(e.features[0], coordinates);
|
onEachFeature(e.features[0], coordinates);
|
||||||
});
|
});
|
||||||
|
|
||||||
movc.on("click", "map-data-symbol", (e) => {
|
map.on("click", "map-data-symbol", (e) => {
|
||||||
const coordinates = e.lngLat;
|
const coordinates = e.lngLat;
|
||||||
while (Math.abs(e.lngLat.lng - coordinates[0]) > 180) {
|
while (Math.abs(e.lngLat.lng - coordinates[0]) > 180) {
|
||||||
coordinates[0] += e.lngLat.lng > coordinates[0] ? 360 : -360;
|
coordinates[0] += e.lngLat.lng > coordinates[0] ? 360 : -360;
|
||||||
|
@ -193,7 +210,7 @@ window.onload = async () => {
|
||||||
</div>
|
</div>
|
||||||
`
|
`
|
||||||
)
|
)
|
||||||
.addTo(movc);
|
.addTo(map);
|
||||||
} else if (
|
} else if (
|
||||||
feature.geometry.type === "Polygon" ||
|
feature.geometry.type === "Polygon" ||
|
||||||
feature.geometry.type === "MultiPolygon"
|
feature.geometry.type === "MultiPolygon"
|
||||||
|
@ -245,7 +262,7 @@ window.onload = async () => {
|
||||||
</div>
|
</div>
|
||||||
</div>`
|
</div>`
|
||||||
)
|
)
|
||||||
.addTo(movc);
|
.addTo(map);
|
||||||
}, 1);
|
}, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
25
src/rollup.config.js
Normal file
25
src/rollup.config.js
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import resolve from "@rollup/plugin-node-resolve";
|
||||||
|
import commonjs from "@rollup/plugin-commonjs";
|
||||||
|
import copy from "rollup-plugin-copy";
|
||||||
|
|
||||||
|
export default [
|
||||||
|
{
|
||||||
|
input: "src/index.js",
|
||||||
|
output: {
|
||||||
|
file: "dist/index.bundle.js",
|
||||||
|
format: "iife",
|
||||||
|
sourcemap: true,
|
||||||
|
},
|
||||||
|
context: "window",
|
||||||
|
plugins: [
|
||||||
|
resolve(),
|
||||||
|
commonjs({ sourceMap: false }),
|
||||||
|
copy({
|
||||||
|
targets: [
|
||||||
|
{ src: "src/index.html", dest: "dist" },
|
||||||
|
{ src: "src/index.css", dest: "dist" },
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
Loading…
Add table
Reference in a new issue