Hi there,
is there way to dynamically resize the Yahoo Map?
There result I hacked so far does not seam to work:
<yahoo:YahooMapService
id="myAS2Map"
width="100%" height="100%"
UUID="{UNIQUEID}" swfDomId="{SWFDOMID}" apiId="{YAHOOAPIKEY}" mapURL="{MAPSWF}"
scaleContent="false"
/>
<mx:HSlider
id="widthSlider"
right="15" bottom="25"
minimum="1024" maximum="1600"
liveDragging="true"
change="{
myAS2Map.width = widthSlider.value}"
/>
<mx:VSlider
id="heightSlider"
right="15" bottom="40"
minimum="768" maximum="1200"
liveDragging="true"
change="{myAS2Map.height = heightSlider.value}"
/>
Thanks,
masu