Click here to Skip to main content
15,889,838 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi.......

i have drawn some area in a map and giving some name to that area saved in data base.now iam getting that name into dropdownlist and i want to display that drawn area into map when click that name.plz help me..
Posted

Get the longutide and latitude coordinates from your database, and the zoom level. Place those data into their respective positions of the URL.
 
Share this answer
 
Comments
rajasekhar57 28-Feb-12 6:44am    
I think this code for getting the particular area where u want
<title>

type="text/javascript"&gt;





var locations = [['Bondi Beach', -33.890542, 151.274856], ['Coogee Beach', -33.923036, 151.259052], ['Cronulla Beach', -34.028249, 151.157507], ['Manly Beach', -33.800128, 151.282085], ['Maroubra Beach', -33.950198, 151.259302]];
var map = new GMap2(document.getElementById('map'));
var i; map.setCenter(new GLatLng(-33.92, 151.25), 10);
for (i = 0; i &lt; locations.length; i++)
{
var marker = new GMarker(new GLatLng(locations[i][1], locations[i][2]));
map.addOverlay(marker);
GEvent.addListener(marker, "click", function ()
{
marker.openInfoWindowHtml("hi");
});
}



 
Share this answer
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAnfs7bKE82qgb3Zc2YyS-oBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSySz_REpPq-4WZA27OwgbtyR3VcA&sensor=false"
type="text/javascript"></script>
</head>
<body>
<form id="form1" runat="server">
<div id="map" style="width: 500px; height: 400px;"></div>
<script type="text/javascript">
var locations = [['Bondi Beach', -33.890542, 151.274856], ['Coogee Beach', -33.923036, 151.259052], ['Cronulla Beach', -34.028249, 151.157507], ['Manly Beach', -33.800128, 151.282085], ['Maroubra Beach', -33.950198, 151.259302]];
var map = new GMap2(document.getElementById('map'));
var i; map.setCenter(new GLatLng(-33.92, 151.25), 10);
for (i = 0; i < locations.length; i++)
{
var marker = new GMarker(new GLatLng(locations[i][1], locations[i][2]));
map.addOverlay(marker);
GEvent.addListener(marker, "click", function ()
{
marker.openInfoWindowHtml("hi");
});
}
</script>
</form>
</body>
</html>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900