Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release_3_7] IGN baselayers - Fix inversion between scan & plan #4166

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
IGN baselayers - Fix inversion between scan & plan
  • Loading branch information
mdouchin authored and github-actions[bot] committed Feb 5, 2024
commit 28f18fbed49d21069600197a08a6f1479c0c160f
4 changes: 2 additions & 2 deletions assets/src/modules/config/BaseLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,8 @@ export class BaseLayersConfig {
bingStreets: { name: 'bing-road', key: 'bingKey' },
bingSatellite: { name: 'bing-aerial', key: 'bingKey' },
bingHybrid: { name: 'bing-hybrid', key: 'bingKey' },
ignTerrain: { name: 'ign-plan' },
ignStreets: { name: 'ign-scan', key: 'ignKey' },
ignTerrain: { name: 'ign-scan', key: 'ignKey' },
ignStreets: { name: 'ign-plan' },
ignSatellite: { name: 'ign-photo' },
ignCadastral: { name: 'ign-cadastral' }
};
Expand Down
Loading