Skip to content

Commit

Permalink
Make map_link also drop a marker on top of the venue to make it Even …
Browse files Browse the repository at this point in the history
…More Obvious
  • Loading branch information
lukegb committed May 24, 2024
1 parent 0aa4b61 commit dc5f2cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/cfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def latlon(self):
def map_link(self) -> Optional[str]:
latlon = self.latlon
if latlon:
return "https://map.emfcamp.org/#18.5/%s/%s" % (latlon[0], latlon[1])
return "https://map.emfcamp.org/#18.5/%s/%s/m=%s,%s" % (latlon[0], latlon[1], latlon[0], latlon[1])
return None

@property
Expand Down

0 comments on commit dc5f2cb

Please sign in to comment.