Typo: KAMA to KMT
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="kat/DINA-MORGABIN.php">DINA MORGABIN (La Réunion)</a></li>
|
<li><a href="kat/DINA-MORGABIN.php">DINA MORGABIN (La Réunion)</a></li>
|
||||||
<li><a href="kat/GUYANE.php">GUYANE</a></li>
|
<li><a href="kat/GUYANE.php">GUYANE</a></li>
|
||||||
<li><a href="kat/KAMA.php">KAMA (Afrique)</a></li>
|
<li><a href="kat/KMT.php">KMT (Afrique)</a></li>
|
||||||
<li><a href="kat/KARUKERA.php">KARUKERA (Guadeloupe)</a></li>
|
<li><a href="kat/KARUKERA.php">KARUKERA (Guadeloupe)</a></li>
|
||||||
<li><a href="kat/WANAKAERA.php">WANAKAERA (Martinique)</a></li>
|
<li><a href="kat/WANAKAERA.php">WANAKAERA (Martinique)</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -28,10 +28,10 @@ let zoomLevel
|
|||||||
let styleFileName
|
let styleFileName
|
||||||
|
|
||||||
switch (codeCarte) {
|
switch (codeCarte) {
|
||||||
case 'KAMA':
|
case 'KMT':
|
||||||
centerCoordinates = [21.21, 1.36] // Afrique
|
centerCoordinates = [21.21, 1.36] // Afrique
|
||||||
zoomLevel = 2.7
|
zoomLevel = 2.7
|
||||||
styleFileName = 'ortho-jwe-KAMA.json'
|
styleFileName = 'ortho-jwe-KMT.json'
|
||||||
break
|
break
|
||||||
case 'KARUKERA':
|
case 'KARUKERA':
|
||||||
centerCoordinates = [-61.4167, 16.25] // Guadeloupe
|
centerCoordinates = [-61.4167, 16.25] // Guadeloupe
|
||||||
@@ -136,7 +136,7 @@ function startGame() {
|
|||||||
const score = document.getElementById('score')
|
const score = document.getElementById('score')
|
||||||
const chrono = document.getElementById('chrono')
|
const chrono = document.getElementById('chrono')
|
||||||
|
|
||||||
question.innerHTML = `<p style='font-weight: bold;'>Trouve ${codeCarte === 'KAMA' ? 'le pays' : 'la commune'}</p><p id='commune' style='font-size: 30px; font-weight: bold; color: #1F51FF'>...</p>`
|
question.innerHTML = `<p style='font-weight: bold;'>Trouve ${codeCarte === 'KMT' ? 'le pays' : 'la commune'}</p><p id='commune' style='font-size: 30px; font-weight: bold; color: #1F51FF'>...</p>`
|
||||||
score.innerHTML = "<p style='color: green; font-weight: bold; margin-right: 2em;'>Correct ✅ : <span style='color: black;' id='OK'>0</span></p><p style='color: red; font-weight: bold;'>Faux ❌ : <span style='color: black;' id='KO'>0</span></p>"
|
score.innerHTML = "<p style='color: green; font-weight: bold; margin-right: 2em;'>Correct ✅ : <span style='color: black;' id='OK'>0</span></p><p style='color: red; font-weight: bold;'>Faux ❌ : <span style='color: black;' id='KO'>0</span></p>"
|
||||||
chrono.innerHTML = "<p>Temps écoulé : <span id='time'></span><span style='margin-left: 1em;color: red; font-weight: bold;' id='penalty'></span></p>"
|
chrono.innerHTML = "<p>Temps écoulé : <span id='time'></span><span style='margin-left: 1em;color: red; font-weight: bold;' id='penalty'></span></p>"
|
||||||
|
|
||||||
@@ -215,7 +215,7 @@ function communeObserver(){
|
|||||||
*/
|
*/
|
||||||
async function getFile(codeCarte) {
|
async function getFile(codeCarte) {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(`../kat/data/${codeCarte}/contours-${codeCarte === 'KAMA' ? 'pays' : 'communes'}.geojson`)
|
const response = await fetch(`../kat/data/${codeCarte}/contours-${codeCarte === 'KMT' ? 'pays' : 'communes'}.geojson`)
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Error(`Échec du chargement du fichier JSON : ${response.statusText}`)
|
throw new Error(`Échec du chargement du fichier JSON : ${response.statusText}`)
|
||||||
}
|
}
|
||||||
@@ -338,7 +338,7 @@ function loadMap() {
|
|||||||
map.setMaxZoom(9.5)
|
map.setMaxZoom(9.5)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (codeCarte === 'KAMA') {
|
if (codeCarte === 'KMT') {
|
||||||
/**
|
/**
|
||||||
* Ajoute les contrôles de navigation à la carte, et définit les niveaux de zoom minimum et maximum pour l'Afrique'.
|
* Ajoute les contrôles de navigation à la carte, et définit les niveaux de zoom minimum et maximum pour l'Afrique'.
|
||||||
*/
|
*/
|
||||||
@@ -381,7 +381,7 @@ function loadMap() {
|
|||||||
*/
|
*/
|
||||||
map.addSource('communes', {
|
map.addSource('communes', {
|
||||||
'type': 'geojson',
|
'type': 'geojson',
|
||||||
'data': `../kat/data/${codeCarte}/contours-${codeCarte === 'KAMA' ? 'pays' : 'communes'}.geojson`,
|
'data': `../kat/data/${codeCarte}/contours-${codeCarte === 'KMT' ? 'pays' : 'communes'}.geojson`,
|
||||||
'promoteId': 'code'
|
'promoteId': 'code'
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
$zone = 'KAMA (Afrique)';
|
$zone = 'KMT (Afrique)';
|
||||||
include('../game-control/back.php');
|
include('../game-control/back.php');
|
||||||
include('../game-control/start.php');
|
include('../game-control/start.php');
|
||||||
?>
|
?>
|
||||||
@@ -10,9 +10,9 @@
|
|||||||
"tileSize": 256,
|
"tileSize": 256,
|
||||||
"attribution": "<a target='_blank' href='https://geoservices.ign.fr/documentation/donnees/ortho/bdortho'>© IGN</a>"
|
"attribution": "<a target='_blank' href='https://geoservices.ign.fr/documentation/donnees/ortho/bdortho'>© IGN</a>"
|
||||||
},
|
},
|
||||||
"kama": {
|
"KMT": {
|
||||||
"type": "vector",
|
"type": "vector",
|
||||||
"url": "https://tiles.jwe.ovh/data/KAMA.json"
|
"url": "https://tiles.jwe.ovh/data/KMT.json"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"layers": [
|
"layers": [
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
{
|
{
|
||||||
"id": "boundary",
|
"id": "boundary",
|
||||||
"type": "line",
|
"type": "line",
|
||||||
"source": "kama",
|
"source": "KMT",
|
||||||
"source-layer": "boundary",
|
"source-layer": "boundary",
|
||||||
"minzoom": 2,
|
"minzoom": 2,
|
||||||
"layout": {
|
"layout": {
|
||||||
|
|||||||
Reference in New Issue
Block a user