Google Maps with GoMap

A straight copy-and-paste of a Google Map isn't considered an "interaction" for assignment purposes, but this simple jQuery plugin allows you to place maps and set destinations, zoom level and many other properties.

Map goes in here...

Notes:


See the code:

<!-- Link to the Google Maps Javascript API -->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
	
<!-- Link to jQuery framework -->
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
	
<!-- Link to the goMap plugin -->
<script type="text/javascript" src="js/jquery.gomap-1.3.2.js"></script>

<script type="text/javascript">
$(function() {
	$("#map").goMap({
		address : 'Perth, Australia',
		zoom : 10
	});
});
</script>