Added map quality option and selector in map select screen

This commit is contained in:
Mitchell McCaffrey
2020-07-15 17:17:11 +10:00
parent b1d542d170
commit e4b3897ac4
5 changed files with 73 additions and 25 deletions

View File

@@ -21,7 +21,7 @@ function MapTile({
const isDefault = map.type === "default";
const mapSource = useDataSource(
isDefault ? map : map.resolutions.length > 0 ? map.resolutions[0] : map,
isDefault ? map : map.resolutions.low ? map.resolutions.low : map,
defaultMapSources,
unknownSource
);