-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | OpenStreetMap Slippy Map -- -- OpenStreetMap (OSM) Slippy Map is, in general, a term referring to -- modern web maps which let you zoom and pan around (the map slips -- around when you drag the mouse). - -- http://wiki.openstreetmap.org/wiki/Slippy_Map @package HSlippyMap @version 3.0.1 module HSlippyMap data Tile Tile :: Lat -> Long -> X -> Y -> ZLevel -> Tile [tlat] :: Tile -> Lat [tlong] :: Tile -> Long [tx] :: Tile -> X [ty] :: Tile -> Y [tz] :: Tile -> ZLevel type Lat = Float type Long = Float type X = Integer type Y = Integer type ZLevel = Integer tilesFromBBox :: Tile -> Tile -> Maybe [Tile] tileFromLatLong :: Lat -> Long -> ZLevel -> Tile tileFromXY :: X -> Y -> ZLevel -> Tile instance GHC.Show.Show HSlippyMap.Tile