package map
{
import com.google.maps.overlays.Polygon;
import com.google.maps.overlays.PolygonOptions;
public class CustomPolygon extends Polygon
{
private var _obj:Object;
public function CustomPolygon(arg0:Array, arg1:PolygonOptions=null)
{
super(arg0, arg1);
}
public function get obj():Object {
return this._obj;
}
public function set obj(v:Object):void {
this._obj = v;
}
}
}
2011/8/4 Thiago Cordeiro <[email protected]>
> package map
> {
> import com.google.maps.overlays.Polygon;
> import com.google.maps.overlays.PolygonOptions;
>
> public class CustomPolygon extends Polygon
> {
>
> private var _obj:Object;
>
> public function CustomPolygon(arg0:Array, arg1:PolygonOptions=null)
> {
> super(arg0, arg1);
> }
>
> public function get obj():Object {
> return this._obj;
> }
>
> public function set obj(v:Object):void {
> this._obj = v;
> }
> }
> }
>
--
You received this message because you are subscribed to the Google Groups
"Google Maps API For Flash" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-maps-api-for-flash?hl=en.