Skip to content
Snippets Groups Projects
Commit 4c758fdb authored by Connor Brock's avatar Connor Brock
Browse files

Added an option to view all given landmarks, set up a JS function to send...

Added an option to view all given landmarks, set up a JS function to send browser to the URL path and controller to pick it up.
parent 29273ac1
No related branches found
No related tags found
1 merge request!43Resolve "As a child, I want a very flashy and modern looking webpage that will draw me in and keep me entertained while following the dragons tale trail."
......@@ -29,6 +29,12 @@ public class DragonsTaleController {
return modelAndView;
}
@GetMapping("/allDTLandmarks")
public ModelAndView getAllLandmarksDT(){
modelAndView = new ModelAndView("/dragonstale/alllandmarks");
return modelAndView;
}
@GetMapping ("/QRScan") //In here, we could use trailID as a string variable and use it to track what trail the user clicked from.
public ModelAndView getQRScanner(){
modelAndView = new ModelAndView("fragments/qr-scanner");
......
......@@ -4,6 +4,10 @@ var getQR = function (){
}
function toggleDropDown(){
var dropdownList = document.getElementById("dropdownList")
dropdownList.style.display = (dropdownList.style.display === "block") ? "none" : "block"
var dropdownList = document.getElementById("dropdownList");
dropdownList.style.display = (dropdownList.style.display === "block") ? "none" : "block";
}
function routeToAllLandmarks(){
window.location.href="/allDTLandmarks";
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Dragons Path.</title>
</head>
<body>
<h1> Testing </h1>
</body>
</html>
\ No newline at end of file
......@@ -46,7 +46,7 @@
<div>
<h3> Begin or Continue your hunt!</h3>
<button type="button" id="begin">Click here!</button>
<button type="button" id="begin" onclick="routeToAllLandmarks()">Click here!</button>
</div>
<div th:insert="fragments/Templating.html :: footer"></div>
</body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment