diff --git a/src/main/resources/data.sql b/src/main/resources/data.sql index 389042e16e7a3acdc3cb53ca62ce1a7438747069..1875870e0590d0f9bab77b9916a578d2ad897a0e 100644 --- a/src/main/resources/data.sql +++ b/src/main/resources/data.sql @@ -101,4 +101,7 @@ insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLon delete from townsWithTrails; insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Caerphilly', '51.57903','-3.22075 ','51.60418','51.55093','-3.25222','-3.17696'); insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Risca','51.61195','-3.09648','51.63039','51.59175','-3.12129','-3.06438'); -insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Penarth','51.43893','-3.17354','51.44878','51.41233','-3.20271','-3.16005'); \ No newline at end of file +insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Penarth','51.43893','-3.17354','51.44878','51.41233','-3.20271','-3.16005'); + +delete from dragonstale; +insert into dragonstale(landmarkID, landmarkName, landmarkDescription, imgPath) value (1, 'A scent of...Dragon', 'The Dragon has been spotted near by, find the QR code to continue', '~/images/dragonstale/DTLM1.png'); \ No newline at end of file diff --git a/src/main/resources/static/images/dragonstale/DTLM1.png b/src/main/resources/static/images/dragonstale/DTLM1.png new file mode 100644 index 0000000000000000000000000000000000000000..6617272744c064072415bacb7992b47a7cece852 Binary files /dev/null and b/src/main/resources/static/images/dragonstale/DTLM1.png differ diff --git a/src/main/resources/static/images/trails/dragonone.png b/src/main/resources/static/images/dragonstale/dragonone.png similarity index 100% rename from src/main/resources/static/images/trails/dragonone.png rename to src/main/resources/static/images/dragonstale/dragonone.png diff --git a/src/main/resources/static/images/trails/dragonstalehome.png b/src/main/resources/static/images/dragonstale/dragonstalehome.png similarity index 100% rename from src/main/resources/static/images/trails/dragonstalehome.png rename to src/main/resources/static/images/dragonstale/dragonstalehome.png diff --git a/src/main/resources/templates/dragonstale/index.html b/src/main/resources/templates/dragonstale/index.html index 001f6e470247ee5df8052cd7625def1f11cab8d9..84f76c774b75ac1ca3ffc526c0668a572c1b11db 100644 --- a/src/main/resources/templates/dragonstale/index.html +++ b/src/main/resources/templates/dragonstale/index.html @@ -14,7 +14,7 @@ <!-- As this predefined trail will be accessible from multiple different towns, this thymeleaf element will display the town the user is currently trying to access and display it accordingly. <span th:text="${townName}"> --> <div> <h1> Welcome, to a dragon's tale! </h1> - <img th:src="@{/images/trails/dragonstalehome.png}" alt="Image of a dragon" class="images"> + <img th:src="@{/images/dragonstale/dragonstalehome.png}" alt="Image of a dragon" class="images"> <h2> Discover the mystery of the dragon, track its location and follow it throughout the town of to discover a prize! </h2> </div>