<!DOCTYPE html>

<html lang="ru">

<head>

  <meta charset="UTF-8" />

  <title>Сейшельские острова</title>

  <script src="https://js.radar.io/v3/radar.min.js"></script>

</head>

<body>

  <h1>Добро пожаловать</h1>


  <script>

    Radar.initialize('prj_live_pk_6b5150796bfc7a57b1395cd75a76304b2c0ff9ba');


    Radar.trackOnce(function(result) {

      console.log("📍 Radar location:", result.location);

      console.log("📌 Radar geofences:", result.geofences);


      if (result.geofences && result.geofences.length > 0) {

        result.geofences.forEach(gf => {

          if (gf.tag === "moscow_airport") {

            alert("Сейшелы ждут вас! 🌴 Посетите App");

            window.location.href = "https://app.jotform.com/250731483363557/page/88";

          }

        });

      } else {

        alert("Вы не находитесь в зоне действия геозоны.");

      }

    });

  </script>

</body>

</html>