Stay organized with collections
Save and categorize content based on your preferences.
This example creates a map that starts in Auckland, New Zealand. The map is
restricted to New Zealand. The user can pan away from Auckland and explore other
New Zealand cities, but the user cannot pan or zoom to beyond the constraints
set on the map.
Try panning north, or zooming out, to see what happens when a user tries to move
beyond these boundaries.
/* * Always set the map height explicitly to define the size of the div element * that contains the map. */#map{height:100%;}/* * Optional: Makes the sample page fill the window. */html,body{height:100%;margin:0;padding:0;}
<html>
<head>
<title>Map Bounds Restriction</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<script type="module" src="./index.js"></script>
</head>
<body>
<div id="map"></div>
<!--
The `defer` attribute causes the script to execute after the full HTML
document has been parsed. For non-blocking uses, avoiding race conditions,
and consistent behavior across browsers, consider loading using Promises. See
https://developers.google.com/maps/documentation/javascript/load-maps-js-api
for more information.
-->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly"
defer
></script>
</body>
</html>
Git and Node.js are required to run this sample locally. Follow these instructions to install Node.js and NPM. The following commands clone, install dependencies and start the sample application.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003eThis example demonstrates how to restrict the panning and zooming boundaries of a Google Map to a specific region, in this case, New Zealand.\u003c/p\u003e\n"],["\u003cp\u003eThe map is initialized centered on Auckland, New Zealand, and users can explore other cities within the country.\u003c/p\u003e\n"],["\u003cp\u003eUsers are prevented from panning or zooming outside the defined boundaries of New Zealand.\u003c/p\u003e\n"],["\u003cp\u003eThe sample code is provided in both TypeScript and JavaScript, along with HTML and CSS for styling and structure.\u003c/p\u003e\n"]]],[],null,["This example creates a map that starts in Auckland, New Zealand. The map is\nrestricted to New Zealand. The user can pan away from Auckland and explore other\nNew Zealand cities, but the user cannot pan or zoom to beyond the constraints\nset on the map.\n\nTry panning north, or zooming out, to see what happens when a user tries to move\nbeyond these boundaries. \n\nTypeScript \n\n```typescript\nlet map: google.maps.Map;\n\nconst NEW_ZEALAND_BOUNDS = {\n north: -34.36,\n south: -47.35,\n west: 166.28,\n east: -175.81,\n};\nconst AUCKLAND = { lat: -37.06, lng: 174.58 };\n\nfunction initMap(): void {\n map = new google.maps.Map(document.getElementById(\"map\") as HTMLElement, {\n center: AUCKLAND,\n restriction: {\n latLngBounds: NEW_ZEALAND_BOUNDS,\n strictBounds: false,\n },\n zoom: 7,\n });\n}\n\ndeclare global {\n interface Window {\n initMap: () =\u003e void;\n }\n}\nwindow.initMap = initMap;https://github.com/googlemaps/js-samples/blob/2683f7366fb27829401945d2a7e27d77ed2df8e5/samples/control-bounds-restriction/index.ts#L8-L34\n```\n| **Note:** Read the [guide](/maps/documentation/javascript/using-typescript) on using TypeScript and Google Maps.\n\nJavaScript \n\n```javascript\nlet map;\nconst NEW_ZEALAND_BOUNDS = {\n north: -34.36,\n south: -47.35,\n west: 166.28,\n east: -175.81,\n};\nconst AUCKLAND = { lat: -37.06, lng: 174.58 };\n\nfunction initMap() {\n map = new google.maps.Map(document.getElementById(\"map\"), {\n center: AUCKLAND,\n restriction: {\n latLngBounds: NEW_ZEALAND_BOUNDS,\n strictBounds: false,\n },\n zoom: 7,\n });\n}\n\nwindow.initMap = initMap;https://github.com/googlemaps/js-samples/blob/2683f7366fb27829401945d2a7e27d77ed2df8e5/dist/samples/control-bounds-restriction/docs/index.js#L7-L27\n```\n| **Note:** The JavaScript is compiled from the TypeScript snippet.\n\nCSS \n\n```css\n/* \n * Always set the map height explicitly to define the size of the div element\n * that contains the map. \n */\n#map {\n height: 100%;\n}\n\n/* \n * Optional: Makes the sample page fill the window. \n */\nhtml,\nbody {\n height: 100%;\n margin: 0;\n padding: 0;\n}\nhttps://github.com/googlemaps/js-samples/blob/2683f7366fb27829401945d2a7e27d77ed2df8e5/dist/samples/control-bounds-restriction/docs/style.css#L7-L24\n```\n\nHTML \n\n```html\n\u003chtml\u003e\n \u003chead\u003e\n \u003ctitle\u003eMap Bounds Restriction\u003c/title\u003e\n\n \u003clink rel=\"stylesheet\" type=\"text/css\" href=\"./style.css\" /\u003e\n \u003cscript type=\"module\" src=\"./index.js\"\u003e\u003c/script\u003e\n \u003c/head\u003e\n \u003cbody\u003e\n \u003cdiv id=\"map\"\u003e\u003c/div\u003e\n\n \u003c!-- \n The `defer` attribute causes the script to execute after the full HTML\n document has been parsed. For non-blocking uses, avoiding race conditions,\n and consistent behavior across browsers, consider loading using Promises. See\n https://developers.google.com/maps/documentation/javascript/load-maps-js-api\n for more information.\n --\u003e\n \u003cscript\n src=\"https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly\"\n defer\n \u003e\u003c/script\u003e\n \u003c/body\u003e\n\u003c/html\u003ehttps://github.com/googlemaps/js-samples/blob/2683f7366fb27829401945d2a7e27d77ed2df8e5/dist/samples/control-bounds-restriction/docs/index.html#L8-L30\n```\n\nTry Sample \n[JSFiddle.net](https://jsfiddle.net/gh/get/library/pure/googlemaps/js-samples/tree/master/dist/samples/control-bounds-restriction/jsfiddle) [Google Cloud Shell](https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fgooglemaps%2Fjs-samples&cloudshell_git_branch=sample-control-bounds-restriction&cloudshell_tutorial=cloud_shell_instructions.md&cloudshell_workspace=.)\n\nClone Sample\n\n\nGit and Node.js are required to run this sample locally. Follow these [instructions](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) to install Node.js and NPM. The following commands clone, install dependencies and start the sample application. \n\n git clone -b sample-control-bounds-restriction https://github.com/googlemaps/js-samples.git\n cd js-samples\n npm i\n npm start\n\n\nOther samples can be tried by switching to any branch beginning with `sample-`\u003cvar translate=\"no\"\u003eSAMPLE_NAME\u003c/var\u003e. \n\n git checkout sample-\u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-nx\"\u003eSAMPLE_NAME\u003c/span\u003e\u003c/var\u003e\n npm i\n npm start"]]