public static enum GoogleMapLib.MapOptions extends java.lang.Enum<GoogleMapLib.MapOptions>
| Enum Constant and Description |
|---|
CONTINUOUS_ZOOM
Option for continue non-discrete zoom
|
DOUBLE_CLICK_ZOOM
Option for double click to zoom behavior
|
DRAGGING
Option for dragging behavior, enabled by default
|
GOOGLE_BAR
Option for Google search bar on map
|
INFO_WINDOW
Allows info windows to be opened, enabled by default
|
PINCH_TO_ZOOM
Option for pinch to zoom (mobile devices)
|
SCROLL_WHEEL_ZOOM
Option for scroll wheel zoom
|
| Modifier and Type | Method and Description |
|---|---|
static GoogleMapLib.MapOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoogleMapLib.MapOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoogleMapLib.MapOptions DRAGGING
public static final GoogleMapLib.MapOptions INFO_WINDOW
public static final GoogleMapLib.MapOptions DOUBLE_CLICK_ZOOM
public static final GoogleMapLib.MapOptions CONTINUOUS_ZOOM
public static final GoogleMapLib.MapOptions GOOGLE_BAR
public static final GoogleMapLib.MapOptions SCROLL_WHEEL_ZOOM
public static final GoogleMapLib.MapOptions PINCH_TO_ZOOM
public static GoogleMapLib.MapOptions[] values()
for (GoogleMapLib.MapOptions c : GoogleMapLib.MapOptions.values()) System.out.println(c);
public static GoogleMapLib.MapOptions valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null