You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* Copyright(c)--Navinfo--Author:fangzurui--date:2023-10-20 */
-
- #include "Image.h"
- #include <string>
-
- Image::Image() {}
- Image::~Image() {}
-
- void Image::setImageName(std::string imageName) {
- _imageName = imageName;
- }
-
- std::string Image::getImageName() {
- return _imageName;
- }
-
- void Image::setImageType(std::string imageType) {
- _imageType = imageType;
- }
-
- std::string Image::getImageType() {
- return _imageType;
- }
-
- void Image::setImageDate(std::string imageDate) {
- _imageDate = imageDate;
- }
-
- std::string Image::getImageDate() {
- return _imageDate;
- }
-
- void Image::setImageCenterCoord(MapPoint mapPoint) {
- _imageCenterCoord = mapPoint;
- }
-
- MapPoint Image::getImageCenterCoord() {
- return _imageCenterCoord;
- }
-
- void Image::setImagePtr(osg::ref_ptr<TifImageLayer> pTifImage) {
- _pTifImage = pTifImage;
- }
-
- osg::ref_ptr<TifImageLayer> Image::getImagePtr() {
- return _pTifImage;
- }
|