Labels are loaded into ObjectManager, then ObjectManager is added to Map.geoObject, then two Circles are added there. Tried to set zIndex for Cirlce, for tags and for ObjectManager itself - it is useless. It turns out all the same like this: 
|
1 answer
You can create your pane object (dom layer on the map), point it to zIndex (for example, 600 that will be on top of the labels) and draw circles in it. Example:
var pane = new ymaps.pane.MovablePane(myMap, { zIndex: 600 }); myMap.panes.append('myAwesomePane', pane); var circle = new ymaps.Circle( [[55.751574, 37.573856], 10000], {}, { fillColor: 'ff000099', pane: 'myAwesomePane' }) Here is an interactive example on jsfiddle: https://jsfiddle.net/wbn51u0a/23/
|