diff --git a/public/app/plugins/panel/geomap/view.ts b/public/app/plugins/panel/geomap/view.ts index e73a7efbeec..06dc175af3f 100644 --- a/public/app/plugins/panel/geomap/view.ts +++ b/public/app/plugins/panel/geomap/view.ts @@ -24,6 +24,10 @@ export const centerPointRegistry = new Registry(() => [ lat: 0, lon: 0, }, + { + id: MapCenterID.Coordinates as string, + name: 'Coordinates', + }, { id: 'north-america', name: 'North America', @@ -31,6 +35,13 @@ export const centerPointRegistry = new Registry(() => [ lon: -100, zoom: 4, }, + { + id: 'south-america', + name: 'South America', + lat: -20, + lon: -60, + zoom: 3, + }, { id: 'europe', name: 'Europe', @@ -38,6 +49,13 @@ export const centerPointRegistry = new Registry(() => [ lon: 14, zoom: 4, }, + { + id: 'africa', + name: 'Africa', + lat: 0, + lon: 30, + zoom: 3, + }, { id: 'west-asia', name: 'West Asia', @@ -45,15 +63,39 @@ export const centerPointRegistry = new Registry(() => [ lon: 53, zoom: 4, }, + { + id: 's-asia', + name: 'South Asia', + lat: 19.5, + lon: 80, + zoom: 4, + }, { id: 'se-asia', - name: 'South-east Asia', + name: 'South-East Asia', lat: 10, lon: 106, zoom: 4, }, { - id: MapCenterID.Coordinates as string, - name: 'Coordinates', + id: 'e-asia', + name: 'East Asia', + lat: 33, + lon: 120, + zoom: 4, + }, + { + id: 'australia', + name: 'Australia', + lat: -25, + lon: 135, + zoom: 4, + }, + { + id: 'oceania', + name: 'Oceania', + lat: -10, + lon: -140, + zoom: 3, }, ]);