/**
 * Data of the hotspots locations for each place are declared as JS object
 * each hotspot is defined by the next properties:
 * - simpleContent: String with the HTML content in the info window.
 * - maximizedContent : URL of the HTML page (AJAX loaded) of the maximized info window.
 * - latitude: latitude of the geographic poing (you can use infopanel for obtain that)
 * - longitude: longitude of the geographic poing (you can use infopanel for obtain that)
 * - zoom: zoom level for hotspot links
 * - icon: url of the custom icon for this place
 */
var locations_data = { locations: [
	
	{
		simpleContent: "新濱鐵板燒<br />台北市松山區 105 光復北路 11巷 33 號 B1",
		maximizedContent: "",
		latitude: 25.049911021422943,
		longitude: 121.55949890613556,
		zoom: 17,
		icon: "images/newham_map.jpg"
	}
	
]};

$(document).ready(function(){
	$("#gmaps_container").gmaps({
		data: locations_data,
		infopanel: $("#gmaps_info").get(0),
		relativepath: "http://www.newhama.com.tw/"
	});
});