/src/com/google/maps/extras/arcgislink/QueryParameters.as
http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 36 lines · 18 code · 2 blank · 16 comment · 1 complexity · e6c6abcd83c4a38ef351212978246e52 MD5 · raw file
- /*
- * ArcGIS for Google Maps Flash API
- *
- * License http://www.apache.org/licenses/LICENSE-2.0
- */
- /**
- * @author nianwei at gmail dot com
- */
- package com.google.maps.extras.arcgislink
- {
- /**
- * Parameters for query operation
- * Note in/
- */
- public class QueryParameters
- {
- /**
- * LatLng[], Marker[], Polyline[], Polygon[]
- */
- public var geometry:Array;
- public var spatialRelationship:String= ArcGISConstants.SPATIAL_REL_INTERSECTS;
- public var where:String;
- public var text:String;
- public var outFields:Array;
- public var returnGeometry:Boolean;
- //public var outSpatialReference:SpatialReference;
-
- public function QueryParameters(params:*=null)
- {
- if (params){
- ArcGISUtil.augmentObject(params,this,true);
- }
- }
-
- }
- }