PageRenderTime 32ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://gmaps-utility-library-flash.googlecode.com/
ActionScript | 26 lines | 11 code | 3 blank | 12 comment | 0 complexity | 99159851fce4fbe153d731f1cdcab211 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. {
  11. import com.google.maps.overlays.TileLayerOverlay;
  12. /**
  13. * Tile layer as overlay. tile layer must be loaded first.
  14. */
  15. public class ArcGISTileLayerOverlay extends TileLayerOverlay
  16. {
  17. public function ArcGISTileLayerOverlay(tileLayer:ArcGISTileLayer)
  18. {
  19. //arg0:ITileLayer, arg1:int=256, arg2:IProjection=null
  20. super(tileLayer, tileLayer.getProjection().getTileSize(), tileLayer.getProjection());
  21. }
  22. }
  23. }