Trait tile_grid::TileMatrixSetOps

source ·
pub trait TileMatrixSetOps: Sized {
    // Required methods
    fn from_json_file(json_path: &str) -> Result<Self, TileMatrixSetError>;
    fn from_json(json: &str) -> Result<Self, TileMatrixSetError>;
    fn crs_axis_inverted(&self) -> bool;
}

Required Methods§

source

fn from_json_file(json_path: &str) -> Result<Self, TileMatrixSetError>

source

fn from_json(json: &str) -> Result<Self, TileMatrixSetError>

source

fn crs_axis_inverted(&self) -> bool

Check if CRS has inverted AXIS (lat,lon) instead of (lon,lat).

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TileMatrixSetOps for TileMatrixSet

source§

fn crs_axis_inverted(&self) -> bool

Check if CRS has inverted AXIS (lat,lon) instead of (lon,lat).

source§

fn from_json_file(json_path: &str) -> Result<Self, TileMatrixSetError>

source§

fn from_json(json: &str) -> Result<Self, TileMatrixSetError>

Implementors§