diff --git a/samples/js-api-loader-map/README.md b/samples/js-api-loader-map/README.md
deleted file mode 100644
index 95cd09b5..00000000
--- a/samples/js-api-loader-map/README.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# Google Maps JavaScript Sample
-
-## js-api-loader-map
-
-The js-api-loader-map sample demonstrates how to load the Google Maps JavaScript API using the JS API Loader.
-
-Follow these instructions to set up and run js-api-loader-map sample on your local computer.
-
-## Setup
-
-### Before starting run:
-
-`$npm i`
-
-### Run an example on a local web server
-
-First `cd` to the folder for the sample to run, then:
-
-`$npm start`
-
-### Build an individual example
-
-From `samples/`:
-
-`$npm run build --workspace=js-api-loader-map/`
-
-### Build all of the examples.
-
-From `samples/`:
-`$npm run build-all`
-
-## Feedback
-
-For feedback related to this sample, please open a new issue on
-[GitHub](https://github.com/googlemaps-samples/js-api-samples/issues).
diff --git a/samples/js-api-loader-map/index.html b/samples/js-api-loader-map/index.html
deleted file mode 100644
index 95fcfa8c..00000000
--- a/samples/js-api-loader-map/index.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
- @googlemaps/js-api-loader map
-
-
-
-
-
-
@googlemaps/js-api-loader map
-
-
-
-
-
diff --git a/samples/js-api-loader-map/index.ts b/samples/js-api-loader-map/index.ts
deleted file mode 100644
index 000ad32f..00000000
--- a/samples/js-api-loader-map/index.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * @license
- * Copyright 2019 Google LLC. All Rights Reserved.
- * SPDX-License-Identifier: Apache-2.0
- */
-
-// [START maps_js_api_loader_map]
-import { Loader } from "@googlemaps/js-api-loader";
-
-const API_KEY = "AIzaSyA6myHzS10YXdcazAFalmXvDkrYCp5cLc8";
-
-async function initMap(): Promise {
- const loader = new Loader({ apiKey: API_KEY });
- const { Map } = await loader.importLibrary("maps") as google.maps.MapsLibrary;
-
- const mapOptions: google.maps.MapOptions = {
- center: { lat: 48.8566, lng: 2.3522 },
- zoom: 3,
- };
-
- const map = new Map(document.getElementById("map") as HTMLElement, mapOptions);
-
-}
-
-initMap();
-// [END maps_js_api_loader_map]
\ No newline at end of file
diff --git a/samples/js-api-loader-map/package.json b/samples/js-api-loader-map/package.json
deleted file mode 100644
index 30e54eb0..00000000
--- a/samples/js-api-loader-map/package.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "name": "@js-api-samples/js-api-loader-map",
- "version": "1.0.0",
- "description": "Demonstrates loading the Google Maps JavaScript API dynamically using @googlemaps/js-api-loader.",
- "scripts": {
- "build": "tsc && parcel build index.html",
- "test": "tsc",
- "start": "parcel index.html --port 5173",
- "preview": "npm run start"
- },
- "keywords": [],
- "author": "",
- "license": "MIT",
- "dependencies": {
- "@googlemaps/js-api-loader": "^2.0.2"
- },
- "devDependencies": {
- "@types/google.maps": "^3.49.2",
- "parcel": "^2.16.1",
- "typescript": "^5.9.3"
- }
-}
diff --git a/samples/js-api-loader-map/style.css b/samples/js-api-loader-map/style.css
deleted file mode 100644
index 2d3dc247..00000000
--- a/samples/js-api-loader-map/style.css
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * @license
- * Copyright 2019 Google LLC. All Rights Reserved.
- * SPDX-License-Identifier: Apache-2.0
- */
-/* [START maps_js_api_loader_map] */
-html, body {
- height: calc(100vh - 100px);
- padding: 0;
- font-family:Arial, Helvetica, sans-serif ;
-}
-
-#map {
- height: calc(100vh - 100px);
-}
-
-h1{
- height:30px
-}
-
-@media screen and (max-width: 600px) {
- h1 {
- font-size: 1.2em;
- }
-}
-/* [END maps_js_api_loader_map] */
\ No newline at end of file
diff --git a/samples/js-api-loader-map/tsconfig.json b/samples/js-api-loader-map/tsconfig.json
deleted file mode 100644
index 8b901b2f..00000000
--- a/samples/js-api-loader-map/tsconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "compilerOptions": {
- "target": "es2020",
- "module": "es2020",
- "lib": ["dom", "es2020"],
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "moduleResolution": "node"
- },
- "include": ["index.ts"]
-}
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/README.md b/samples/map-drawing-terradraw/README.md
deleted file mode 100644
index fb641c5a..00000000
--- a/samples/map-drawing-terradraw/README.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# Basic Terra Draw with Google Maps API Sample
-
-This sample demonstrates a basic implementation of Terra Draw with the Google Maps JavaScript API. It includes various drawing modes such as Point, LineString, Polygon, Rectangle, Circle, and Freehand.
-
-
-
-
-# Google Maps JavaScript Sample
-
-## map-drawing-terradraw
-
-The map-drawing-terradraw sample demonstrates how to use Terra Draw with the Google Maps JavaScript API to draw on a map.
-
-Follow these instructions to set up and run map-drawing-terradraw sample on your local computer.
-
-## Setup
-
-### Before starting run:
-
-`$npm i`
-
-### Run an example on a local web server
-
-First `cd` to the folder for the sample to run, then:
-
-`$npm start`
-
-### Build an individual example
-
-From `samples/`:
-
-`$npm run build --workspace=map-drawing-terradraw/`
-
-### Build all of the examples.
-
-From `samples/`:
-`$npm run build-all`
-
-## Feedback
-
-For feedback related to this sample, please open a new issue on
-[GitHub](https://github.com/googlemaps-samples/js-api-samples/issues).
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/circle.svg b/samples/map-drawing-terradraw/img/circle.svg
deleted file mode 100644
index 14c34679..00000000
--- a/samples/map-drawing-terradraw/img/circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/cursor.svg b/samples/map-drawing-terradraw/img/cursor.svg
deleted file mode 100644
index b221f5a2..00000000
--- a/samples/map-drawing-terradraw/img/cursor.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/delete-selected.svg b/samples/map-drawing-terradraw/img/delete-selected.svg
deleted file mode 100644
index f15806a0..00000000
--- a/samples/map-drawing-terradraw/img/delete-selected.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/delete.svg b/samples/map-drawing-terradraw/img/delete.svg
deleted file mode 100644
index ef53c233..00000000
--- a/samples/map-drawing-terradraw/img/delete.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/download.svg b/samples/map-drawing-terradraw/img/download.svg
deleted file mode 100644
index 77e5a2c5..00000000
--- a/samples/map-drawing-terradraw/img/download.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/drawing-icons.png b/samples/map-drawing-terradraw/img/drawing-icons.png
deleted file mode 100644
index 533c0215..00000000
Binary files a/samples/map-drawing-terradraw/img/drawing-icons.png and /dev/null differ
diff --git a/samples/map-drawing-terradraw/img/freehand.svg b/samples/map-drawing-terradraw/img/freehand.svg
deleted file mode 100644
index 03d88325..00000000
--- a/samples/map-drawing-terradraw/img/freehand.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/point.svg b/samples/map-drawing-terradraw/img/point.svg
deleted file mode 100644
index 1ed3445c..00000000
--- a/samples/map-drawing-terradraw/img/point.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/polygon.png b/samples/map-drawing-terradraw/img/polygon.png
deleted file mode 100644
index 8f81fd1f..00000000
Binary files a/samples/map-drawing-terradraw/img/polygon.png and /dev/null differ
diff --git a/samples/map-drawing-terradraw/img/polyline.svg b/samples/map-drawing-terradraw/img/polyline.svg
deleted file mode 100644
index bded9e38..00000000
--- a/samples/map-drawing-terradraw/img/polyline.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/rectangle.svg b/samples/map-drawing-terradraw/img/rectangle.svg
deleted file mode 100644
index 7212d384..00000000
--- a/samples/map-drawing-terradraw/img/rectangle.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/redo.svg b/samples/map-drawing-terradraw/img/redo.svg
deleted file mode 100644
index 7530e675..00000000
--- a/samples/map-drawing-terradraw/img/redo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/resize.svg b/samples/map-drawing-terradraw/img/resize.svg
deleted file mode 100644
index 61ef36c6..00000000
--- a/samples/map-drawing-terradraw/img/resize.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/rotate.svg b/samples/map-drawing-terradraw/img/rotate.svg
deleted file mode 100644
index 4100e605..00000000
--- a/samples/map-drawing-terradraw/img/rotate.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/select.svg b/samples/map-drawing-terradraw/img/select.svg
deleted file mode 100644
index 1cd538ef..00000000
--- a/samples/map-drawing-terradraw/img/select.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/undo.svg b/samples/map-drawing-terradraw/img/undo.svg
deleted file mode 100644
index 73fca034..00000000
--- a/samples/map-drawing-terradraw/img/undo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/img/upload.svg b/samples/map-drawing-terradraw/img/upload.svg
deleted file mode 100644
index 3ff766b6..00000000
--- a/samples/map-drawing-terradraw/img/upload.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/samples/map-drawing-terradraw/index.html b/samples/map-drawing-terradraw/index.html
deleted file mode 100644
index 48c18039..00000000
--- a/samples/map-drawing-terradraw/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
- Terra Draw with Google Maps API Sample
-
-
-
-
-
-
-
-
-