/src/com/google/maps/extras/arcgislink/MapServiceOptions.as
ActionScript | 26 lines | 13 code | 2 blank | 11 comment | 1 complexity | d7eb4ce8e20653d6e4fb050ae928f92a 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
- { import com.google.maps.extras.arcgislink.*;
- /**
- * used to set up some init options for an ArcGISMapService
- */
- public class MapServiceOptions
- {
- public var name:String;
- public function MapServiceOptions(opts:*=null)
- {
- if (opts){
- ArcGISUtil.augmentObject(opts,this);
- }
- }
-
- }
- }