-
Notifications
You must be signed in to change notification settings - Fork 13
feat: Migrates the elevation-simple sample to js-api-samples. #1543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
99970e1
feat: Migrates elevation-simple to js-api-samples.
willum070 7c63f99
Merge branch 'main' into migrate-elevation-simple
willum070 381a755
Merge branch 'main' into migrate-elevation-simple
willum070 a979d97
fix: Fixes some type assertions.
willum070 5cd0f50
Merge branch 'main' into migrate-elevation-simple
willum070 8a868a2
Update Google Maps API key in index.html
willum070 4c909b8
Merge branch 'main' into migrate-elevation-simple
willum070 c771db9
Merge branch 'main' into migrate-elevation-simple
willum070 6b9ba57
fix: applies latest conventions.
willum070 f464d8d
fix: prevent elevation Infowindow from staying closed after POI click.
willum070 1bf8a2a
Merge branch 'main' into migrate-elevation-simple
willum070 1782b44
fix: Incorporates review comments.
willum070 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| # Google Maps JavaScript Sample | ||
|
|
||
| ## elevation-simple | ||
|
|
||
| Elevation Simple sample demonstrating the Elevation Service. | ||
|
|
||
| ## Setup | ||
|
|
||
| ### Before starting run: | ||
|
|
||
| `npm i` | ||
|
|
||
| ### Run an example on a local web server | ||
|
|
||
| `cd samples/elevation-simple` | ||
| `npm start` | ||
|
|
||
| ### Build an individual example | ||
|
|
||
| `cd samples/elevation-simple` | ||
| `npm run build` | ||
|
|
||
| From 'samples': | ||
|
|
||
| `npm run build --workspace=elevation-simple/` | ||
|
|
||
| ### Build all of the examples. | ||
|
|
||
| From 'samples': | ||
|
|
||
| `npm run build-all` | ||
|
|
||
| ### Run lint to check for problems | ||
|
|
||
| `cd samples/elevation-simple` | ||
| `npx eslint index.ts` | ||
|
|
||
| ## Feedback | ||
|
|
||
| For feedback related to this sample, please open a new issue on | ||
| [GitHub](https://github.com/googlemaps-samples/js-api-samples/issues). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| <!doctype html> | ||
| <!-- | ||
| @license | ||
| Copyright 2026 Google LLC. All Rights Reserved. | ||
| SPDX-License-Identifier: Apache-2.0 | ||
| --> | ||
| <!-- [START maps_elevation_simple] --> | ||
| <html> | ||
| <head> | ||
| <title>Elevation Service</title> | ||
|
|
||
| <link rel="stylesheet" type="text/css" href="./style.css" /> | ||
| <script type="module" src="./index.js"></script> | ||
| <script> | ||
| // prettier-ignore | ||
| (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: "GOOGLE_MAPS_API_KEY" | ||
| }); | ||
| </script> | ||
| </head> | ||
| <body> | ||
| <gmp-map | ||
| center="63.333,-150.5" | ||
| zoom="8" | ||
| map-id="DEMO_MAP_ID" | ||
| map-type-id="terrain"></gmp-map> | ||
| </body> | ||
| </html> | ||
| <!-- [END maps_elevation_simple] --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| /** | ||
| * @license | ||
| * Copyright 2026 Google LLC. All Rights Reserved. | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| // [START maps_elevation_simple] | ||
| async function init(): Promise<void> { | ||
| const [{ InfoWindow }, { ElevationService }] = await Promise.all([ | ||
| google.maps.importLibrary('maps'), | ||
| google.maps.importLibrary('elevation'), | ||
| ]); | ||
|
|
||
| const mapElement = document.querySelector('gmp-map')!; | ||
| const innerMap = mapElement.innerMap; | ||
|
|
||
| const elevator = new ElevationService(); | ||
| const infowindow = new InfoWindow(); | ||
|
|
||
| infowindow.open(innerMap); | ||
|
|
||
| // Add a listener for the click event. Display the elevation for the LatLng of | ||
| // the click inside the infowindow. | ||
| innerMap.addListener('click', (event: google.maps.MapMouseEvent) => { | ||
| displayLocationElevation(event.latLng!, elevator, infowindow, innerMap); | ||
| }); | ||
| } | ||
|
|
||
| function displayLocationElevation( | ||
| location: google.maps.LatLng, | ||
| elevator: google.maps.ElevationService, | ||
| infowindow: google.maps.InfoWindow, | ||
| map: google.maps.Map | ||
| ) { | ||
| // Format numeric values to two decimal places | ||
| const formatter = new Intl.NumberFormat(undefined, { | ||
| maximumFractionDigits: 2, | ||
| }); | ||
|
|
||
| // Initiate the location request | ||
| elevator | ||
| .getElevationForLocations({ | ||
| locations: [location], | ||
| }) | ||
| .then(({ results }) => { | ||
| if (results[0]) { | ||
| const { elevation, location: resultLocation } = results[0]; | ||
| infowindow.setPosition(resultLocation); | ||
| infowindow.setContent( | ||
| `The elevation at ${String(resultLocation)} <br>is ${formatter.format(elevation)} meters.` | ||
| ); | ||
| } else { | ||
| infowindow.setPosition(location); | ||
| infowindow.setContent('No results found'); | ||
| } | ||
|
|
||
| infowindow.open(map); | ||
| }) | ||
| .catch((e: unknown) => { | ||
| infowindow.setContent( | ||
| `Elevation service failed due to: ${String(e)}` | ||
|
willum070 marked this conversation as resolved.
|
||
| ); | ||
| }); | ||
| } | ||
|
|
||
| void init(); | ||
| // [END maps_elevation_simple] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "name": "@js-api-samples/elevation-simple", | ||
| "version": "1.0.0", | ||
| "scripts": { | ||
| "build": "bash ../build-single.sh", | ||
| "test": "tsc && npm run build:vite --workspace=.", | ||
| "start": "tsc && vite build --config ../../vite.config.js --base './' && vite --config ../../vite.config.js", | ||
| "build:vite": "vite build --config ../../vite.config.js --base './'", | ||
| "preview": "vite preview --config ../../vite.config.js" | ||
| }, | ||
| "author": "Google LLC" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| /** | ||
| * @license | ||
| * Copyright 2026 Google LLC. All Rights Reserved. | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
| /* [START maps_elevation_simple] */ | ||
|
|
||
| /* | ||
| * Optional: Makes the sample page fill the window. | ||
| */ | ||
| html, | ||
| body { | ||
| height: 100%; | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
|
|
||
| gmp-map { | ||
| height: 100%; | ||
| } | ||
|
|
||
| /* [END maps_elevation_simple] */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "extends": "../../tsconfig.base.json", | ||
| "compilerOptions": { | ||
| "rootDir": "." | ||
| }, | ||
| "include": ["./*.ts"] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.