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

http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 26 lines · 13 code · 2 blank · 11 comment · 1 complexity · d7eb4ce8e20653d6e4fb050ae928f92a 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. { import com.google.maps.extras.arcgislink.*;
  11. /**
  12. * used to set up some init options for an ArcGISMapService
  13. */
  14. public class MapServiceOptions
  15. {
  16. public var name:String;
  17. public function MapServiceOptions(opts:*=null)
  18. {
  19. if (opts){
  20. ArcGISUtil.augmentObject(opts,this);
  21. }
  22. }
  23. }
  24. }