Клуб API Карт

Не устанавливаются параметры position для MiniMap

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

Здравствуйте!

Подскажите пожалуйста почему не работает позиционирования для контроллера мини-карты?

А для зума все работает.

Спасибо!

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

    <title>Yandex Map</title>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <script src="http://api-maps.yandex.ru/2.0.33/?load=package.standard&lang=ru-RU" type="text/javascript"></script>

    <script type="text/javascript">

        ymaps.ready(init);

        var myMap, 

            myPlacemark;

 

        function init(){ 

            myMap = new ymaps.Map ("maps", {

                center: [55.76, 37.64],

                zoom: 7

            }); 

 

myMap.controls.add("zoomControl", {left: 50, top: 50})

 

myMap.controls.add(new ymaps.control.MiniMap(

{type: 'yandex#map', expanded: true},

{size: [75, 75], zoomOffset: 4, left: 50}

))

}

    </script>

</head>

 

<body>

    <div id="maps" style="width: 600px; height: 400px"></div>

</body>

 

</html>