PageRenderTime 31ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/src/com/google/maps/extras/arcgislink/IdentifyParameters.as

http://gmaps-utility-library-flash.googlecode.com/
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. */
  9. package com.google.maps.extras.arcgislink
  10. {
  11. import com.google.maps.LatLngBounds;
  12. public class IdentifyParameters
  13. {
  14. public var dpi:int;
  15. public var f:String;
  16. public var geometry:*;
  17. //public var geometryType:String;
  18. /**
  19. * height of image, ignored if imageDisplay is specified;
  20. */
  21. public var height:int;
  22. /**
  23. * The screen image display parameters (width, height and DPI) of the map being currently viewed. You can also specifiy width, height, dip separately.
  24. */
  25. //public var imageDisplay:String;
  26. public var width:int;
  27. /**
  28. * top|visible|all
  29. */
  30. public var layerOption:String;
  31. public var layerIds:Array;
  32. //public var mapExtent:*;
  33. public var bounds:LatLngBounds;
  34. public var returnGeometry:Boolean;
  35. public var sr:SpatialReference;
  36. public var tolerance:int = 5;
  37. public function IdentifyParameters(params:*=null)
  38. {
  39. if (params){
  40. ArcGISUtil.augmentObject(params,this,true);
  41. }
  42. }
  43. }
  44. }