Question : jquery - gmaps

Hello experts.
I'm using the jquery gmaps plugin from:http://gmap.nurtext.de/

I want to add links to the page with a function to open the infowindow for each pointer.(like hiting on the pointer).
Any help?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
<!--http://gmap.nurtext.de/examples.html -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
	<title>gMap - Google Maps Plugin For jQuery | Examples</title>
	
	<link rel="stylesheet" type="text/css" href="css/nurtext.css" media="all" />
	<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
	
	<script type="text/javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAA6cQIrMEc9zlaKBjWiPM5rxSjlBXfTSDcGsB79vzL90uiOHMpbBRa1FFoX2YfuQNFvFKxQtpz0ZCeuw&amp;hl=en"></script>
	<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
	<script type="text/javascript" src="js/jquery.gmap-1.1.0-min.js"></script>
	
	<script type="text/javascript">
	$(function()
	{
		$("#map4").gMap({ markers:[
							{ latitude: 47.651968,longitude: 9.478485,
                              html: "First Link" ,
							  icon: { image: "images/gmap_pin_orange.png",
                              		  iconsize: [26, 46],
                              		  iconanchor: [12,46],
                              		  infowindowanchor: [12, 0] }},
                            { latitude: 47.58969,longitude: 9.473413,
							  address: "Tettnang, Germany",
                              html: "Second Link",
							  icon: { image: "images/gmap_pin_grey.png",
                              		  iconsize: [26, 46],
                              		  iconanchor: [12,46],
                              		  infowindowanchor: [12, 0] }},
                            { latitude: 47.670553,longitude: 9.588479,
							  address: "Langenargen, Germany",
                              html: "Third Link,_address" ,
							  icon: { image: "images/gmap_pin_orange.png",
                              		  iconsize: [26, 46],
                              		  iconanchor: [12,46],
                              		  infowindowanchor: [12, 0] }}
									  ],
                  address: "Braitenrain, Germany",
                  zoom: 10 });
	});
	</script>
</head>
<body id="top">
	<div id="center">
		<div id="content">
           <div id="map4" style="width: 660px; height: 500px; border: 1px solid #777; overflow: hidden;"></div>
        </div>
	</div>
    <div id="links" align="center">
       <ul id="gmaplinks">
         <li id="gmaplink_1"><div><a href="#">First Link</a></div></li>
         <li id="gmaplink_2"><div><a href="#">Second Link</a></div></li>
         <li id="gmaplink_3"><div><a href="#">Third Link</a></div></li>
       </ul>
    </div>
</body>
</html>

Answer : jquery - gmaps

You could do this with PowerGUI (freeware), and create custom queries and export accordingly -

http://www.powergui.org/downloads.jspa

Otherwise, did you want this in VB?

Lee
Random Solutions  
 
programming4us programming4us