expose pixel bounds from TileMap not boundingTiles

This commit is contained in:
Daniel Barlow 2024-11-23 13:47:56 +00:00
parent 7bb1b9666a
commit d8180febe7
2 changed files with 19 additions and 15 deletions

View File

@ -469,7 +469,6 @@ powerView = measureView "power" "#994444" (.power >> Maybe.map toFloat)
eleView = measureView "elevation" "#4444ee" (.pos >> .ele) eleView = measureView "elevation" "#4444ee" (.pos >> .ele)
trackView : Int -> Int -> ZoomLevel -> List Point -> Svg Msg trackView : Int -> Int -> ZoomLevel -> List Point -> Svg Msg
trackView leftedge topedge zoom points = trackView leftedge topedge zoom points =
let plot p = let plot p =
@ -518,21 +517,15 @@ ifTrack model content =
canvas : Coord -> ZoomLevel -> Int -> Int -> Model -> Html Msg canvas : Coord -> ZoomLevel -> Int -> Int -> Model -> Html Msg
canvas centre zoom width height model = canvas centre zoom width height model =
let tm = TileMap centre zoom width height let tm = TileMap centre zoom width height
(mintile, maxtile) = boundingTiles tm mapBounds = TileMap.bounds tm
-- offset is pixel difference between centre (which *should* (pixelCentreX, pixelCentreY) = pixelFromCoord centre zoom
-- be the middle of the image) and actual middle of the canvas offsetX = pixelCentreX - (width // 2) - mapBounds.left
(pixelCentreX,pixelCentreY) = pixelFromCoord centre zoom offsetY = pixelCentreY - (height // 2) - mapBounds.top
leftedge = mintile.x * 256
topedge = mintile.y * 256
offsetX = pixelCentreX - (width // 2) - leftedge
offsetY = pixelCentreY - (height // 2) - topedge
pixWidth = (1 + maxtile.x - mintile.x) * 256
pixHeight = (1 + maxtile.y - mintile.y) * 256
epos e = Tuple.mapBoth floor floor e.pointer.clientPos epos e = Tuple.mapBoth floor floor e.pointer.clientPos
tv = ifTrack model (trackView leftedge topedge zoom) tv = ifTrack model (trackView mapBounds.left mapBounds.top zoom)
in div [style "position" "absolute" in div [style "position" "absolute"
,style "width" (px pixWidth) ,style "width" (px mapBounds.width)
,style "height" (px pixHeight) ,style "height" (px mapBounds.height)
,style "left" (px -offsetX) ,style "left" (px -offsetX)
,style "top" (px -offsetY) ,style "top" (px -offsetY)
,style "lineHeight" (px 0) ,style "lineHeight" (px 0)

View File

@ -8,7 +8,7 @@ module TileMap exposing (tiles
, translate , translate
, translatePixels , translatePixels
, incZoom , incZoom
, boundingTiles , bounds
, pixelsToCoord , pixelsToCoord
, pixelFromCoord , pixelFromCoord
, zoomStep) , zoomStep)
@ -89,6 +89,17 @@ boundingTiles (TileMap centre z width height) =
in ((tileCovering minCoord z), in ((tileCovering minCoord z),
(translate (tileCovering maxCoord z) (TileNumber 1 1))) (translate (tileCovering maxCoord z) (TileNumber 1 1)))
bounds : TileMap -> { left : Int, top : Int, width: Int, height: Int }
bounds tmap =
let (mintile, maxtile) = boundingTiles tmap
in {
left = mintile.x * 256,
top = mintile.y * 256,
width = (1 + maxtile.x - mintile.x) * 256,
height = (1 + maxtile.y - mintile.y) * 256
}
tileUrl : TileNumber -> ZoomLevel -> String tileUrl : TileNumber -> ZoomLevel -> String
tileUrl {x,y} z = tileUrl {x,y} z =
String.concat ["https://a.tile.openstreetmap.org", String.concat ["https://a.tile.openstreetmap.org",