0

我正在尝试在我的地图中添加一些 InfoSymbols,这就是我所做的:

<esri:InfoSymbol id="infoSymbol1">
        <esri:infoRenderer>
            <fx:Component>
                <s:DataRenderer>
                    <s:layout>
                        <s:VerticalLayout/>
                    </s:layout>
                    <s:Image id="eventImg" source="{imgSource}"/>
                    <s:Label id="eventName" text="{eventTitle}"/>
                </s:DataRenderer>
            </fx:Component>
        </esri:infoRenderer>
    </esri:InfoSymbol>

我正在从传递给视图的数据中填充一个列表,(该应用程序是一个基于移动视图的应用程序)

public function fillDataGrid():void {
            for each(var object:Object in data) {
                initDG.addItem(object);
                drawEvent(object);
            }
        }

最后,我将 InfoSymbols 添加到 drawEvent(objt) 方法中:

private function drawEvent(object:Object):void{
            var myGraphicText:Graphic = new Graphic(new WebMercatorMapPoint(
                object.local.longitude, object.local.latitude));

            var event:InfoSymbol = new InfoSymbol();
            imgSource = "http://192.168.0.22:3000" + object.logo_thumb_url;
            eventTitle = object.name;
            event = infoSymbol1;

            myGraphicText.symbol = event;
            myGraphicsLayer.add(myGraphicText);             
        }

当然imgSource并且eventTitle是可绑定的,问题是我得到

说明资源路径位置类型 1120:未定义属性 eventTitle 的访问。

和 imgSource 的相同消息,

任何帮助将非常感激 !!

4

1 回答 1

0

您需要在为其赋值之前声明 eventTitle。

var eventTitle:String = object.name;
于 2013-10-17T19:49:13.727 回答