PageRenderTime 21ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://gmaps-utility-library-flash.googlecode.com/
ActionScript | 29 lines | 11 code | 4 blank | 14 comment | 1 complexity | 67afb137cd120720f01ef7edda78c294 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. * Options to construct an layer object
  13. */
  14. public class LayerOptions {
  15. /**
  16. * Indicates whether the layer should load meta data in constrcutor. default is true
  17. */
  18. public var initLoad:Boolean=true;
  19. public function LayerOptions(opts:*) {
  20. if (opts) {
  21. ArcGISUtil.augmentObject(opts, this, true);
  22. }
  23. }
  24. }
  25. }