/src/com/google/maps/extras/arcgislink/IdentifyParameters.as
ActionScript | 47 lines | 24 code | 3 blank | 20 comment | 1 complexity | 002b660cd062ac9c5f0cd8a0eea3dfbc MD5 | raw file
1/* 2 * ArcGIS for Google Maps Flash API 3 * 4 * License http://www.apache.org/licenses/LICENSE-2.0 5 */ 6 /** 7 * @author nianwei at gmail dot com 8 */ 9package com.google.maps.extras.arcgislink 10{ 11 import com.google.maps.LatLngBounds; 12 13 public class IdentifyParameters 14 { 15 public var dpi:int; 16 public var f:String; 17 public var geometry:*; 18 //public var geometryType:String; 19 /** 20 * height of image, ignored if imageDisplay is specified; 21 */ 22 public var height:int; 23 /** 24 * The screen image display parameters (width, height and DPI) of the map being currently viewed. You can also specifiy width, height, dip separately. 25 */ 26 //public var imageDisplay:String; 27 public var width:int; 28 /** 29 * top|visible|all 30 */ 31 public var layerOption:String; 32 public var layerIds:Array; 33 //public var mapExtent:*; 34 public var bounds:LatLngBounds; 35 public var returnGeometry:Boolean; 36 public var sr:SpatialReference; 37 public var tolerance:int = 5; 38 39 public function IdentifyParameters(params:*=null) 40 { 41 if (params){ 42 ArcGISUtil.augmentObject(params,this,true); 43 } 44 } 45 46 } 47}