Skip to content

Commit 269ce89

Browse files
authored
Map - change providers order in demo (#28390)
1 parent 7e704b1 commit 269ce89

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ const mapTypes: MapSetting[] = [{
3030
const mapProviders: MapSetting[] = [{
3131
key: 'azure',
3232
name: 'Azure',
33-
}, {
34-
key: 'bing',
35-
name: 'Bing',
3633
}, {
3734
key: 'google',
3835
name: 'Google',
36+
}, {
37+
key: 'bing',
38+
name: 'Bing',
3939
}];
4040

4141
@Injectable()

apps/demos/Demos/Map/ProvidersAndTypes/React/data.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ export const mapTypes: { key: MapType, name: string }[] = [{
1414
export const mapProviders: { key: MapProvider, name: string }[] = [{
1515
key: 'azure',
1616
name: 'Azure',
17-
}, {
18-
key: 'bing',
19-
name: 'Bing',
2017
}, {
2118
key: 'google',
2219
name: 'Google',
20+
}, {
21+
key: 'bing',
22+
name: 'Bing',
2323
}];
2424

2525
export const mapTypeLabel = { 'aria-label': 'Map Type' };

apps/demos/Demos/Map/ProvidersAndTypes/ReactJs/data.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ export const mapProviders = [
1717
key: 'azure',
1818
name: 'Azure',
1919
},
20-
{
21-
key: 'bing',
22-
name: 'Bing',
23-
},
2420
{
2521
key: 'google',
2622
name: 'Google',
2723
},
24+
{
25+
key: 'bing',
26+
name: 'Bing',
27+
},
2828
];
2929
export const mapTypeLabel = { 'aria-label': 'Map Type' };
3030
export const mapProviderLabel = { 'aria-label': 'Map Provider' };

apps/demos/Demos/Map/ProvidersAndTypes/Vue/data.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export const mapTypes = [{
1212
export const mapProviders = [{
1313
key: 'azure',
1414
name: 'Azure',
15-
}, {
16-
key: 'bing',
17-
name: 'Bing',
1815
}, {
1916
key: 'google',
2017
name: 'Google',
18+
}, {
19+
key: 'bing',
20+
name: 'Bing',
2121
}];

apps/demos/Demos/Map/ProvidersAndTypes/jQuery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ $(() => {
1010
name: 'Hybrid Map',
1111
}];
1212

13-
const mapProviders = ['Azure', 'Bing', 'Google'];
13+
const mapProviders = ['Azure', 'Google', 'Bing'];
1414

1515
const map = $('#map').dxMap({
1616
center: '40.7061, -73.9969',

0 commit comments

Comments
 (0)