com.ontimize.util.gis.client.interfaces
Interface IGisConfigurationParameters

All Known Implementing Classes:
DefaultConfigurationParameters

public interface IGisConfigurationParameters

Interface implemented by the global configuration parameters class


Method Summary
 void addParameter(java.lang.String name, java.lang.Object value)
          Adds a new configuration parameter
 java.lang.Object getAttribute()
          Get the layers configurationa attribute
 java.lang.Object getBoundingBox()
          Get the map viewer default bounding box
 java.lang.Object getCRS()
          Get the Coordinate Reference System value
 java.lang.String getDescription()
          Get the layers configuration description
 java.lang.Object getParameter(java.lang.String name)
          Gets the given configuration parameter value
 java.lang.Object getParameters()
          Gets all the configuration parameter values
 java.lang.String getTitle()
          Get the layers configuration title
 void setAttribute(java.lang.Object attr)
          Set the layers configuration attribute
 void setBoundingBox(java.lang.Object boundingBox)
          Set the default map bounding box for the viewer panel
 void setCRS(java.lang.String crsWkt)
          Set the Coordinate Reference System parameter value
 void setDescription(java.lang.String description)
          Set the layers configuration description
 void setTitle(java.lang.String title)
          Set the layers configuration title
 

Method Detail

setCRS

void setCRS(java.lang.String crsWkt)
Set the Coordinate Reference System parameter value

Parameters:
crsWkt - Coordinate Reference System in Well-Known Text format

getCRS

java.lang.Object getCRS()
Get the Coordinate Reference System value

Returns:
Coordinate Reference System in Well-Known Text format

setBoundingBox

void setBoundingBox(java.lang.Object boundingBox)
Set the default map bounding box for the viewer panel

Parameters:
boundingBox - Default map bounding box

getBoundingBox

java.lang.Object getBoundingBox()
Get the map viewer default bounding box

Returns:
Map default bounding box

setAttribute

void setAttribute(java.lang.Object attr)
Set the layers configuration attribute

Parameters:
attr - Layers configuration attribute

getAttribute

java.lang.Object getAttribute()
Get the layers configurationa attribute

Returns:
Layers configuration attribute

setTitle

void setTitle(java.lang.String title)
Set the layers configuration title

Parameters:
title - Layers configuration title

getTitle

java.lang.String getTitle()
Get the layers configuration title

Returns:
Layers configuration title

setDescription

void setDescription(java.lang.String description)
Set the layers configuration description

Parameters:
description - Layers configuration description

getDescription

java.lang.String getDescription()
Get the layers configuration description

Returns:
Layers configuration description

addParameter

void addParameter(java.lang.String name,
                  java.lang.Object value)
Adds a new configuration parameter

Parameters:
name - Parameter name
value - Parameter value

getParameter

java.lang.Object getParameter(java.lang.String name)
Gets the given configuration parameter value

Parameters:
name - Configuration parameter name
Returns:
Configuration parameter value

getParameters

java.lang.Object getParameters()
Gets all the configuration parameter values

Returns:
Configuration parameters values