|
From: Andreas W. <an...@us...> - 2006-02-10 14:39:15
|
Update of /cvsroot/magicmap//magicmapserver/src/net/sf/magicmap/server/dto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22268/src/net/sf/magicmap/server/dto Modified Files: MapDTO.java Log Message: Anpassung an WGS84 Index: MapDTO.java =================================================================== RCS file: /cvsroot/magicmap//magicmapserver/src/net/sf/magicmap/server/dto/MapDTO.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MapDTO.java 11 May 2005 10:45:05 -0000 1.2 --- MapDTO.java 10 Feb 2006 14:38:56 -0000 1.3 *************** *** 20,23 **** --- 20,40 ---- private Integer imageHeight; private Integer imageWidth; + + // Geokoordinaten in Millisekunden + private Integer geoPoint1X; + private Integer geoPoint1Y; + private Integer geoPoint1Lat; + private Integer geoPoint1Long; + private Integer geoPoint1Alt; + private Integer geoPoint2X; + private Integer geoPoint2Y; + private Integer geoPoint2Lat; + private Integer geoPoint2Long; + private Integer geoPoint2Alt; + private Integer geoPoint3X; + private Integer geoPoint3Y; + private Integer geoPoint3Lat; + private Integer geoPoint3Long; + private Integer geoPoint3Alt; public MapDTO() {} *************** *** 42,45 **** --- 59,122 ---- return this.imageWidth; } + + public Integer getGeoPoint1X(){ + return this.geoPoint1X; + } + + public Integer getGeoPoint1Y(){ + return this.geoPoint1Y; + } + + public Integer getGeoPoint1Lat(){ + return this.geoPoint1Lat; + } + + public Integer getGeoPoint1Long(){ + return this.geoPoint1Long; + } + + public Integer getGeoPoint1Alt(){ + return this.geoPoint1Alt; + } + public Integer getGeoPoint2X(){ + return this.geoPoint1X; + } + + public Integer getGeoPoint2Y(){ + return this.geoPoint1Y; + } + + public Integer getGeoPoint2Lat(){ + return this.geoPoint1Lat; + } + + public Integer getGeoPoint2Long(){ + return this.geoPoint1Long; + } + + public Integer getGeoPoint2Alt(){ + return this.geoPoint1Alt; + } + + public Integer getGeoPoint3X(){ + return this.geoPoint1X; + } + + public Integer getGeoPoint3Y(){ + return this.geoPoint1Y; + } + + public Integer getGeoPoint3Lat(){ + return this.geoPoint1Lat; + } + + public Integer getGeoPoint3Long(){ + return this.geoPoint1Long; + } + + public Integer getGeoPoint3Alt(){ + return this.geoPoint1Alt; + } + /** *************** *** 77,80 **** this.name = name; } ! } \ No newline at end of file --- 154,260 ---- this.name = name; } ! ! /** ! * @param geoPoint1X The X Coordinate for the first Georeferencepoint on the map ! */ ! public void setGeoPoint1X(Integer geoPoint1X){ ! this.geoPoint1X = geoPoint1X; ! } ! ! /** ! * @param geoPoint1Y The Y Coordinate for the first Georeferencepoint on the map ! */ ! public void setGeoPoint1Y(Integer geoPoint1Y){ ! this.geoPoint1Y = geoPoint1Y; ! } ! ! /** ! * @param geoPoint1Lat The Latitude for the first Georeferencepoint on the map ! */ ! public void setGeoPoint1Lat(Integer geoPoint1Lat){ ! this.geoPoint1Lat = geoPoint1Lat; ! } ! ! /** ! * @param geoPoint1Long The Longitude for the first Georeferencepoint on the map ! */ ! public void setGeoPoint1Long(Integer geoPoint1Long){ ! this.geoPoint1Long = geoPoint1Long; ! } ! ! /** ! * @param geoPoint1Alt The Altitude for the first Georeferencepoint on the map ! */ ! public void setGeoPoint1Alt(Integer geoPoint1Alt){ ! this.geoPoint1Alt = geoPoint1Alt; ! } ! ! /** ! * @param geoPoint2X The X Coordinate for the second Georeferencepoint on the map ! */ ! public void setGeoPoint2X(Integer geoPoint2X){ ! this.geoPoint2X = geoPoint2X; ! } ! ! /** ! * @param geoPoint2Y The Y Coordinate for the second Georeferencepoint on the map ! */ ! public void setGeoPoint2Y(Integer geoPoint2Y){ ! this.geoPoint2Y = geoPoint2Y; ! } ! ! /** ! * @param geoPoint2Lat The Latitude for the second Georeferencepoint on the map ! */ ! public void setGeoPoint2Lat(Integer geoPoint2Lat){ ! this.geoPoint2Lat = geoPoint2Lat; ! } ! ! /** ! * @param geoPoint2Long The Longitude for the second Georeferencepoint on the map ! */ ! public void setGeoPoint2Long(Integer geoPoint2Long){ ! this.geoPoint2Long = geoPoint2Long; ! } ! /** ! * @param geoPoint2Alt The Altitude for the second Georeferencepoint on the map ! */ ! public void setGeoPoint2Alt(Integer geoPoint2Alt){ ! this.geoPoint2Alt = geoPoint2Alt; ! } ! ! /** ! * @param geoPoint3X The X Coordinate for the third Georeferencepoint on the map ! */ ! public void setGeoPoint3X(Integer geoPoint3X){ ! this.geoPoint3X = geoPoint3X; ! } ! ! /** ! * @param geoPoint3Y The Y Coordinate for the third Georeferencepoint on the map ! */ ! public void setGeoPoint3Y(Integer geoPoint3Y){ ! this.geoPoint3Y = geoPoint3Y; ! } ! ! /** ! * @param geoPoint3Lat The Latitude for the third Georeferencepoint on the map ! */ ! public void setGeoPoint3Lat(Integer geoPoint3Lat){ ! this.geoPoint3Lat = geoPoint3Lat; ! } ! ! /** ! * @param geoPoint3Long The Longitude for the third Georeferencepoint on the map ! */ ! public void setGeoPoint3Long(Integer geoPoint3Long){ ! this.geoPoint3Long = geoPoint3Long; ! } ! /** ! * @param geoPoint3Alt The Altitude for the third Georeferencepoint on the map ! */ ! public void setGeoPoint3Alt(Integer geoPoint3Alt){ ! this.geoPoint3Alt = geoPoint3Alt; ! } ! } \ No newline at end of file |