ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
Note: The page was created before Map Suite 10. Map Suite 10.0 organized many classes into new namespaces and assemblies as well as had a few minor breaks in compatibility. The majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code, please check out MapSuite 10 Upgrade Guide.
This class allows you to view TIFF image types.
UnmanagedGeoTiffRasterSource()
This is the constructor the for the class. If you use this constructor then you need to set the required properties manually.
None
This is typically the constructor you want to use for this class. It allows you to pass in the TIFF file you wish to work with. Note that the TIFF file is not accessed or opened until you call the open command of the class.
UnmanagedGeoTiffRasterSource(String,String)
This is the constructor for the class.
This is typically the constructor you want to use for this class. It allows you to pass in the TIFF file you wish to work with and world file belongs to it. Note that the TIFF file is not accessed or opened until you call the open command of the class.
UnmanagedGeoTiffRasterSource(String,RectangleShape)
This is the constructor for the class.
This is typically the constructor you want to use for this class. It allows you to pass in the TIFF file you wish to work with and image extent belongs to it. Note that the TIFF file is not accessed or opened until you call the open command of the class.
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
This virtual method is called from the concreate method GetImageWidth.
This virtual method is called from the concreate method GetImageHeight.
This protected virtual method is called from the concreate public method Open. The open method play an important role as it is responsible for initializing the RasterSource. Most methods on the RasterSource will throw an exception if the state of the RasterSource is not opened. When the map draws each layer it will open the RasterSource as one of its first steps, then after it is finished drawing with that layer it will close it. In this way we are sure to release all resources used by the RasterSource. When implementing this virtual method consider opening files for file based source, connecting to databases in the database based sources and so on. You will get a chance to close these in the Close method of the ImageSource.
This protected virtual method is called from the concreate public method Close. The close method plays an important role in the life cycle of the RasterSource. It may be called after drawing to release any memory and other resources that were allocated since the Open method was called. It is recommended that if you override this method that you take the following things into account. This method may be called multiple times so we suggest you write the so that that a call to a closed FeatureSource is ignored and does not generate an error. We also suggest that in the close you free all resources that have been opened. Remember that the object will not be destroyed but will be re-opened possibly in the near future.
GetImageCore(RectangleShape,Int32,Int32)
This method returns an image based on the worldExtent and image width and height.
This method is responsible for returning the image based on the parameters passed in. As the core version of this method is abstract you will need to override it when creating our own RasterSource.
This method returns the bounding box of the RasterSource.
This method returns the bounding box of the RasterSource.
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
None.
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
N/A
Event Arguments:ClosedRasterSourceEventArgs