I have markers on a google map from points provided by a database of Latitude & Longitude but i want draw the line between markers, how?
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { height: 100% }
</style>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var map
function initialize() {
alert("hai");
var markers = JSON.parse('<%=ConvertDataTabletoString() %>');
alert("json");
var mapOptions = {
center: new google.maps.LatLng(markers[0].Latitude, markers[0].Longitude),
zoom: 5,
mapTypeId: google.maps.MapTyp ...
Go to the complete details ...