-
Notifications
You must be signed in to change notification settings - Fork 13
added hero sample #1473
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
added hero sample #1473
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2f59123
added hero sample
oppenheimera b5509d9
changed order of toggle options
oppenheimera d2459ed
removed region tags
oppenheimera bf56340
updated html formatting
oppenheimera f30a0a2
Merge branch 'main' into hero
oppenheimera 0fff7c1
removed gesturehandling option
oppenheimera 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
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 | ||
|
|
||
| ## 3d-hero-showcase | ||
|
|
||
| Add a meaningful description for 3d-hero-showcase here... | ||
|
|
||
| ## Setup | ||
|
|
||
| ### Before starting run: | ||
|
|
||
| `npm i` | ||
|
|
||
| ### Run an example on a local web server | ||
|
|
||
| `cd samples/3d-hero-showcase` | ||
| `npm start` | ||
|
|
||
| ### Build an individual example | ||
|
|
||
| `cd samples/3d-hero-showcase` | ||
| `npm run build` | ||
|
|
||
| From 'samples': | ||
|
|
||
| `npm run build --workspace=3d-hero-showcase/` | ||
|
|
||
| ### Build all of the examples. | ||
|
|
||
| From 'samples': | ||
|
|
||
| `npm run build-all` | ||
|
|
||
| ### Run lint to check for problems | ||
|
|
||
| `cd samples/3d-hero-showcase` | ||
| `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,189 @@ | ||
| <!doctype html> | ||
| <!-- | ||
| @license | ||
| Copyright 2026 Google LLC. All Rights Reserved. | ||
| SPDX-License-Identifier: Apache-2.0 | ||
| --> | ||
| <!-- [START maps_3d_hero_showcase] --> | ||
| <html> | ||
| <head> | ||
| <title>Amsterdam 3D Explorer</title> | ||
| <meta charset="utf-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
|
||
| <!-- Google Fonts --> | ||
| <link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
| <link | ||
| href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap" | ||
| rel="stylesheet" /> | ||
|
|
||
| <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: "AIzaSyA6myHzS10YXdcazAFalmXvDkrYCp5cLc8" | ||
| }); | ||
| </script> | ||
| </head> | ||
| <body> | ||
| <!-- Googly minimal floating control card --> | ||
| <div id="control-panel" class="google-card"> | ||
| <header class="card-header"> | ||
| <div class="logo-area"> | ||
| <span class="logo-text"> | ||
| <span class="g-blue">A</span> | ||
| <span class="g-red">m</span> | ||
| <span class="g-yellow">s</span> | ||
| <span class="g-blue">t</span> | ||
| <span class="g-green">e</span> | ||
| <span class="g-red">r</span> | ||
| <span class="g-blue">d</span> | ||
| <span class="g-green">a</span> | ||
| <span class="g-red">m</span> | ||
| </span> | ||
| <span class="badge-3d">3D</span> | ||
| </div> | ||
| <p class="subtitle">Rijksmuseum & attractions</p> | ||
| </header> | ||
|
|
||
| <div class="scrollable-content"> | ||
| <!-- Tour Actions --> | ||
| <div class="action-block"> | ||
| <button id="btn-start-tour" class="google-btn primary-btn"> | ||
| <span class="btn-icon">▶</span> Start Guided Tour | ||
| </button> | ||
| <button | ||
| id="btn-stop-tour" | ||
| class="google-btn danger-btn hidden"> | ||
| <span class="btn-icon">⏹</span> Stop Tour | ||
| </button> | ||
|
|
||
| <div id="tour-nav" class="tour-nav hidden"> | ||
| <button | ||
| id="btn-prev-stop" | ||
| class="nav-arrow" | ||
| title="Previous Stop"> | ||
| ◀ | ||
| </button> | ||
| <span id="tour-progress" class="progress-text" | ||
| >Stop 1 of 4</span | ||
| > | ||
| <button | ||
| id="btn-next-stop" | ||
| class="nav-arrow" | ||
| title="Next Stop"> | ||
| ▶ | ||
| </button> | ||
| </div> | ||
| </div> | ||
|
|
||
| <!-- Map Mode --> | ||
| <div class="option-block"> | ||
| <h3>Map Mode</h3> | ||
| <div class="segmented-control"> | ||
| <button id="mode-satellite" class="segment-btn active"> | ||
| Satellite | ||
| </button> | ||
| <button id="mode-hybrid" class="segment-btn"> | ||
| Hybrid | ||
| </button> | ||
| </div> | ||
| </div> | ||
|
|
||
| <!-- Layer Options --> | ||
| <div class="option-block"> | ||
| <h3>Map Layers</h3> | ||
| <div class="toggle-list"> | ||
| <label class="switch-row"> | ||
| <span class="switch-label" | ||
| ><span class="emoji">📍</span> Point-of-interest | ||
| Markers | ||
| </span> | ||
| <div class="switch-control"> | ||
| <input | ||
| type="checkbox" | ||
| id="toggle-markers" | ||
| checked /> | ||
| <span class="lever"></span> | ||
| </div> | ||
| </label> | ||
|
|
||
| <label class="switch-row"> | ||
| <span class="switch-label" | ||
| ><span class="emoji">🏢</span> Rijksmuseum 3D | ||
| Buildings | ||
| </span> | ||
| <div class="switch-control"> | ||
| <input | ||
| type="checkbox" | ||
| id="toggle-salesforce-mesh" | ||
| checked /> | ||
| <span class="lever"></span> | ||
| </div> | ||
| </label> | ||
|
|
||
| <label class="switch-row"> | ||
| <span class="switch-label" | ||
| ><span class="emoji">📐</span> Park Boundaries | ||
| (Polygons) | ||
| </span> | ||
| <div class="switch-control"> | ||
| <input | ||
| type="checkbox" | ||
| id="toggle-polygons" | ||
| checked /> | ||
| <span class="lever"></span> | ||
| </div> | ||
| </label> | ||
|
|
||
| <label class="switch-row"> | ||
| <span class="switch-label" | ||
| ><span class="emoji">⛵</span> Canal Route | ||
| (Polyline) | ||
| </span> | ||
| <div class="switch-control"> | ||
| <input | ||
| type="checkbox" | ||
| id="toggle-polyline" | ||
| checked /> | ||
| <span class="lever"></span> | ||
| </div> | ||
| </label> | ||
|
|
||
| <label class="switch-row"> | ||
| <span class="switch-label" | ||
| ><span class="emoji">⚙</span> De Gooyer 3D Model | ||
| </span> | ||
| <div class="switch-control"> | ||
| <input | ||
| type="checkbox" | ||
| id="toggle-model" | ||
| checked /> | ||
| <span class="lever"></span> | ||
| </div> | ||
| </label> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="card-footer">Google Maps 3D Platform</div> | ||
| </div> | ||
|
|
||
| <!-- Welcome Floating Alert --> | ||
| <div id="welcome-banner" class="google-card welcome-toast"> | ||
| <div class="toast-content"> | ||
| <h3>Explore Amsterdam in 3D</h3> | ||
| <p> | ||
| Start the tour to fly around the Rijksmuseum, Vondelpark, | ||
| Prinsengracht, and De Gooyer Windmill. | ||
| </p> | ||
| <button id="btn-welcome-dismiss" class="google-btn text-btn"> | ||
| Dismiss | ||
| </button> | ||
| </div> | ||
| </div> | ||
| </body> | ||
| </html> | ||
| <!-- [END maps_3d_hero_showcase] --> | ||
Oops, something went wrong.
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.