public enum MapTypeId extends Enum<MapTypeId>
| Enum Constant and Description |
|---|
HYBRID
This map type displays a transparent layer of major streets on satellite images.
|
ROADMAP
This map type displays a normal street map.
|
SATELLITE
This map type displays satellite images.
|
TERRAIN
This map type displays maps with physical features such as terrain and vegetation.
|
| Modifier and Type | Method and Description |
|---|---|
static MapTypeId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapTypeId HYBRID
public static final MapTypeId ROADMAP
public static final MapTypeId SATELLITE
public static final MapTypeId TERRAIN
public static MapTypeId[] values()
for (MapTypeId c : MapTypeId.values()) System.out.println(c);
public static MapTypeId valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Fujion Framework. All rights reserved.