New Version For TreeHug
This commit is contained in:
		
							parent
							
								
									c5cec4ce39
								
							
						
					
					
						commit
						5f30b430ff
					
				
							
								
								
									
										32
									
								
								src/treehug/fetch_places.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								src/treehug/fetch_places.js
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,32 @@
 | 
				
			||||||
 | 
					fetch("./locations.json").then((locations_unparsed) => {
 | 
				
			||||||
 | 
					  locations_unparsed.json().then((places) => handle_response(places));
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function handle_response(places) {
 | 
				
			||||||
 | 
					  console.log(places);
 | 
				
			||||||
 | 
					  Object.keys(places).forEach(name => {
 | 
				
			||||||
 | 
					    let document_element = document.createElement("li");
 | 
				
			||||||
 | 
					    document_element.className = "element";
 | 
				
			||||||
 | 
					    let link_element = document.createElement("a");
 | 
				
			||||||
 | 
					    link_element.href = "./map.html?" + name;
 | 
				
			||||||
 | 
					    link_element.innerHTML = places[name].display_name;
 | 
				
			||||||
 | 
					    document_element.appendChild(link_element);
 | 
				
			||||||
 | 
					    document.getElementById("search_list").appendChild(document_element);
 | 
				
			||||||
 | 
					  });
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function eliminate_results() {
 | 
				
			||||||
 | 
					  let input = document.getElementById("search_bar").value;
 | 
				
			||||||
 | 
					  input = input.toLowerCase();
 | 
				
			||||||
 | 
					  console.log("Typed a charachter");
 | 
				
			||||||
 | 
					  let x = document.getElementsByClassName('element');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  for (i = 0; i < x.length; i++) {
 | 
				
			||||||
 | 
					    if (!x[i].innerHTML.toLowerCase().includes(input)) {
 | 
				
			||||||
 | 
					      x[i].style.display = "none";
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    else {
 | 
				
			||||||
 | 
					      x[i].style.display = "list-item";
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -1,19 +1,16 @@
 | 
				
			||||||
<!DOCTYPE html>
 | 
					<!DOCTYPE html>
 | 
				
			||||||
<html>
 | 
					<html>
 | 
				
			||||||
  <head>
 | 
					  <head>
 | 
				
			||||||
    <title>TreeHug</title>
 | 
					    <title>TreeHug - Search</title>
 | 
				
			||||||
    <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
 | 
					 | 
				
			||||||
    <script src="node_modules/@googlemaps/markerclusterer/dist/index.min.js"></script>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <link rel="stylesheet" type="text/css" href="./style.css" />
 | 
					    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <link rel="stylesheet" href="./style.css" />
 | 
				
			||||||
    <link rel="icon" type="image/x-icon" href="treehug.png">
 | 
					    <link rel="icon" type="image/x-icon" href="treehug.png">
 | 
				
			||||||
  </head>
 | 
					  </head>
 | 
				
			||||||
  <body>
 | 
					  <body>
 | 
				
			||||||
    <div id="map"></div>
 | 
					    <input type="text" placeholder="Search..." id="search_bar" class="search_bar" onkeyup="eliminate_results()"> 
 | 
				
			||||||
 | 
					    <ul id="search_list"></ul>
 | 
				
			||||||
    <!-- prettier-ignore -->
 | 
					    <script src="fetch_places.js"></script>
 | 
				
			||||||
    <script>(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
 | 
					 | 
				
			||||||
        ({key: "AIzaSyCneCqjzobnZ-ksYh85eosk1whovucTjQE", v: "weekly"});</script>
 | 
					 | 
				
			||||||
    <script type="module" src="./index.js"></script>
 | 
					 | 
				
			||||||
  </body>
 | 
					  </body>
 | 
				
			||||||
</html>
 | 
					</html>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -58,107 +58,29 @@ function initMap() {
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
function find_places(position) {
 | 
					function handle_response(places) {
 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function () {
 | 
					    var place_id = document.URL.split('?')[1];
 | 
				
			||||||
        var _a, AdvancedMarkerElement, PinElement, InfoWindow, response, locations, infoWindow, labels, markers;
 | 
					    var place = places[place_id];
 | 
				
			||||||
        return __generator(this, function (_b) {
 | 
					    var place_location = { lat: place.lat, lng: place.lng };
 | 
				
			||||||
            switch (_b.label) {
 | 
					    new google.maps.Marker({
 | 
				
			||||||
                case 0: return [4 /*yield*/, google.maps.importLibrary("marker")];
 | 
					        position: place_location,
 | 
				
			||||||
                case 1:
 | 
					        map: map,
 | 
				
			||||||
                    _a = _b.sent(), AdvancedMarkerElement = _a.AdvancedMarkerElement, PinElement = _a.PinElement;
 | 
					        title: place.display_name,
 | 
				
			||||||
                    return [4 /*yield*/, google.maps.importLibrary("maps")];
 | 
					 | 
				
			||||||
                case 2:
 | 
					 | 
				
			||||||
                    InfoWindow = (_b.sent()).InfoWindow;
 | 
					 | 
				
			||||||
                    return [4 /*yield*/, fetch("https://places.googleapis.com/v1/places:searchNearby", {
 | 
					 | 
				
			||||||
                            method: "POST",
 | 
					 | 
				
			||||||
                            headers: new Headers({
 | 
					 | 
				
			||||||
                                "Content-Type": "application/json",
 | 
					 | 
				
			||||||
                                "X-Goog-Api-Key": "AIzaSyCneCqjzobnZ-ksYh85eosk1whovucTjQE",
 | 
					 | 
				
			||||||
                                "X-Goog-FieldMask": "places.location,places.displayName",
 | 
					 | 
				
			||||||
                            }),
 | 
					 | 
				
			||||||
                            body: JSON.stringify({
 | 
					 | 
				
			||||||
                                includedTypes: INCLUDED_TYPES,
 | 
					 | 
				
			||||||
                                maxResultCount: MAX_RESULTS.toString(),
 | 
					 | 
				
			||||||
                                locationRestriction: {
 | 
					 | 
				
			||||||
                                    circle: {
 | 
					 | 
				
			||||||
                                        center: {
 | 
					 | 
				
			||||||
                                            latitude: position.lat,
 | 
					 | 
				
			||||||
                                            longitude: position.lng,
 | 
					 | 
				
			||||||
                                        },
 | 
					 | 
				
			||||||
                                        radius: RADIUS.toString(),
 | 
					 | 
				
			||||||
                                    },
 | 
					 | 
				
			||||||
                                },
 | 
					 | 
				
			||||||
                            })
 | 
					 | 
				
			||||||
                        })];
 | 
					 | 
				
			||||||
                case 3:
 | 
					 | 
				
			||||||
                    response = _b.sent();
 | 
					 | 
				
			||||||
                    return [4 /*yield*/, response.json()];
 | 
					 | 
				
			||||||
                case 4:
 | 
					 | 
				
			||||||
                    locations = _b.sent();
 | 
					 | 
				
			||||||
                    infoWindow = new google.maps.InfoWindow({
 | 
					 | 
				
			||||||
                        content: "",
 | 
					 | 
				
			||||||
                        disableAutoPan: true,
 | 
					 | 
				
			||||||
                    });
 | 
					 | 
				
			||||||
                    console.log(locations);
 | 
					 | 
				
			||||||
                    labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
 | 
					 | 
				
			||||||
                    markers = locations["places"].map(function (element, i) {
 | 
					 | 
				
			||||||
                        var place = element["location"];
 | 
					 | 
				
			||||||
                        var latitude = place["latitude"];
 | 
					 | 
				
			||||||
                        var longitude = place["longitude"];
 | 
					 | 
				
			||||||
                        var label = labels[i % labels.length];
 | 
					 | 
				
			||||||
                        var pinGlyph = new google.maps.marker.PinElement({
 | 
					 | 
				
			||||||
                            glyph: label,
 | 
					 | 
				
			||||||
                            glyphColor: "white"
 | 
					 | 
				
			||||||
                        });
 | 
					 | 
				
			||||||
                        var marker = new google.maps.marker.AdvancedMarkerElement({
 | 
					 | 
				
			||||||
                            position: {
 | 
					 | 
				
			||||||
                                lat: latitude,
 | 
					 | 
				
			||||||
                                lng: longitude,
 | 
					 | 
				
			||||||
                            },
 | 
					 | 
				
			||||||
                            content: pinGlyph.element,
 | 
					 | 
				
			||||||
                        });
 | 
					 | 
				
			||||||
                        marker.addListener("click", function () {
 | 
					 | 
				
			||||||
                            infoWindow.setContent(position.lat + ", " + position.lng);
 | 
					 | 
				
			||||||
                            infoWindow.open(map, marker);
 | 
					 | 
				
			||||||
                        });
 | 
					 | 
				
			||||||
                        return marker;
 | 
					 | 
				
			||||||
                    });
 | 
					 | 
				
			||||||
                    // @ts-ignore
 | 
					 | 
				
			||||||
                    new markerClusterer.MarkerClusterer({ markers: markers, map: map });
 | 
					 | 
				
			||||||
                    return [2 /*return*/];
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        });
 | 
					 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					    map.setCenter(place_location);
 | 
				
			||||||
function handle_geolocation() {
 | 
					    Object.keys(places).forEach(function (name) {
 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function () {
 | 
					        var document_element = document.createElement("li");
 | 
				
			||||||
        var AdvancedMarkerElement;
 | 
					        document_element.className = "element";
 | 
				
			||||||
        return __generator(this, function (_a) {
 | 
					        var link_element = document.createElement("a");
 | 
				
			||||||
            switch (_a.label) {
 | 
					        link_element.href = "./map.html?" + name;
 | 
				
			||||||
                case 0: return [4 /*yield*/, google.maps.importLibrary("marker")];
 | 
					        link_element.innerHTML = places[name].display_name;
 | 
				
			||||||
                case 1:
 | 
					        document_element.appendChild(link_element);
 | 
				
			||||||
                    AdvancedMarkerElement = (_a.sent()).AdvancedMarkerElement;
 | 
					        // @ts-ignore
 | 
				
			||||||
                    navigator.geolocation.getCurrentPosition(function (position) {
 | 
					        document.getElementById("search_list").appendChild(document_element);
 | 
				
			||||||
                        pos = {
 | 
					 | 
				
			||||||
                            lat: position.coords.latitude,
 | 
					 | 
				
			||||||
                            lng: position.coords.longitude,
 | 
					 | 
				
			||||||
                        };
 | 
					 | 
				
			||||||
                        map.setCenter(pos);
 | 
					 | 
				
			||||||
                        map.setZoom(15);
 | 
					 | 
				
			||||||
                        find_places(pos);
 | 
					 | 
				
			||||||
                        new AdvancedMarkerElement({
 | 
					 | 
				
			||||||
                            map: map,
 | 
					 | 
				
			||||||
                            position: pos,
 | 
					 | 
				
			||||||
                            title: "You",
 | 
					 | 
				
			||||||
                        });
 | 
					 | 
				
			||||||
                    });
 | 
					 | 
				
			||||||
                    return [2 /*return*/];
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        });
 | 
					 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
initMap().then(function () {
 | 
					initMap().then(function () {
 | 
				
			||||||
    if (navigator.geolocation) {
 | 
					    fetch("./locations.json").then(function (locations_unparsed) {
 | 
				
			||||||
        handle_geolocation();
 | 
					        locations_unparsed.json().then(function (places) { return handle_response(places); });
 | 
				
			||||||
    }
 | 
					    });
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -15,95 +15,32 @@ async function initMap() {
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
async function find_places(position: google.maps.LatLngLiteral) {
 | 
					function handle_response(places: {[index: string]: {lat: number, lng: number, display_name: string}}) {
 | 
				
			||||||
  // @ts-ignore
 | 
					  let place_id = document.URL.split('?')[1];
 | 
				
			||||||
  const { AdvancedMarkerElement, PinElement } = await google.maps.importLibrary("marker") as google.maps.MarkerLibrary;
 | 
					  let place = places[place_id];
 | 
				
			||||||
  const { InfoWindow } = await google.maps.importLibrary("maps") as google.maps.MapsLibrary;
 | 
					  let place_location: google.maps.LatLngLiteral = { lat: place.lat, lng: place.lng};
 | 
				
			||||||
 | 
					  new google.maps.Marker({
 | 
				
			||||||
  let response = await fetch("https://places.googleapis.com/v1/places:searchNearby", {
 | 
					    position: place_location,
 | 
				
			||||||
    method: "POST",
 | 
					    map,
 | 
				
			||||||
    headers: new Headers({
 | 
					    title: place.display_name,
 | 
				
			||||||
      "Content-Type": "application/json",
 | 
					 | 
				
			||||||
      "X-Goog-Api-Key": "AIzaSyCneCqjzobnZ-ksYh85eosk1whovucTjQE",
 | 
					 | 
				
			||||||
      "X-Goog-FieldMask": "places.location,places.displayName",
 | 
					 | 
				
			||||||
    }),
 | 
					 | 
				
			||||||
    body: JSON.stringify({
 | 
					 | 
				
			||||||
      includedTypes: INCLUDED_TYPES,
 | 
					 | 
				
			||||||
      maxResultCount: MAX_RESULTS.toString(),
 | 
					 | 
				
			||||||
      locationRestriction: {
 | 
					 | 
				
			||||||
        circle: {
 | 
					 | 
				
			||||||
          center: {
 | 
					 | 
				
			||||||
            latitude: position.lat,
 | 
					 | 
				
			||||||
            longitude: position.lng,
 | 
					 | 
				
			||||||
          },
 | 
					 | 
				
			||||||
          radius: RADIUS.toString(),
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
      },
 | 
					 | 
				
			||||||
    })
 | 
					 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
  let locations: {places: [{location: {latitude: number, longitude: number}, displayName: {text: string}}]} = await response.json();
 | 
					  map.setCenter(place_location);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const infoWindow = new google.maps.InfoWindow({
 | 
					  Object.keys(places).forEach(name => {
 | 
				
			||||||
    content: "",
 | 
					    let document_element = document.createElement("li");
 | 
				
			||||||
    disableAutoPan: true,
 | 
					    document_element.className = "element";
 | 
				
			||||||
 | 
					    let link_element = document.createElement("a");
 | 
				
			||||||
 | 
					    link_element.href = "./map.html?" + name;
 | 
				
			||||||
 | 
					    link_element.innerHTML = places[name].display_name;
 | 
				
			||||||
 | 
					    document_element.appendChild(link_element);
 | 
				
			||||||
 | 
					    // @ts-ignore
 | 
				
			||||||
 | 
					    document.getElementById("search_list").appendChild(document_element);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					 | 
				
			||||||
  console.log(locations);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  const labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  let markers = locations["places"].map((element, i) => {
 | 
					 | 
				
			||||||
    let place = element["location"];
 | 
					 | 
				
			||||||
    let latitude = place["latitude"];
 | 
					 | 
				
			||||||
    let longitude = place["longitude"];
 | 
					 | 
				
			||||||
      
 | 
					 | 
				
			||||||
    let label = labels[i % labels.length];
 | 
					 | 
				
			||||||
    const pinGlyph = new google.maps.marker.PinElement({
 | 
					 | 
				
			||||||
      glyph: label,
 | 
					 | 
				
			||||||
      glyphColor: "white"
 | 
					 | 
				
			||||||
    });
 | 
					 | 
				
			||||||
    const marker = new google.maps.marker.AdvancedMarkerElement({
 | 
					 | 
				
			||||||
      position: {
 | 
					 | 
				
			||||||
        lat: latitude,
 | 
					 | 
				
			||||||
        lng: longitude,
 | 
					 | 
				
			||||||
      },
 | 
					 | 
				
			||||||
      content: pinGlyph.element,
 | 
					 | 
				
			||||||
    });
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    marker.addListener("click", () => {
 | 
					 | 
				
			||||||
      infoWindow.setContent(position.lat + ", " + position.lng);
 | 
					 | 
				
			||||||
      infoWindow.open(map, marker);
 | 
					 | 
				
			||||||
    });
 | 
					 | 
				
			||||||
    return marker;
 | 
					 | 
				
			||||||
  });
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // @ts-ignore
 | 
					 | 
				
			||||||
  new markerClusterer.MarkerClusterer({ markers, map });
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
async function handle_geolocation() {
 | 
					 | 
				
			||||||
  const { AdvancedMarkerElement } = await google.maps.importLibrary("marker") as google.maps.MarkerLibrary;
 | 
					 | 
				
			||||||
  navigator.geolocation.getCurrentPosition(
 | 
					 | 
				
			||||||
    (position: GeolocationPosition) => {
 | 
					 | 
				
			||||||
      pos = {
 | 
					 | 
				
			||||||
        lat: position.coords.latitude,
 | 
					 | 
				
			||||||
        lng: position.coords.longitude,
 | 
					 | 
				
			||||||
      };
 | 
					 | 
				
			||||||
      map.setCenter(pos)
 | 
					 | 
				
			||||||
      map.setZoom(15);
 | 
					 | 
				
			||||||
      find_places(pos);
 | 
					 | 
				
			||||||
      new AdvancedMarkerElement({
 | 
					 | 
				
			||||||
        map: map,
 | 
					 | 
				
			||||||
        position: pos,
 | 
					 | 
				
			||||||
        title: "You",
 | 
					 | 
				
			||||||
      })
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  );
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
initMap().then(() => {
 | 
					initMap().then(() => {
 | 
				
			||||||
  if (navigator.geolocation) {
 | 
					  fetch("./locations.json").then((locations_unparsed) => {
 | 
				
			||||||
    handle_geolocation();
 | 
					    locations_unparsed.json().then((places) => handle_response(places));
 | 
				
			||||||
  }
 | 
					  });
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										17
									
								
								src/treehug/locations.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								src/treehug/locations.json
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,17 @@
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  "rana_bibliotek": {
 | 
				
			||||||
 | 
					    "lat": 66.31144686667197,
 | 
				
			||||||
 | 
					    "lng": 14.138761809521128,
 | 
				
			||||||
 | 
					    "display_name": "Rana Bibliotek"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "nordland_fylkesbibliotek": { 
 | 
				
			||||||
 | 
					    "lat": 66.31132186276196, 
 | 
				
			||||||
 | 
					    "lng": 14.138815453697577,
 | 
				
			||||||
 | 
					    "display_name": "Nordland Fylkesbibliotek"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "storhauge_start": {
 | 
				
			||||||
 | 
					    "lat": 66.32937944214652, 
 | 
				
			||||||
 | 
					    "lng": 14.2029277866417,
 | 
				
			||||||
 | 
					    "display_name": "Storhauge Start"
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										42
									
								
								src/treehug/map.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								src/treehug/map.html
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,42 @@
 | 
				
			||||||
 | 
					<!DOCTYPE html>
 | 
				
			||||||
 | 
					<html>
 | 
				
			||||||
 | 
					  <head>
 | 
				
			||||||
 | 
					    <title>TreeHug - Map</title>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
 | 
				
			||||||
 | 
					    <script src="node_modules/@googlemaps/markerclusterer/dist/index.min.js"></script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <link rel="stylesheet" type="text/css" href="./style.css" />
 | 
				
			||||||
 | 
					    <link rel="icon" type="image/x-icon" href="treehug.png">
 | 
				
			||||||
 | 
					  </head>
 | 
				
			||||||
 | 
					  <body>
 | 
				
			||||||
 | 
					    <div id="map"></div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <!-- prettier-ignore -->
 | 
				
			||||||
 | 
					    <script>(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
 | 
				
			||||||
 | 
					        ({key: "AIzaSyCneCqjzobnZ-ksYh85eosk1whovucTjQE", v: "weekly"});</script>
 | 
				
			||||||
 | 
					    <script type="module" src="./index.js"></script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <input type="text" placeholder="Search..." id="search_bar" class="search_bar" onkeyup="eliminate_results()"> 
 | 
				
			||||||
 | 
					    <ul id="search_list"></ul>
 | 
				
			||||||
 | 
					    <script>
 | 
				
			||||||
 | 
					function eliminate_results() {
 | 
				
			||||||
 | 
					  let input = document.getElementById("search_bar").value;
 | 
				
			||||||
 | 
					  input = input.toLowerCase();
 | 
				
			||||||
 | 
					  console.log("Typed a charachter");
 | 
				
			||||||
 | 
					  let x = document.getElementsByClassName('element');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  for (let i = 0; i < x.length; i++) {
 | 
				
			||||||
 | 
					    if (!x[i].innerHTML.toLowerCase().includes(input)) {
 | 
				
			||||||
 | 
					      x[i].style.display = "none";
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    else {
 | 
				
			||||||
 | 
					      x[i].style.display = "list-item";
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					    </script>
 | 
				
			||||||
 | 
					  </body>
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
| 
						 | 
					@ -3,8 +3,16 @@
 | 
				
			||||||
 * that contains the map. 
 | 
					 * that contains the map. 
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
#map {
 | 
					#map {
 | 
				
			||||||
  height: 100%;
 | 
					  margin-bottom: 1em;
 | 
				
			||||||
  width: 100%;
 | 
					  height: 80%;
 | 
				
			||||||
 | 
					  width: 30em;
 | 
				
			||||||
 | 
					  max-width: 30em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.search_bar {
 | 
				
			||||||
 | 
					  background-color: #313244;
 | 
				
			||||||
 | 
					  border: none;
 | 
				
			||||||
 | 
					  color: #cdd6f4;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* 
 | 
					/* 
 | 
				
			||||||
| 
						 | 
					@ -13,7 +21,14 @@
 | 
				
			||||||
body {
 | 
					body {
 | 
				
			||||||
  margin: 0;
 | 
					  margin: 0;
 | 
				
			||||||
  padding: 2%;
 | 
					  padding: 2%;
 | 
				
			||||||
 | 
					  padding-top: 1em;
 | 
				
			||||||
  height: 90%;
 | 
					  height: 90%;
 | 
				
			||||||
 | 
					  background-color: #1e1e2e;
 | 
				
			||||||
 | 
					  color: #cdd6f4;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					a {
 | 
				
			||||||
 | 
					  color: #89dceb;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
html {
 | 
					html {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue