如何添加谷歌地圖爲Class到main.mxml withiout <maps:Map key="" sensor="" />
谷歌地圖
像在Flash
UPDATE:
,如果我有類
package{
import com.google.maps.Map;
public function myMap extends MovieClip {
var map:Map = new Map();
map.setSize(new Point(300, 300));
this.addChild(map);
}
}
如果我在mxml中使用它
myMap:myMap = new myMap();
addChild(myMap);
返回錯誤
addChild() is not available in this class. Instead, use addElement() or modify the skin, if you have one.
,如果我用這個
var container:UIComponent = new UIComponent();
container.width = 300;
container.height = 300;
addChild(container);
myMap:myMap = new myMap();
container.addChild(myMap);
沒有什麼是不添加
感謝名單
爲什麼你忽略錯誤?使用addElement()。 –