在构造函数中移动 yandex 映射控制器
Move yandex maps controllers in constructor
我可以使用 yandex 地图构造函数更改控件位置吗?
我的地图控件看起来像那样
所以我需要将所有控件向右移动一点。
使用 yandex API 我可以这样做:
urMap.controls.add('zoomControl', {position: {left: '40px', top: '100px'}});
但是我可以只使用 map-constructor
到达它吗
您只能使用问题中所述的 JavaScript API 更改控件位置。
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 用于地图自定义。无法更改或移动控件。
我可以使用 yandex 地图构造函数更改控件位置吗?
我的地图控件看起来像那样
urMap.controls.add('zoomControl', {position: {left: '40px', top: '100px'}});
但是我可以只使用 map-constructor
到达它吗您只能使用问题中所述的 JavaScript API 更改控件位置。
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 用于地图自定义。无法更改或移动控件。