Follow us on GitHub

com.google.gwt.maps.client
Enum LoadApi.LoadLibrary

java.lang.Object
  extended by java.lang.Enum<LoadApi.LoadLibrary>
      extended by com.google.gwt.maps.client.LoadApi.LoadLibrary
All Implemented Interfaces:
Serializable, Comparable<LoadApi.LoadLibrary>
Enclosing class:
LoadApi

public static enum LoadApi.LoadLibrary
extends Enum<LoadApi.LoadLibrary>

Libraries not loaded by default

See Libraries API Doc


Enum Constant Summary
ADSENSE
          allows your Maps API application to include context-sensitive text ads, allowing you to share in ad revenue for ads shown to your users.
DRAWING
          provides a graphical interface for users to draw polygons, rectangles, polylines, circles, and markers on the map.
GEOMETRY
          geometry includes utility functions for calculating scalar geometric values (such as distance and area) on the the surface of the earth.
PANORAMIO
          panoramio contains functionality for adding Panoramio photo layers to your Maps API application.
PLACES
          places enables your application to search for businesses, geographic locations, and points of interest near a given location, or as a user types.
WEATHER
          weather contains functionality for adding meterological layers to your Maps API application.
 
Method Summary
static LoadApi.LoadLibrary fromValue(String value)
           
 String toString()
           
 String value()
           
static LoadApi.LoadLibrary valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LoadApi.LoadLibrary[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADSENSE

public static final LoadApi.LoadLibrary ADSENSE
allows your Maps API application to include context-sensitive text ads, allowing you to share in ad revenue for ads shown to your users. Consult the AdSense Library documentation for more information.


DRAWING

public static final LoadApi.LoadLibrary DRAWING
provides a graphical interface for users to draw polygons, rectangles, polylines, circles, and markers on the map. Consult the Drawing Library documentation for more information.


GEOMETRY

public static final LoadApi.LoadLibrary GEOMETRY
geometry includes utility functions for calculating scalar geometric values (such as distance and area) on the the surface of the earth. Consult the Geometry Library documentation for more information.


PANORAMIO

public static final LoadApi.LoadLibrary PANORAMIO
panoramio contains functionality for adding Panoramio photo layers to your Maps API application. Consult the Panoramio Layers documentation for more information.


WEATHER

public static final LoadApi.LoadLibrary WEATHER
weather contains functionality for adding meterological layers to your Maps API application. Consult the Weather Layers documentation for more information.


PLACES

public static final LoadApi.LoadLibrary PLACES
places enables your application to search for businesses, geographic locations, and points of interest near a given location, or as a user types. Consult the Places Library documentation for more information.

Method Detail

values

public static LoadApi.LoadLibrary[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (LoadApi.LoadLibrary c : LoadApi.LoadLibrary.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LoadApi.LoadLibrary valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static LoadApi.LoadLibrary fromValue(String value)

toString

public String toString()
Overrides:
toString in class Enum<LoadApi.LoadLibrary>


Follow us on GitHub

Copyright © 2011-2012 Gone Vertical LLC. All Rights Reserved.