-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#369 monitor vector tiles poc - preserve existing tile code
- Loading branch information
Showing
62 changed files
with
263 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
server/src/main/scala/kpn/server/analyzer/engine/tile/LinesTileCalculator.scala
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
server/src/main/scala/kpn/server/analyzer/engine/tile/NodeTileCalculator.scala
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
server/src/main/scala/kpn/server/analyzer/engine/tile/OldLinesTileCalculator.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package kpn.server.analyzer.engine.tile | ||
|
||
import kpn.server.analyzer.engine.tiles.domain.Line | ||
import kpn.server.analyzer.engine.tiles.domain.OldTile | ||
|
||
trait OldLinesTileCalculator { | ||
|
||
def tiles(z: Int, lines: Seq[Line]): Seq[OldTile] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
server/src/main/scala/kpn/server/analyzer/engine/tile/OldNodeTileCalculator.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package kpn.server.analyzer.engine.tile | ||
|
||
import kpn.api.common.LatLon | ||
import kpn.server.analyzer.engine.tiles.domain.OldTile | ||
|
||
trait OldNodeTileCalculator { | ||
|
||
def tiles(z: Int, latLon: LatLon): Seq[OldTile] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
server/src/main/scala/kpn/server/analyzer/engine/tile/OldTileCalculator.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package kpn.server.analyzer.engine.tile | ||
|
||
import kpn.api.common.LatLon | ||
import kpn.core.poi.PoiDefinition | ||
import kpn.server.analyzer.engine.tiles.domain.OldTile | ||
|
||
trait OldTileCalculator { | ||
|
||
def tileLonLat(z: Int, lon: Double, lat: Double): OldTile | ||
|
||
def tileXY(z: Int, x: Int, y: Int): OldTile | ||
|
||
def tileNamed(tileName: String): OldTile | ||
|
||
def poiTiles(latLon: LatLon, poiDefinitions: Seq[PoiDefinition]): Seq[String] | ||
|
||
} |
Oops, something went wrong.