Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pjaudiomv committed Jun 9, 2024
1 parent 36b53b7 commit 5139def
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0 (June 8, 2024)

- Convert to Svelte App.

## 1.4.0 (June 8, 2024)

- Convert to JS ES6.
Expand Down
32 changes: 30 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,43 @@ This is a very simple tool that is meant to be a "workshop" for address lookups,
It has two boxes:

Address Entry Form
This form is on the left, and contains a bunch of text input fields.
This form is on the top, and contains a bunch of text input fields.
You enter the address into these fields, and the string below them shows how the address is being "built."
When you submit the form, a Google Geocode is done, using the "built" address. You can also enter a long/lat pair,
and do a reverse geocode.

Geocode Response Display
This is on the right side, and displays the result of the lookup. It displays them as simple <div> elements.
This is on the bottom, and displays the result of the lookup. It displays them as simple <div> elements.
Between the two forms is a column of links that allows you to copy data from the response to the corresponding
text input in the Entry form.
You will also have a link in the response form that allows you to go to Google Maps to observe the location there.
If there are more than one places that correspond to the given data, they are displayed, one at a time, and links
are provided to help you select which one is displayed.


Bootstrapped using [SvelteKit](https://kit.svelte.dev/). Powered by [Svelte](https://svelte.dev/) and [Vite](https://vitejs.dev/)

## Developing

Once you've installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

You can preview the production build with `npm run preview`.

## Deploying

New deploys are done with every push to the main branch.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<link rel="shortcut icon" type="image/png" href="https://bmlt.app/wp-content/uploads/2020/08/cropped-BMLTe-logo-1-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script defer async src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCH3XnwdESr1_A05jeG1s3My4xDc9MzWno&loading=async&callback=initMap&v=beta&libraries=marker,geocoding"></script>
<script defer async src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB9Rpnhy0aqCNiLGF9yHd3Z4X_Humx3Vek&loading=async&callback=initMap&v=beta&libraries=marker,geocoding"></script>
<title>Geolocator Tool</title>
%sveltekit.head%
</head>
Expand Down

0 comments on commit 5139def

Please sign in to comment.