• java.lang.Object
    • java.lang.Enum<TilingScheme>
      • com.here.sdk.mapview.datasource.TilingScheme
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TilingScheme>

    public enum TilingScheme
    extends java.lang.Enum<TilingScheme>

    List of available data tiling schemes. X axis has the origin at -180 longitude and is increasing in east direction. Y axis has the origin at max latitude and is increasing in south direction. For half quad tree schemes, only the uppper half of the tree is used.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      HALF_QUAD_TREE_EQUIRECTANGULAR
      A tiling scheme that splits 0-th level tile into 2 equal-sized subtiles and all other level tiles into 4 equal-sized subtiles.
      HALF_QUAD_TREE_IDENTITY
      A tiling scheme that splits 0-th level tile into 2 equal-sized subtiles and all other level tiles into 4 equal-sized subtiles.
      HALF_QUAD_TREE_MERCATOR
      A tiling scheme that splits 0-th level tile into 2 equal-sized subtiles and all other level tiles into 4 equal-sized subtiles.
      QUAD_TREE_EQUIRECTANGULAR
      A tiling scheme that splits each level tile into 4 equal-sized subtiles.
      QUAD_TREE_IDENTITY
      A tiling scheme that splits each level tile into 4 equal-sized subtiles.
      QUAD_TREE_MERCATOR
      A tiling scheme that splits each level tile into 4 equal-sized subtiles.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static TilingScheme valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static TilingScheme[] 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, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • HALF_QUAD_TREE_IDENTITY

        public static final TilingScheme HALF_QUAD_TREE_IDENTITY

        A tiling scheme that splits 0-th level tile into 2 equal-sized subtiles and all other level tiles into 4 equal-sized subtiles.

      • HALF_QUAD_TREE_MERCATOR

        public static final TilingScheme HALF_QUAD_TREE_MERCATOR

        A tiling scheme that splits 0-th level tile into 2 equal-sized subtiles and all other level tiles into 4 equal-sized subtiles. The coordinates of the tile's corners are transformed through the web-mercator projection.

      • HALF_QUAD_TREE_EQUIRECTANGULAR

        public static final TilingScheme HALF_QUAD_TREE_EQUIRECTANGULAR

        A tiling scheme that splits 0-th level tile into 2 equal-sized subtiles and all other level tiles into 4 equal-sized subtiles. The coordinates of the tile's corners are transformed through the equirectangular (plate carree) projection.

      • QUAD_TREE_IDENTITY

        public static final TilingScheme QUAD_TREE_IDENTITY

        A tiling scheme that splits each level tile into 4 equal-sized subtiles.

      • QUAD_TREE_MERCATOR

        public static final TilingScheme QUAD_TREE_MERCATOR

        A tiling scheme that splits each level tile into 4 equal-sized subtiles. The coordinates of the tile's corners are transformed through the web-mercator projection.

      • QUAD_TREE_EQUIRECTANGULAR

        public static final TilingScheme QUAD_TREE_EQUIRECTANGULAR

        A tiling scheme that splits each level tile into 4 equal-sized subtiles. The coordinates of the tile's corners are transformed through the equirectangular (plate carree) projection.

    • Method Detail

      • values

        public static TilingScheme[] 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 (TilingScheme c : TilingScheme.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TilingScheme valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null