/src/com/google/maps/extras/arcgislink/LayerOptions.as
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 10package com.google.maps.extras.arcgislink { 11 import com.google.maps.extras.arcgislink.*; 12 13 /** 14 * Options to construct an layer object 15 */ 16 public class LayerOptions { 17 /** 18 * Indicates whether the layer should load meta data in constrcutor. default is true 19 */ 20 public var initLoad:Boolean=true; 21 22 public function LayerOptions(opts:*) { 23 if (opts) { 24 ArcGISUtil.augmentObject(opts, this, true); 25 } 26 } 27 28 } 29}