(self)
| 64 | return self.get_search_control() |
| 65 | |
| 66 | def fullmap(self): |
| 67 | args = get_args() |
| 68 | fixed_display = "none" if args.fixed_location else "inline" |
| 69 | search_display = "inline" if args.search_control else "none" |
| 70 | |
| 71 | return render_template('map.html', |
| 72 | lat=self.current_location[0], |
| 73 | lng=self.current_location[1], |
| 74 | gmaps_key=config['GMAPS_KEY'], |
| 75 | lang=config['LOCALE'], |
| 76 | is_fixed=fixed_display, |
| 77 | search_control=search_display |
| 78 | ) |
| 79 | |
| 80 | def raw_data(self): |
| 81 | d = {} |
nothing calls this directly
no test coverage detected