forked from: UMap AS3 test
/**
* 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 );
}
}
}