MCPcopy Index your code
hub / github.com/RocketMap/RocketMap / fullmap

Method fullmap

pogom/app.py:66–78  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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 = {}

Callers

nothing calls this directly

Calls 1

get_argsFunction · 0.90

Tested by

no test coverage detected