<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    xmlns:components="net.odoe.main.views.components.*"
    xmlns:swiz="http://swiz.swizframework.org" viewSourceURL="srcview/index.html">
    <mx:Script>
        <![CDATA[
            import net.odoe.main.config.Beans;
            import mx.logging.LogEventLevel;
        ]]>
    </mx:Script>
    
    <swiz:SwizConfig
        strict="true"
        mediateBubbledEvents="true"
        eventPackages="net.odoe.main.events"
        viewPackages="net.odoe.main.views"
        beanLoaders="{ [ Beans ] }"
        logEventLevel="{ LogEventLevel.ALL }"  />
        
    <mx:TraceTarget id="logTarget" 
        includeDate="true" 
        includeTime="true" 
        includeCategory="true" 
        includeLevel="true" />
        
    <components:MapView id="mapView" />
    
</mx:Application>