我正在尝试将mapquest地图添加到我的Flash应用程序中,但它只发布了一个空白的swf。我已经导入了最新的mapquest SWC文件,我有一个密钥,并且我使用了mapquest网站上的代码:
import flash.display.Sprite;
import flash.display.StageScaleMode;
import com.mapquest.tilemap.*;
//turn scaling off
this.stage.scaleMode = StageScaleMode.NO_SCALE;
// create a new TileMap object, passing your platform key
var map:TileMap = new TileMap("MY KEY HERE");
//set the size of the map
map.size = new Size(600, 450);
//add the map to the sprite.
addChild(map);
我哪里错了?