We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440c903 commit d0cbadbCopy full SHA for d0cbadb
2-understand/prj-libs-04-finished/src/app.ts
@@ -3,7 +3,7 @@ import axios from "axios";
3
const form = document.querySelector("form")!;
4
const addressInput = document.getElementById("address")! as HTMLInputElement;
5
6
-const GOOGLE_API_KEY = "AIzaSyCIaAc2c5M3VpbCH6PPq_guwy9lHuowXOs";
+const GOOGLE_API_KEY = "abrakadabra";
7
8
// declare var google: any;
9
@@ -30,7 +30,7 @@ function searchAddressHandler(event: Event) {
30
const map = new google.maps.Map(document.getElementById("map") as HTMLElement, {
31
center: coordinates,
32
zoom: 16
33
- });
+ });
34
35
new google.maps.Marker({ position: coordinates, map: map });
36
})
0 commit comments