-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchResult.as
52 lines (36 loc) · 1.19 KB
/
SearchResult.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
48
49
50
51
52
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010 ESRI
//
// All rights reserved under the copyright laws of the United States.
// You may freely redistribute and use this software, with or
// without modification, provided you include the original copyright
// and use restrictions. See use restrictions in the file:
// <install location>/License.txt
//
////////////////////////////////////////////////////////////////////////////////
package widgets.eSearch
{
import com.esri.ags.Graphic;
import com.esri.ags.geometry.MapPoint;
import flash.events.EventDispatcher;
[Bindable]
[RemoteClass(alias="widgets.eSearch.SearchResult")]
public class SearchResult extends EventDispatcher
{
public var title:String;
public var icon:String;
public var content:String;
public var zoompercent:Number;
public var zoomscale:Number;
public var point:MapPoint;
public var links:Array = [];
public var graphic:Graphic;
public var selected:Boolean;
public var oid:Number;
public var multi:String;
public var relateicon:String;
public var relates:Array;
public var relatetooltip:String;
}
}