Uses of Class
ilog.views.maps.datasource.IlvMapDataSource

Packages that use IlvMapDataSource
ilog.cpl.graph.background Contains the API that is available for making use of backgrounds (georeferenced or not ) within JViews TGO. 
ilog.views.maps This package contains the base classes to write map applications. 
ilog.views.maps.beans Provides useful beans for creating map applications. 
ilog.views.maps.datasource Provides predefined data sources. 
ilog.views.maps.format This package provides interfaces and classes for dealing with map formats. 
ilog.views.maps.format.dxf Provides classes to import and georeference DXF files. 
ilog.views.maps.format.kml This package contains classes that you can use to read KML files. 
ilog.views.maps.format.svg This package contains classes that you can use to read SVG files. 
ilog.views.maps.format.wms This package contains classes that you can use to read images from OpenGIS-compliant servers (Web Map Servers). 
ilog.views.maps.raster.datasource Provides classes for raster data sources. 
ilog.views.maps.tiling Specific classes for managing load-on-demand tiles for data sources and feature iterator. 
 

Uses of IlvMapDataSource in ilog.cpl.graph.background
 

Methods in ilog.cpl.graph.background that return IlvMapDataSource
 IlvMapDataSource IlpImageBackground.createMapDataSource(IlpViewsView view)
          Creates an ilog.views.maps.datasource.IlvMapDataSource that can handle the supported raster formats.
 IlvMapDataSource IlpMapDataSourceBackground.createMapDataSource(IlpViewsView view)
          Should create the appropriate IlvMapDataSource implementation for the specified URL defined for this background.
 IlvMapDataSource IlpShapeBackground.createMapDataSource(IlpViewsView view)
          Creates an ilog.views.maps.datasource.IlvTiledShapeDataSource if load-on-demand is enabled or an ilog.views.maps.datasource.IlvShapeDataSource otherwise.
 IlvMapDataSource IlpMIDMIFBackground.createMapDataSource(IlpViewsView view)
          Returns an ilog.views.maps.datasource.IlvMIDMIFDataSource.
 IlvMapDataSource IlpMapDataSourceBackground.getMapDataSource()
          Returns the IlvMapDataSource being used by this background.
 IlvMapDataSource IlpAbstractMapDataSourceBackground.getMapDataSource()
          Implementation of the IlpMapDataSourceBackground.
 

Uses of IlvMapDataSource in ilog.views.maps
 

Constructors in ilog.views.maps with parameters of type IlvMapDataSource
IlvMapLayerStyleChangeListener(IlvMapDataSource ds, IlvMapLayerStyleControl computation)
          Creates a listener that will reload the image when some styling parameter or a named property of the data source manager change.
 

Uses of IlvMapDataSource in ilog.views.maps.beans
 

Methods in ilog.views.maps.beans that return IlvMapDataSource
 IlvMapDataSource IlvMapLayer.getDataSource()
          Returns the data source associated with this layer.
 

Methods in ilog.views.maps.beans with parameters of type IlvMapDataSource
 void IlvMapLayer.removeDataSource(IlvMapDataSource ndataSource)
          Removes the data source associated with this layer.
 void IlvMapLayer.setDataSource(IlvMapDataSource source)
          Sets the data source for this layer.
 

Uses of IlvMapDataSource in ilog.views.maps.datasource
 

Subclasses of IlvMapDataSource in ilog.views.maps.datasource
 class IlvDefaultMapDataSource
          A default Maps data source that uses a IlvMapLoader to load the map features.
 class IlvGraphicLayerDataSource
          Creates a datasource based on a dynamic vector of IlvGraphic objects.
 class IlvHierarchicalDataSource
          A data source that sorts graphic objects into layers according to their attributes.
 class IlvMIDMIFDataSource
          A data source to read MapInfo MID/MIF files.
 class IlvPolylineMergerDataSource
          This class features a utility that merges several polylines into a single polyline.
 class IlvPolylineSimplifierDataSource
          IlvPolylineSimplifierDataSource features a utility that simplifies polygons and polylines through the use of an IlvPolygonSimplifyingEngine.
 class IlvSDODataSource
          IlvSDODataSource represents a data source used to read from an Oracle SDO database.
 class IlvShapeDataSource
          A data source specialized on reading ESRI/Shape files.
 class IlvSplitDataSource
          This data source sorts all the graphical objects stored in a specific map layer.
 class IlvTigerDataSource
          A data source to read TIGER/Line files.
 class IlvTiledShapeDataSource
          A data source specialized on reading tiled ESRI/Shape files.
 

Methods in ilog.views.maps.datasource that return IlvMapDataSource
 IlvMapDataSource DataSourceEvent.getDataSource()
          Returns the source of the event as a IlvMapDataSource
 IlvMapDataSource IlvMapDataSourceNode.getDataSource()
          Returns the data source associated with this node, or null.
 IlvMapDataSource IlvMapDataSourceModel.getDataSource(String name)
          Finds a data source by its name.
 IlvMapDataSource[] IlvMapDataSourceModel.getDataSources()
          Returns all the data sources known by this IlvMapDataSourceModel.
 

Methods in ilog.views.maps.datasource with parameters of type IlvMapDataSource
 void IlvMapDataSourceModel.insert(IlvMapDataSource source)
          Inserts a data source in this model.
 void IlvMapDataSourceModel.remove(IlvMapDataSource source)
          Removes a datasource from its parent.
 

Constructors in ilog.views.maps.datasource with parameters of type IlvMapDataSource
DataSourceEvent(IlvMapDataSource dataSource)
          Creates a data source event.
IlvPolylineMergerDataSource(IlvMapDataSource dataSource)
          Creates a IlvPolylineMergerDataSource on a IlvMapDataSource passed as parameter
IlvPolylineMergerDataSource(IlvMapDataSource dataSource, IlvPolylineMergerDataSource.IlvGraphicIdentifier identifier)
          Creates a IlvPolylineMergerDataSource on a IlvMapDataSource passed as parameter, with specified IlvGraphicIdentifier
IlvPolylineSimplifierDataSource(IlvMapDataSource dataSource)
          Creates an IlvPolylineSimplifierDataSource instance from an IlvMapDataSource object passed as a parameter.
 

Uses of IlvMapDataSource in ilog.views.maps.format
 

Subclasses of IlvMapDataSource in ilog.views.maps.format
 class IlvDefaultTilableDataSource
          An abstract base class for data sources capable of creating a hierarchical set of tiled layers.
 

Uses of IlvMapDataSource in ilog.views.maps.format.dxf
 

Subclasses of IlvMapDataSource in ilog.views.maps.format.dxf
 class IlvDXFDataSource
          A data source to read DXF and KMZ files.
 

Uses of IlvMapDataSource in ilog.views.maps.format.kml
 

Subclasses of IlvMapDataSource in ilog.views.maps.format.kml
 class IlvKMLDataSource
          A data source to read KML and KMZ files.
 

Uses of IlvMapDataSource in ilog.views.maps.format.svg
 

Subclasses of IlvMapDataSource in ilog.views.maps.format.svg
 class IlvSVGDataSource
          IlvSVGDataSource represents a data source used read SVG files.
 

Uses of IlvMapDataSource in ilog.views.maps.format.wms
 

Subclasses of IlvMapDataSource in ilog.views.maps.format.wms
 class IlvWMSDataSource
          A data source for reading a URL that points to an OpenGIS-compliant map server.
 

Uses of IlvMapDataSource in ilog.views.maps.raster.datasource
 

Subclasses of IlvMapDataSource in ilog.views.maps.raster.datasource
 class IlvTiledRasterDataSource
          IlvTiledRasterDataSource is used to manage any raster reader data.
 

Methods in ilog.views.maps.raster.datasource that return IlvMapDataSource
static IlvMapDataSource IlvRasterDataSourceFactory.buildImageDataSource(IlvManager manager, IlvRasterAbstractReader reader, IlvThreadMonitoringData monitorInfo)
          Creates a non tiled image data source.
 

Uses of IlvMapDataSource in ilog.views.maps.tiling
 

Subclasses of IlvMapDataSource in ilog.views.maps.tiling
 class IlvTilableDataSource
          IlvTilableDataSource is an abstract base class for data sources capable of creating tiled layers.
 



Copyright © 1996-2007 ILOG S.A. All rights reserved.   Documentation homepage.   . All Rights Reserved.