13 lines
319 B
HTML
13 lines
319 B
HTML
|
<style type="text/css">
|
||
|
/* Set a size for our map container, the Google Map will take up 100% of this container */
|
||
|
#map {
|
||
|
width: 100%;
|
||
|
height: 400px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<!-- The element that will contain our Google Map. This is used in both the Javascript and CSS above. -->
|
||
|
<div id="map">
|
||
|
|
||
|
</div>
|