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

http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 27 lines · 10 code · 2 blank · 15 comment · 0 complexity · 2820e49fca489616050abfea65c0447c 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. /**
  12. This class will simply retuns same LatLng as Coordinates.
  13. * The <code>param</code> should have wkid property. Any Geographic Coordinate Systems (eg. WGS84(4326)) can
  14. * use this class As-Is.
  15. * <br/>Note:<b> This class does not support datum transformation</b>.
  16. */
  17. public class Geographic extends SpatialReference
  18. {
  19. public function Geographic(params:Object)
  20. {
  21. //TODO: implement function
  22. super(params);
  23. }
  24. }
  25. }