forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			685 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			685 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {TagRenderingOptions} from "../../TagRendering";
 | |
| import {Tag} from "../../../Logic/TagsFilter";
 | |
| import Translations from "../../../UI/i18n/Translations";
 | |
| 
 | |
| 
 | |
| export default class BikeStationStand extends TagRenderingOptions {
 | |
|     constructor() {
 | |
|         const to = Translations
 | |
|         super({
 | |
|             priority: 10,
 | |
|             question: "Does this bike station have a hook to suspend your bike with or a stand to elevate it?",
 | |
|             mappings: [
 | |
|                 {k: new Tag("service:bicycle:stand", "yes"), txt: "There is a hook or stand"},
 | |
|                 {k: new Tag("service:bicycle:stand", "no"), txt: "There is no hook or stand"},
 | |
|             ]
 | |
|         });
 | |
|     }
 | |
| }
 |