In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: UMap AS3 test

Get Adobe Flash player
by Aranas 23 Oct 2015
/**
 * Copyright Aranas ( http://wonderfl.net/user/Aranas )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/G6x8
 */

// forked from mash's UMap AS3 test
package {
    import flash.display.Sprite;
    import com.afcomponents.umap.core.UMap;
    import com.afcomponents.umap.types.LatLng;
    public class UMapAS3Test extends Sprite{
        public function UMapAS3Test() {
            var umap :UMap = new UMap;
            umap.setSize(465,465);
            umap.setCenter(new LatLng(35,135), 5);
            addChild( umap );
            
            
            
        }
    }
}