0

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

Ilia Levikov
  • 166
  • 1
  • 4
  • 13

1 Answers1

1

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.

Reni
  • 192
  • 9