/src/com/google/maps/extras/arcgislink/Geographic.as
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 10package com.google.maps.extras.arcgislink 11{ 12 /** 13 This class will simply retuns same LatLng as Coordinates. 14 * The <code>param</code> should have wkid property. Any Geographic Coordinate Systems (eg. WGS84(4326)) can 15 * use this class As-Is. 16 * <br/>Note:<b> This class does not support datum transformation</b>. 17 */ 18 public class Geographic extends SpatialReference 19 { 20 public function Geographic(params:Object) 21 { 22 //TODO: implement function 23 super(params); 24 } 25 26 } 27}