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

UMap AS3 test

Get Adobe Flash player
by mash 19 Nov 2009
/**
 * Copyright mash ( http://wonderfl.net/user/mash )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/xT9w
 */

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 );
        }
    }
}