jQMaps - a Google Maps plugin

This is a sample of jqmaps plugin developed by SeViR. Download jqmaps.js

Go to HotSpots

CODE:
var locations_data = { locations: [
	{
		simpleContent: "Point 1",
		maximizedContent: "",
		latitude: 37.985096,
		longitude: -1.128459,
		zoom:  16,
		icon: "imgs/10888.gif"
	},
	{
		simpleContent: "Point 2",
		maximizedContent: "advanced_info/sample.html",
		latitude: 37.980758,
		longitude: -1.130877,
		zoom: 16,
		icon: "imgs/10937.gif"
	}
]};

$(document).ready(function(){
	$("#gmaps_container").gmaps({
		data: locations_data,
		infopanel: $("#gmaps_info").get(0),
		relativepath: "http://projects.sevir.org/storage/jqmaps/"
	});
});