Search code examples
yandexyandex-maps

Move yandex maps controllers in constructor


can I change controls position with yandex map constructor? My maps controls looks like that enter image description here So i need to move all controlls to right a bit. Using yandex API i can do it like that:

urMap.controls.add('zoomControl', {position: {left: '40px', top: '100px'}});

But can i reach it just using the map-constructor


Solution

  • You may change controls position only using JavaScript API as described in your question.

    Map Constructor is a simple service that allows to get a ready-to-use map code without programming but on the other hand it has limited options for map customization. Controls cannot be changed or moved.