/src/com/google/maps/extras/arcgislink/LayerOptions.as
ActionScript | 29 lines | 11 code | 4 blank | 14 comment | 1 complexity | 67afb137cd120720f01ef7edda78c294 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.*;
-
- /**
- * Options to construct an layer object
- */
- public class LayerOptions {
- /**
- * Indicates whether the layer should load meta data in constrcutor. default is true
- */
- public var initLoad:Boolean=true;
-
- public function LayerOptions(opts:*) {
- if (opts) {
- ArcGISUtil.augmentObject(opts, this, true);
- }
- }
-
- }
- }