21 lines
592 B
HTML
21 lines
592 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>hello-wasm example</title>
|
|
</head>
|
|
<body>
|
|
<input id="address-lat" type="text"></input>
|
|
<input id="address-lon" type="text"></input>
|
|
<p id="address-result">(None)</p>
|
|
<script>
|
|
const addressResult = document.getElementById("address-result");
|
|
const addressLat = document.getElementById("address-lat");
|
|
const addressLon = document.getElementById("address-lon");
|
|
var lta;
|
|
</script>
|
|
<script type="module" src="index.js">
|
|
</script>
|
|
</body>
|
|
</html>
|