public enum WellknownScale extends java.lang.Enum<WellknownScale>
General scale set enumeration class.
Enum Constant and Description |
---|
ChinaPublicServices
The scale set supports the scale level and screen resolution of China's geographic information public service platform electronic map data specification.
|
CUSTOM
Customized scale set.
|
GlobalCRS84Pixel
This well-known scale set is defined for global cartographic products.
|
GlobalCRS84Scale
This well-known scale set is defined for global cartographic products.
|
GoogleCRS84Quad
This well-known scale set is defined for compatibility with Google Maps and Microsoft Live Map's projection and zoom levels.
|
GoogleMapsCompatible
This well-known scale set is designed for the CRS84 coordinate system using the quadtree pyramid structure.
|
Modifier and Type | Method and Description |
---|---|
static WellknownScale |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WellknownScale[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final WellknownScale GlobalCRS84Scale
This well-known scale set is defined for global cartographic products. The integer scale is chosen for intuitive map representation of vector data. The scale denominator is just right near the equator.
public static final WellknownScale GlobalCRS84Pixel
This well-known scale set is defined for global cartographic products. Level 0 map resolution of 2, the next level of the map is resolved to 1, and so on in addition to 2. The scale denominator and the resolution in degrees are just accurate near the equator. The map unit of this scale is the degree.
public static final WellknownScale GoogleCRS84Quad
This well-known scale set is defined for compatibility with Google Maps and Microsoft Live Map's projection and zoom levels. Level 0 represents the world with a 256x256 pixel block, and the next level represents the world as 2x2 256x256 pixels, and so on. The scale denominator is just right near the equator.
public static final WellknownScale GoogleMapsCompatible
This well-known scale set is designed for the CRS84 coordinate system using the quadtree pyramid structure. Level 0 represents the world with a 256x256 pixel block, and the next level represents the world as 2x2 256x256 pixels, and so on. The scale denominator is just right near the equator.
public static final WellknownScale CUSTOM
Customized scale set.
public static final WellknownScale ChinaPublicServices
The scale set supports the scale level and screen resolution of China's geographic information public service platform electronic map data specification.
public static WellknownScale[] values()
for (WellknownScale c : WellknownScale.values()) System.out.println(c);
public static WellknownScale 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