diff options
| author | AndrewMihai <41450954+AndrewMihai@users.noreply.github.com> | 2019-02-21 23:55:35 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-21 23:55:35 +0000 |
| commit | 0a83e2a2a42e168d18c66888bba3d3bebbbc3d29 (patch) | |
| tree | 7754c0837ae23952984bd5f9339bab4be270c51f /web/views/map.pug | |
| parent | e29d2e6c05f9fb2e6b630fed48904943625ad358 (diff) | |
| parent | 4b588e647dedbb49f54f9dd390b96f8466321ece (diff) | |
Merge pull request #12 from csc301-winter-2019/master
Merging new commits from master into feat/5 branch
Diffstat (limited to 'web/views/map.pug')
| -rw-r--r-- | web/views/map.pug | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/web/views/map.pug b/web/views/map.pug new file mode 100644 index 0000000..b7781fa --- /dev/null +++ b/web/views/map.pug @@ -0,0 +1,11 @@ +extends layout.pug +block content + #sidebar + h1 This is a sidebar + #map + + script(type='text/javascript'). + var map = L.map('map').setView([#{lat},#{lng}], 15); + script(src='/javascripts/map.js') + + |
