I don't understand the last sentense in the following flex API: map.lods = tiledLayer.tileInfo.lods;
lods is a variable? tileInfo is a property of the object tileLayer, right? Then how come a property with a ".lod"? What does it mean? A property itself should be a variable, I don't understand why it can be followed by another variable ".lod"? Thanks a lot!
*************************Flex API ****************************
private function layerShowHandler(event:FlexEvent):void
{
// update the LODs/zoomslider to use/show the levels for the selected base map
var tiledLayer:TiledMapServiceLayer = event.target as TiledMapServiceLayer;
map.lods = tiledLayer.tileInfo.lods;
}