push tile bounds calc down into tiles from caller
This commit is contained in:
parent
fb61919c96
commit
795e63d773
@ -527,8 +527,6 @@ canvas centre zoom width height model =
|
||||
offsetY = pixelCentreY - (height // 2) - topedge
|
||||
pixWidth = (1 + maxtile.x - mintile.x) * 256
|
||||
pixHeight = (1 + maxtile.y - mintile.y) * 256
|
||||
xs = List.range mintile.x maxtile.x
|
||||
ys = List.range mintile.y maxtile.y
|
||||
epos e = Tuple.mapBoth floor floor e.pointer.clientPos
|
||||
tv = ifTrack model (trackView leftedge topedge zoom)
|
||||
in div [style "position" "absolute"
|
||||
@ -540,7 +538,7 @@ canvas centre zoom width height model =
|
||||
,Pointer.onUp (\e -> DragFinish (epos e))
|
||||
,Pointer.onMove (\e -> Drag (epos e))
|
||||
,Pointer.onDown (\e -> DragStart Map (epos e)) ]
|
||||
(tv :: tiles xs ys zoom)
|
||||
(tv :: tiles centre zoom width height)
|
||||
|
||||
|
||||
portalWidth = 600
|
||||
|
@ -98,7 +98,11 @@ tileImg zoom tilenumber = img [ width 256,
|
||||
height 256,
|
||||
src (tileUrl tilenumber zoom) ] []
|
||||
|
||||
tiles xs ys zoom =
|
||||
tiles centre zoom width height =
|
||||
let (mintile, maxtile) = boundingTiles centre zoom width height
|
||||
xs = List.range mintile.x maxtile.x
|
||||
ys = List.range mintile.y maxtile.y
|
||||
in
|
||||
List.map
|
||||
(\ y -> div []
|
||||
(List.map (\ x -> tileImg zoom (TileNumber x y)) xs))
|
||||
|
Loading…
Reference in New Issue
Block a user