cleanup
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-07-16 19:03:55 +02:00
parent 32bbc85e11
commit f63085bef7
2 changed files with 23 additions and 12 deletions

View File

@ -37,11 +37,11 @@ const icon_type = (item)=>{
return 'bed';
}else if(t=='museum'){
return 'landmark';
}else if(t=='peak'){
}else if(t=='peak' || t=='viewpoint'){
return 'mountain';
}else if(t=='parking'){
return 'parking';
}else if(t=='water' || t=='river'){
}else if(t=='water' || t=='river' || t=='lake' || t=='torrent'){
return 'water';
}else if(t=='community_centre'){
return 'building';
@ -51,9 +51,11 @@ const icon_type = (item)=>{
return 'landmark';
}else if(t=='bridge'){
return 'archway';
}else if(t=='a'){
}else if(t=='woodland'|| t=='shieling'){
return 'tree';
}else if(t=='?'){
return '';
}else if(t=='a'){
}else if(t=='?'){
return '';
}else{
console.log(item.category, item.type);