root/trunk/as2/lib/com/modestmaps/core/MapPosition.as
| Revision 292, 294 bytes (checked in by migurski, 1 year ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | /* |
| 2 | * $Id$ |
| 3 | */ |
| 4 | |
| 5 | import flash.geom.Point; |
| 6 | import com.modestmaps.core.Coordinate; |
| 7 | |
| 8 | class com.modestmaps.core.MapPosition |
| 9 | { |
| 10 | public var coord:Coordinate; |
| 11 | public var point:Point; |
| 12 | |
| 13 | public function MapPosition(c:Coordinate, p:Point) |
| 14 | { |
| 15 | coord = c; |
| 16 | point = p; |
| 17 | } |
| 18 | } |
Note: See TracBrowser for help on using the browser.
