6 lines
289 B
TypeScript
6 lines
289 B
TypeScript
export const MAP_RESTRICTIONS = {
|
|
// Restrict the map to the entire world, this avoids showing a grey area.
|
|
// See https://developers.google.com/maps/documentation/javascript/reference/map#MapRestriction.latLngBounds
|
|
latLngBounds: { north: 85, south: -85, west: -180, east: 180 },
|
|
}
|