com.google.gwt.maps.client.layers
Class FusionTablesQuery

java.lang.Object
  extended by com.google.gwt.core.client.JavaScriptObject
      extended by com.google.gwt.maps.client.layers.FusionTablesQuery

public class FusionTablesQuery
extends JavaScriptObject

Specifies the data to retrieve from a Fusion Tables.

See FusionTablesQuery API Doc


Constructor Summary
protected FusionTablesQuery()
          use newInstance();
 
Method Summary
 String getFrom()
          gets The ID of the Fusion Tables table to display.
 int getLimit()
          Get the limit on the number of results returned by the query.
 int getOffset()
          Get the offset into the sorted results.
 String getOrderBy()
          Get the offset into the sorted results.
 String getSelect()
          gets A column, containing geographic features to be displayed on the map.
 String getWhere()
          gets The SQL predicate to be applied to the layer.
static FusionTablesQuery newInstance()
          Specifies the data to retrieve from a Fusion Tables.
 void setFrom(String from)
          setsThe ID of the Fusion Tables table to display.
 void setLimit(int limit)
          Limit on the number of results returned by the query.
 void setOffset(int offset)
          Offset into the sorted results.
 void setOrderBy(String orderBy)
          The method by which to sort the results.
 void setSelect(String select)
          sets A column, containing geographic features to be displayed on the map.
 void setWhere(String where)
          sets The SQL predicate to be applied to the layer.
 
Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createFunction, createObject, equals, hashCode, toSource, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FusionTablesQuery

protected FusionTablesQuery()
use newInstance();

Method Detail

newInstance

public static final FusionTablesQuery newInstance()
Specifies the data to retrieve from a Fusion Tables.

Returns:
FusionTablesQuery

setFrom

public final void setFrom(String from)
setsThe ID of the Fusion Tables table to display. This ID can be found in the tables URL, as the value of the dsrcid parameter.

Parameters:
from -

getFrom

public final String getFrom()
gets The ID of the Fusion Tables table to display. This ID can be found in the tables URL, as the value of the dsrcid parameter.


setLimit

public final void setLimit(int limit)
Limit on the number of results returned by the query.

Parameters:
limit -

getLimit

public final int getLimit()
Get the limit on the number of results returned by the query.


setOffset

public final void setOffset(int offset)
Offset into the sorted results.

Parameters:
offset -

getOffset

public final int getOffset()
Get the offset into the sorted results.


setOrderBy

public final void setOrderBy(String orderBy)
The method by which to sort the results. Accepts either of:

Parameters:
orderBy -

getOrderBy

public final String getOrderBy()
Get the offset into the sorted results.


setSelect

public final void setSelect(String select)
sets A column, containing geographic features to be displayed on the map. See Fusion Table Setup in the Maps API documentation for information about valid columns.

Parameters:
select -

getSelect

public final String getSelect()
gets A column, containing geographic features to be displayed on the map. See Fusion Table Setup in the Maps API documentation for information about valid columns.


setWhere

public final void setWhere(String where)
sets The SQL predicate to be applied to the layer.

Parameters:
where -

getWhere

public final String getWhere()
gets The SQL predicate to be applied to the layer.



Copyright © 2011-2013 GWT Maps API V3. All Rights Reserved.