Single Marker Example
1600 Amphitheatre Parkway Mountain View, CA 94043
North From 1600 Amphitheatre Parkway Mountain View, CA 94043
More North From 1600 Amphitheatre Parkway Mountain View, CA 94043
Code:
<div id="address1">1600 Amphitheatre Parkway Mountain View, CA 94043</div>
<div id="address2">North From 1600 Amphitheatre Parkway Mountain View, CA 94043</div>
<div id="address3">More North From 1600 Amphitheatre Parkway Mountain View, CA 94043</div>
$(document).ready(function() {
$('#map_canvas').googleMaps({
markers: [{
latitude: 37.4416,
longitude: -122.1516,
info: {
layer: '#address1'
}
},{
latitude: 37.4516,
longitude: -122.1616,
info: {
layer: '#address2'
}
},{
latitude: 37.4566,
longitude: -122.1666,
info: {
layer: '#address3'
}
}]
});
});