from tkinter import *
m = PanedWindow(orient=VERTICAL, bg="blue")
m.pack(fill=BOTH, expand=1)
top = Label(m, text="top pane", bg="red")
m.add(top)
bottom = Label(m, text="bottom pane", bg="green")
m.add(bottom)
mainloop()
var myPlacemark = new ymaps.Placemark([55.76, 37.56], {}, {
iconLayout: 'default#image',
iconImageHref: '/maps/doc/jsapi/2.1/examples/images/myIcon.gif',
iconImageSize: [30, 42],
iconImageOffset: [-3, -42]
});