Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions samples/elevation-simple/README.md
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).
29 changes: 29 additions & 0 deletions samples/elevation-simple/index.html
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] -->
67 changes: 67 additions & 0 deletions samples/elevation-simple/index.ts
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]) {
Comment thread
willum070 marked this conversation as resolved.
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)}`
Comment thread
willum070 marked this conversation as resolved.
);
});
}

void init();
// [END maps_elevation_simple]
12 changes: 12 additions & 0 deletions samples/elevation-simple/package.json
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"
}
22 changes: 22 additions & 0 deletions samples/elevation-simple/style.css
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] */
7 changes: 7 additions & 0 deletions samples/elevation-simple/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "."
},
"include": ["./*.ts"]
}
Loading