Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавить всплытие ошибки при инициализации карт в loadYmap #419

Open
yuriylevchuk opened this issue Sep 21, 2022 · 0 comments

Comments

@yuriylevchuk
Copy link

Мне необходимо обрабатывать ситуации когда произошла какая-то ошибка при инициализации карт
Как пример: карты заблокированы в определенном регионе

    loadYmap(ymapConfig)
      .then(() => {
        // do some
      })
      .catch(() => {
        // do some
      })

Вариант решения

export function ymapLoader(settings = {}) {
  return new Promise((res, rej) => {
    if (window.ymaps) return res();

    if (document.getElementById('vue-yandex-maps')) {
      emitter.$on('scriptIsLoaded', res);
      return
    }

    const yandexMapScript = document.createElement('SCRIPT');
    const {
      apiKey = '',
      lang = 'ru_RU',
      version = '2.1',
      coordorder = 'latlong',
      debug = false,
      enterprise = false,
    } = settings;
    const mode = debug ? 'debug' : 'release';
    const settingsPart = `lang=${lang}${apiKey && `&apikey=${apiKey}`}&mode=${mode}&coordorder=${coordorder}`;
    const link = `https://${enterprise ? 'enterprise.' : ''}api-maps.yandex.ru/${version}/?${settingsPart}`;
    yandexMapScript.setAttribute('src', link);
    yandexMapScript.setAttribute('async', '');
    yandexMapScript.setAttribute('defer', '');
    yandexMapScript.setAttribute('id', 'vue-yandex-maps');
    document.head.appendChild(yandexMapScript);
    emitter.scriptIsNotAttached = false;
    yandexMapScript.onload = () => {
      ymaps.ready(() => {
        emitter.ymapReady = true;
        emitter.$emit('scriptIsLoaded');
        res();
      }, rej); // Вторым параметром в ready передаем коллбэк для ошибки
    };
   // На практике этой обработки недостаточно, так как этот скрипт может загрузиться успешно, 
   // но этот скрипт загружает еще один скрипт с другим доменом и там происходит ошибка
    yandexMapScript.onerror = rej; 
  });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants