Клуб API Карт

Яндекс карты не работают в PhoneGap

Пост в архиве.

Не работает Яндекс карты API в PhoneGap, на мобильных телефонах карта не отображается, на десктопе все отлично.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
        <title>Blank App</title>
        
        <script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script>
        <script type="text/javascript">
            ymaps.ready(init);
            var myMap;

            function init(){     
                myMap = new ymaps.Map("map", {
                    center: [55.76, 37.64],
                    zoom: 7,
                });
            }
        </script>
        <style> html, body { margin: 0;}</style>
    </head>
    <body>
        <div id="map" style="width: 400px; height: 400px"></div>
    </body>
</html>