forked from shaning/Identify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IdResult.as
47 lines (31 loc) · 972 Bytes
/
IdResult.as
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
////////////////////////////////////////////////////////////////////////////////
//
// Delevoped by Robert Scheitlin
//
////////////////////////////////////////////////////////////////////////////////
package widgets.Identify
{
import com.esri.ags.Graphic;
import com.esri.ags.geometry.Geometry;
import com.esri.ags.geometry.MapPoint;
import flash.events.EventDispatcher;
[Bindable]
[RemoteClass(alias="widgets.Identify.IdentifyResult")]
public class IdResult extends EventDispatcher
{
public var title:String;
public var icon:String;
public var content:String;
public var rsltcontent:String;
public var point:MapPoint;
public var links:Array = [];
public var zoom2msg:String;
public var removemsg:String;
public var zoomScale:Number;
public var geometry:Geometry;
public var forceScale:Boolean;
public var graphic:Graphic;
public var gid:Number;
public var maporder:Number;
}
}