Typo: Change kat name

This commit is contained in:
2024-05-09 21:10:18 +04:00
parent d65fb7d326
commit c66fac93ce
7 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -9,11 +9,11 @@
<body> <body>
<h1>Choisis une carte</h1> <h1>Choisis une carte</h1>
<ul> <ul>
<li><a href="kat/KAMA.php">Afrique (KAMA)</a></li> <li><a href="kat/DINA-MORGABIN.php">DINA MORGABIN (La Réunion)</a></li>
<li><a href="kat/971.php">Guadeloupe (971)</a></li> <li><a href="kat/GUYANE.php">GUYANE</a></li>
<li><a href="kat/972.php">Martinique (972)</a></li> <li><a href="kat/KAMA.php">KAMA (Afrique)</a></li>
<li><a href="kat/973.php">Guyane (973)</a></li> <li><a href="kat/KARUKERA.php">KARUKERA (Guadeloupe)</a></li>
<li><a href="kat/974.php">La Réunion (974)</a></li> <li><a href="kat/WANAKERA.php">WANAKERA (Martinique)</a></li>
</ul> </ul>
</body> </body>
</html> </html>
+4 -4
View File
@@ -33,22 +33,22 @@ switch (codeCarte) {
zoomLevel = 2.7 zoomLevel = 2.7
styleFileName = 'ortho-jwe-KAMA.json' styleFileName = 'ortho-jwe-KAMA.json'
break break
case '971': case 'KARUKERA':
centerCoordinates = [-61.4167, 16.25] // Guadeloupe centerCoordinates = [-61.4167, 16.25] // Guadeloupe
zoomLevel = 9 zoomLevel = 9
styleFileName = 'ortho.json' styleFileName = 'ortho.json'
break break
case '972': case 'WANAKERA':
centerCoordinates = [-61.01635, 14.60285] // Martinique centerCoordinates = [-61.01635, 14.60285] // Martinique
zoomLevel = 9.5 zoomLevel = 9.5
styleFileName = 'ortho.json' styleFileName = 'ortho.json'
break break
case '973': case 'GUYANE':
centerCoordinates = [-53.1258, 3.9339] // Guyane française centerCoordinates = [-53.1258, 3.9339] // Guyane française
zoomLevel = 7 zoomLevel = 7
styleFileName = 'ortho-jwe.json' styleFileName = 'ortho-jwe.json'
break break
case '974': case 'DINA-MORGABIN':
centerCoordinates = [55.52905, -21.13014] // La Réunion centerCoordinates = [55.52905, -21.13014] // La Réunion
styleFileName = 'ortho.json' styleFileName = 'ortho.json'
zoomLevel = 9.5 zoomLevel = 9.5
+1 -1
View File
@@ -7,7 +7,7 @@
</head> </head>
<body> <body>
<?php <?php
$zone = 'La Réunion (974)'; $zone = 'DINA MORGABIN (La Réunion)';
include('../game-control/back.php'); include('../game-control/back.php');
include('../game-control/start.php'); include('../game-control/start.php');
?> ?>
+1 -1
View File
@@ -7,7 +7,7 @@
</head> </head>
<body> <body>
<?php <?php
$zone = 'Guyane (973)'; $zone = 'GUYANE';
include('../game-control/back.php'); include('../game-control/back.php');
include('../game-control/start.php'); include('../game-control/start.php');
?> ?>
+1 -1
View File
@@ -7,7 +7,7 @@
</head> </head>
<body> <body>
<?php <?php
$zone = 'Afrique (KAMA)'; $zone = 'KAMA (Afrique)';
include('../game-control/back.php'); include('../game-control/back.php');
include('../game-control/start.php'); include('../game-control/start.php');
?> ?>
+1 -1
View File
@@ -7,7 +7,7 @@
</head> </head>
<body> <body>
<?php <?php
$zone = 'Guadeloupe (971)'; $zone = 'KARUKERA (Guadeloupe)';
include('../game-control/back.php'); include('../game-control/back.php');
include('../game-control/start.php'); include('../game-control/start.php');
?> ?>
+1 -1
View File
@@ -7,7 +7,7 @@
</head> </head>
<body> <body>
<?php <?php
$zone = 'Martinique (972)'; $zone = 'WANAKERA (Martinique)';
include('../game-control/back.php'); include('../game-control/back.php');
include('../game-control/start.php'); include('../game-control/start.php');
?> ?>