Skip to content

Commit

Permalink
update map div style
Browse files Browse the repository at this point in the history
  • Loading branch information
tame0001 committed Nov 12, 2024
1 parent d941349 commit 83c465e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module6/Lecture6.2.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ <h6>Import JavaScript file into template file</h6>
&lt;/head&gt;
&lt;body&gt;
<!-- We will place the map here -->
&lt;div id="map" style="width:100%; height:100%"&gt;&lt;/div&gt;
&lt;div id="map" style="width:480px; height:480px"&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
Expand Down
2 changes: 1 addition & 1 deletion module6/lab6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Open `map.html` file and modify as below. We interpolate date from Django by wra
<body>
<!-- Add the line below -->
{{ data|json_script:"data_geojson" }}
<div id="map" style="height: 100%; width: 100%"></div>
<div id="map" style="height: 480px; width: 480px"></div>
</body>
```

Expand Down

0 comments on commit 83c465e

Please sign in to comment.