Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/365.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/304.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 从MySQL Google Maps v3上的表中删除标记_Php_Javascript_Mysql_Google Maps Api 3 - Fatal编程技术网

Php 从MySQL Google Maps v3上的表中删除标记

Php 从MySQL Google Maps v3上的表中删除标记,php,javascript,mysql,google-maps-api-3,Php,Javascript,Mysql,Google Maps Api 3,我想从我的数据库中删除特定的标记,我可以用一个“ID”保存,我不想用相同的ID从数据库中删除 例如,如果我保存20个航路点,每个标记的id将为(1,2,3,…,20) 我想在JavaScript上使用这个值,并从PHP代码表中删除一行特定的代码, 例如,如果我在我的项目上单击一个标记,它将自动从地图和数据库中删除,我在这里有一个代码: 用我的尝试编辑 function bindInfoWindow(marker, map, infoWindow, html, deleta) { goog

我想从我的数据库中删除特定的标记,我可以用一个“ID”保存,我不想用相同的ID从数据库中删除

例如,如果我保存20个航路点,每个标记的id将为(1,2,3,…,20)

我想在JavaScript上使用这个值,并从PHP代码表中删除一行特定的代码, 例如,如果我在我的项目上单击一个标记,它将自动从地图和数据库中删除,我在这里有一个代码:

用我的尝试编辑

 function bindInfoWindow(marker, map, infoWindow, html, deleta) {

  google.maps.event.addListener(marker, 'click', function() {
    infoWindow.setContent(html);
    infoWindow.open(map, marker);


  });
   google.maps.event.addListener(marker, 'rightclick', function() 
       {    
           marker.setVisible(false) 
              alert(deleta)
              deleteMK(deleta)
    });


}

function deleteMK(deleta)
    {
        alert("vai");
         var url2 = "phpsqlinfo_addrow.php?deleta=" + deleta;   
    downloadUrl2(url2, function(data3, responseCode) 

    {
        if (responseText == 200 && data3.length <= 1) 
        {
            document.getElementById("message").innerHTML = "Deletado";
            window.location.reload()
        }
    });     
    }

    var string2 = JSON.stringify(data3)
//Função ajax que salva os marcadores no mapa
function downloadUrl2(url2, callback) 
{
    var request2 = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
    request2.open('POST',url2);
    request2.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
    request2.send('command=delete&marker='+string2)
    request2.onreadystatechange = function()
    {
        if(request2.readyState==4) 
        {   
            //infowindow.close();
            alert('Deletado')

        }
    }
}

只要标记的ID是comum,您就不能简单地以正常方式使用它,并且需要使用ID删除它,您应该尝试使用日期和时间变量将ID设置为标记。在这种情况下,这是很有用的,因为时间只会向前移动

尝试将创建标记的日期和时间转换为小时、分钟或秒,并将其设置为标记ID,并将其用作数据库中标记的FK


对不起,我的英语不好。

**无论您做什么,都不要在查询中使用未经转换的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" xmlns:v="urn:schemas-microsoft-com:vml">
<!--http://www.askdata.net/propmap/mapdata.php-->
<!DOCTYPE html >
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false">
</script> 
<script type="text/javascript">
//<![CDATA[

var directionDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var image = new google.maps.MarkerImage('http://Violette.com/MapFiles
/Icons.png');
//var side_bar_html = ""; 
//var gmarkers = [];

function load() {
  directionsDisplay = new google.maps.DirectionsRenderer(); 
  //directionsDisplay.setMap(map);
  var map = new google.maps.Map(document.getElementById("map"), {
    center: new google.maps.LatLng(11.342339,77.727497), //'mapTypeControlOptions':  
    {style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    zoom: 12,
    mapTypeId: 'roadmap'
  });
  directionsDisplay.setMap(map);
  var infoWindow = new google.maps.InfoWindow;
  var sidebar = document.getElementById('sidebar');
      var point = [];
      var point1 = [];
      var path = [];
      //var waypoints = [];

  //var school = document.getElementById("school").value;
  downloadUrl("support.php", function(data) {
    var xml = data.responseXML;
    var markers = xml.documentElement.getElementsByTagName("point");
      for (var i = 0; i < markers.length; i++) {
      var name = markers[i].getAttribute("s_name");
      var img5 = markers[i].getAttribute("image_type");
      var school = markers[i].getAttribute("school");
      var type = markers[i].getAttribute("type");
      point = new google.maps.LatLng(
          parseFloat(markers[i].getAttribute("lat")),
          parseFloat(markers[i].getAttribute("lng")));
      var html = "<b>" + type + "</b>";

      var image_in = "<img src='http://sundar.lan/tele3/images/"+ img5 + "'/>";

      var icon = type;
      var marker = new google.maps.Marker({
        map: map,
        position: point,
        draggable: true,
        icon: icon.icon 
      });
     var name = '<h3>' + "Students :" +'</h3>'+'<h4>' + name +'</h4>';
     //var img = '<h3>' +'<b>' + img5 +  '</b>'+'</h3>';

     bindInfoWindow(marker, map, infoWindow, name,image_in);
     // var sidebarEntry = createSidebarEntry(marker, type);
     sidebar.appendChild(createSidebarEntry(marker,type));
    }


    for (var j = 0; j < markers.length; j++) {
      point1[j] = new google.maps.LatLng(
          parseFloat(markers[j].getAttribute("lat")),
          parseFloat(markers[j].getAttribute("lng")));
          var flight = new google.maps.Polyline({
              path: point1,
              strokeColor: '#FF0000',
              strokeOpacity: 1.0,
              strokeWeight:2
            });
     flight.setMap(map);
     calcRoute(point1);
     console.log(point1);
    }
  });

  function createSidebarEntry(marker,type) { 
  var div = document.createElement('div');
  var html = '<h2>' +'<b>' + type +  '</b>'+'</h2>';
  div.innerHTML = html;
  div.style.cursor = 'pointer';
  div.style.marginBottom = '5px'; 
  google.maps.event.addDomListener(div, 'click', function() {
    google.maps.event.trigger(marker, 'click');
  });
  google.maps.event.addDomListener(div, 'mouseover', function() { 
    div.style.backgroundColor = '#eee';
  });
  google.maps.event.addDomListener(div, 'mouseout', function() {
    div.style.backgroundColor = '#fff';
  });
  return div;
}
}

function bindInfoWindow(marker,map, infoWindow, name,image_in) {
  google.maps.event.addListener(marker, 'click', function() {
    infoWindow.setContent(name + image_in);
    infoWindow.open(map, marker); 
  });
}

function calcRoute(path) {
    //alert(path);
    for(var k=0; k<path.length-1; k++)   
    { 
    var waypoints = [];
    //alert(k);
    var request = {
        origin:path[k],
        destination:path[k+1],
        travelMode: google.maps.DirectionsTravelMode.DRIVING    
    };
    directionsService.route(request, function(response, status) { 
      if (status == google.maps.DirectionsStatus.OK) {
        directionsDisplay.setDirections(response);
        //selected_path =  
    selected_path.concat(results.routes[0].overview_path);
      }
      /*else {
  // alert an error message when the route could nog be calculated.
  if (status == 'ZERO_RESULTS') {
    alert('No route could be found between the origin and destination.');
  } else if (status == 'UNKNOWN_ERROR') {
    alert('A directions request could not be processed due to a server error. The 
  request may succeed if you try again.');
  } else if (status == 'REQUEST_DENIED') {
    alert('This webpage is not allowed to use the directions service.');
  } else if (status == 'OVER_QUERY_LIMIT') {
    alert('The webpage has gone over the requests limit in too short a period of 
  time.');
  } else if (status == 'NOT_FOUND') {
    alert('At least one of the origin, destination, or waypoints could not be 
  geocoded.');
  } else if (status == 'INVALID_REQUEST') {
    alert('The DirectionsRequest provided was invalid.');        
  } else {
    alert("There was an unknown error in your request. Requeststatus: nn"+status);
  }
  }*/
    });
    }
  }

  function downloadUrl(url, callback) {
  var request = window.ActiveXObject ?
      new ActiveXObject('Microsoft.XMLHTTP') :
      new XMLHttpRequest;

  request.onreadystatechange = function() {
    if (request.readyState == 4) {
      request.onreadystatechange = doNothing;
      callback(request, request.status);
    }
  };

  request.open('GET', url, true);
  request.send(null);
}

function doNothing() {}


//]]>

</script> 

</head>
<body onload="load();">
<!--<div style="width:1200px; font-family:Arial, sans-serif; font-size:11px; 
border:2px solid #999;"> 
<div align="center" style="width:1200px; height:50px; font-family:Arial, sans-serif; 
font-size:11px; border:3px solid #CCC; color:#0099CC;"><h1>Students stop list's</h1>   
</div>
-->  
<div style="color:#09F; margin-left:550px;"><h2>Students stop list's</h2></div>
<table style="border:#999999 2px solid;"> 
<tbody>  
  <tr id="cm_mapTR">
    <td width="200" valign="top">
     <!--<b>Select:</b><select name="school" id="school" onChange="load();">
     <option value="">--Select--</option>
     <option value="1">BNKN</option>
     <option value="2">SEVENTH DAY</option>
     </select>-->
     <div id="sidebar" style="overflow: auto; height: 520px; font-size: 11px; color:  
 #000;"></div> 
    </td>
    <td> <div id="map" style="overflow: hidden; width: 1150px; height: 520px; 
 border:2px solid #999;"></div> </td>
  </tr> 
 </tbody>
 </table>
 <!--</div>-->
 </body>
 </html>

<markers><line colour="#008800" width="8" html="You clicked the green polyline"><point 
lat="11.3135" lng="77.6658" type="BUS:0001" s_name="Sundar,Arul,Praveen" 
image_type="images2.jpg"/><point lat="11.3149" lng="77.6687" type="BUS:0001" 
s_name="Laxman,Dravid,Ganguly" image_type="images2.jpg"/><point lat="11.3174" 
lng="77.6718" type="BUS:0001" s_name="Vijay,Ajith,Surya" image_type="images2.jpg"/>
<point lat="11.3203" lng="77.6751" type="BUS:0001" s_name="Vikram,Ravi,Krishna" 
image_type="images2.jpg"/><point lat="11.3227" lng="77.6804" type="BUS:0001" 
s_name="Simbu,Dhanush,Velu" image_type="images2.jpg"/><point lat="11.3264" 
lng="77.6911" type="BUS:0001" s_name="Sham,Jagan,karan" image_type="images2.jpg"/>
<point lat="11.3349" lng="77.7078" type="BUS:0001" s_name="siva,sarvesh,kasi" 
image_type="images2.jpg"/><point lat="11.3409" lng="77.7171" type="BUS:0001" 
s_name="Rajan,Rajesh,Pandi" image_type="images2.jpg"/><point lat="11.3481" 
lng="77.7190" type="BUS:0001" s_name="Mugan,Natraj,Balan" image_type="images2.jpg"/>
<point lat="11.3449" lng="77.7269" type="BUS:0001" s_name="karthik,sampath,udhay" 
mage_type="images2.jpg"/><point lat="11.3418" lng="77.7283" type="BUS:0001" 
s_name="Lal,Kannan,Khan" image_type="images2.jpg"/><point lat="11.3578" lng="77.7370" 
type="BUS:0001" s_name="Suresh,Dinesh,Vengadesh" image_type="images2.jpg"/><point 
lat="11.3649" lng="77.7484" type="BUS:0001" s_name="Jay,Prabu,Dana" 
image_type="images2.jpg"/><point lat="11.3671" lng="77.7649" type="BUS:0001" 
s_name="Naveen,Muthu,Kumar" image_type="images2.jpg"/><point lat="11.3621" 
lng="77.7808" type="BUS:0001" s_name="Poun,Buvan,Mari" image_type="images2.jpg"/>
<point lat="11.3654" lng="77.8014" type="BUS:0001" s_name="Chandru,Sakthi,Sekar" 
image_type="images2.jpg"/><point lat="11.3637" lng="77.8262" type="BUS:0001" 
s_name="Soundar,Balu,Babu" image_type="images2.jpg"/><point lat="11.3657" 
lng="77.8429" type="BUS:0001" s_name="Tamil,Selva,Sasi" image_type="images2.jpg"/>
<point lat="11.3654" lng="77.8560" type="BUS:0001" s_name="Rahim,Ibrahim,Mohmed" 
image_type="images2.jpg"/><point lat="11.3741" lng="77.8785" type="BUS:0001" 
s_name="Hari,Nagaraj.Bethana" image_type="images2.jpg"/><point lat="11.3784" 
lng="77.8947" type="BUS:0001" s_name="Mani,Sheik,Win" image_type="images2.jpg"/><point 
lat="11.3711" lng="77.8908" type="BUS:0001" s_name="Rajesh,Saravanan,Prakash" 
image_type="images2.jpg"/><point lat="11.368994" lng="77.888321" type="BUS:0001" 
s_name="Bethu,Sri,Naveen" image_type="images2.jpg"/></line></markers>

//
学生名单

我可以看到您的代码中有一个明显的错误,但您没有提出任何问题。你的问题是什么?你有什么问题?@Marcelo,我编辑了代码,但我不知道为什么不起作用,我想把delete值调用到php,就像一个用于从id='variable'的标记中删除的变量");嘿,伙计,我尝试了,更新了我的代码,但没有成功,我想我的问题是PHP,因为我所有的警报都有效,看看我编辑的代码我有时间看一下你的代码。我想你需要两个不同的ajax调用。1用于加载标记,另一个用于删除标记。我正在做这件事,会给你回复的谢谢你,我也会等待并尝试=),我有一个用于loady的ajax代码和一个用于删除标记的代码,如果你想的话,看看这个项目我的服务器刚刚关闭,所以我不能告诉你我在哪里。我已经看过loady,但是要在本地主机上运行它,还有很多地方需要修改。当我完成后,我会把它加载到我的测试站点上,让你看看。服务器ftp仍然存在问题。我们已经使用了2个Ajax调用
<?php  
 require("dbinfo.php");
// Get parameters from URL
 $id = $_GET["id"];
//Opens a connection to a mySQL server
$connection=mysql_connect ($host, $username, $password);
if (!$connection) {
  die("Not connected : " . mysql_error());
}
// Set the active mySQL database
$db_selected = mysql_select_db($database, $connection);
 if (!$db_selected) {
  die ("Can\'t use db : " . mysql_error());
}
// delete the row in the table
$query = sprintf("DELETE FROM *your table* WHERE *your field name*
echo "<br>";
echo $query;
$result = mysql_query($query);
 if (!$result) {
  die("Invalid query: " . mysql_error());
 }
?> 
<!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" xmlns:v="urn:schemas-microsoft-com:vml">
<!--http://www.askdata.net/propmap/mapdata.php-->
<!DOCTYPE html >
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false">
</script> 
<script type="text/javascript">
//<![CDATA[

var directionDisplay;
var directionsService = new google.maps.DirectionsService();
var map;
var image = new google.maps.MarkerImage('http://Violette.com/MapFiles
/Icons.png');
//var side_bar_html = ""; 
//var gmarkers = [];

function load() {
  directionsDisplay = new google.maps.DirectionsRenderer(); 
  //directionsDisplay.setMap(map);
  var map = new google.maps.Map(document.getElementById("map"), {
    center: new google.maps.LatLng(11.342339,77.727497), //'mapTypeControlOptions':  
    {style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    zoom: 12,
    mapTypeId: 'roadmap'
  });
  directionsDisplay.setMap(map);
  var infoWindow = new google.maps.InfoWindow;
  var sidebar = document.getElementById('sidebar');
      var point = [];
      var point1 = [];
      var path = [];
      //var waypoints = [];

  //var school = document.getElementById("school").value;
  downloadUrl("support.php", function(data) {
    var xml = data.responseXML;
    var markers = xml.documentElement.getElementsByTagName("point");
      for (var i = 0; i < markers.length; i++) {
      var name = markers[i].getAttribute("s_name");
      var img5 = markers[i].getAttribute("image_type");
      var school = markers[i].getAttribute("school");
      var type = markers[i].getAttribute("type");
      point = new google.maps.LatLng(
          parseFloat(markers[i].getAttribute("lat")),
          parseFloat(markers[i].getAttribute("lng")));
      var html = "<b>" + type + "</b>";

      var image_in = "<img src='http://sundar.lan/tele3/images/"+ img5 + "'/>";

      var icon = type;
      var marker = new google.maps.Marker({
        map: map,
        position: point,
        draggable: true,
        icon: icon.icon 
      });
     var name = '<h3>' + "Students :" +'</h3>'+'<h4>' + name +'</h4>';
     //var img = '<h3>' +'<b>' + img5 +  '</b>'+'</h3>';

     bindInfoWindow(marker, map, infoWindow, name,image_in);
     // var sidebarEntry = createSidebarEntry(marker, type);
     sidebar.appendChild(createSidebarEntry(marker,type));
    }


    for (var j = 0; j < markers.length; j++) {
      point1[j] = new google.maps.LatLng(
          parseFloat(markers[j].getAttribute("lat")),
          parseFloat(markers[j].getAttribute("lng")));
          var flight = new google.maps.Polyline({
              path: point1,
              strokeColor: '#FF0000',
              strokeOpacity: 1.0,
              strokeWeight:2
            });
     flight.setMap(map);
     calcRoute(point1);
     console.log(point1);
    }
  });

  function createSidebarEntry(marker,type) { 
  var div = document.createElement('div');
  var html = '<h2>' +'<b>' + type +  '</b>'+'</h2>';
  div.innerHTML = html;
  div.style.cursor = 'pointer';
  div.style.marginBottom = '5px'; 
  google.maps.event.addDomListener(div, 'click', function() {
    google.maps.event.trigger(marker, 'click');
  });
  google.maps.event.addDomListener(div, 'mouseover', function() { 
    div.style.backgroundColor = '#eee';
  });
  google.maps.event.addDomListener(div, 'mouseout', function() {
    div.style.backgroundColor = '#fff';
  });
  return div;
}
}

function bindInfoWindow(marker,map, infoWindow, name,image_in) {
  google.maps.event.addListener(marker, 'click', function() {
    infoWindow.setContent(name + image_in);
    infoWindow.open(map, marker); 
  });
}

function calcRoute(path) {
    //alert(path);
    for(var k=0; k<path.length-1; k++)   
    { 
    var waypoints = [];
    //alert(k);
    var request = {
        origin:path[k],
        destination:path[k+1],
        travelMode: google.maps.DirectionsTravelMode.DRIVING    
    };
    directionsService.route(request, function(response, status) { 
      if (status == google.maps.DirectionsStatus.OK) {
        directionsDisplay.setDirections(response);
        //selected_path =  
    selected_path.concat(results.routes[0].overview_path);
      }
      /*else {
  // alert an error message when the route could nog be calculated.
  if (status == 'ZERO_RESULTS') {
    alert('No route could be found between the origin and destination.');
  } else if (status == 'UNKNOWN_ERROR') {
    alert('A directions request could not be processed due to a server error. The 
  request may succeed if you try again.');
  } else if (status == 'REQUEST_DENIED') {
    alert('This webpage is not allowed to use the directions service.');
  } else if (status == 'OVER_QUERY_LIMIT') {
    alert('The webpage has gone over the requests limit in too short a period of 
  time.');
  } else if (status == 'NOT_FOUND') {
    alert('At least one of the origin, destination, or waypoints could not be 
  geocoded.');
  } else if (status == 'INVALID_REQUEST') {
    alert('The DirectionsRequest provided was invalid.');        
  } else {
    alert("There was an unknown error in your request. Requeststatus: nn"+status);
  }
  }*/
    });
    }
  }

  function downloadUrl(url, callback) {
  var request = window.ActiveXObject ?
      new ActiveXObject('Microsoft.XMLHTTP') :
      new XMLHttpRequest;

  request.onreadystatechange = function() {
    if (request.readyState == 4) {
      request.onreadystatechange = doNothing;
      callback(request, request.status);
    }
  };

  request.open('GET', url, true);
  request.send(null);
}

function doNothing() {}


//]]>

</script> 

</head>
<body onload="load();">
<!--<div style="width:1200px; font-family:Arial, sans-serif; font-size:11px; 
border:2px solid #999;"> 
<div align="center" style="width:1200px; height:50px; font-family:Arial, sans-serif; 
font-size:11px; border:3px solid #CCC; color:#0099CC;"><h1>Students stop list's</h1>   
</div>
-->  
<div style="color:#09F; margin-left:550px;"><h2>Students stop list's</h2></div>
<table style="border:#999999 2px solid;"> 
<tbody>  
  <tr id="cm_mapTR">
    <td width="200" valign="top">
     <!--<b>Select:</b><select name="school" id="school" onChange="load();">
     <option value="">--Select--</option>
     <option value="1">BNKN</option>
     <option value="2">SEVENTH DAY</option>
     </select>-->
     <div id="sidebar" style="overflow: auto; height: 520px; font-size: 11px; color:  
 #000;"></div> 
    </td>
    <td> <div id="map" style="overflow: hidden; width: 1150px; height: 520px; 
 border:2px solid #999;"></div> </td>
  </tr> 
 </tbody>
 </table>
 <!--</div>-->
 </body>
 </html>

<markers><line colour="#008800" width="8" html="You clicked the green polyline"><point 
lat="11.3135" lng="77.6658" type="BUS:0001" s_name="Sundar,Arul,Praveen" 
image_type="images2.jpg"/><point lat="11.3149" lng="77.6687" type="BUS:0001" 
s_name="Laxman,Dravid,Ganguly" image_type="images2.jpg"/><point lat="11.3174" 
lng="77.6718" type="BUS:0001" s_name="Vijay,Ajith,Surya" image_type="images2.jpg"/>
<point lat="11.3203" lng="77.6751" type="BUS:0001" s_name="Vikram,Ravi,Krishna" 
image_type="images2.jpg"/><point lat="11.3227" lng="77.6804" type="BUS:0001" 
s_name="Simbu,Dhanush,Velu" image_type="images2.jpg"/><point lat="11.3264" 
lng="77.6911" type="BUS:0001" s_name="Sham,Jagan,karan" image_type="images2.jpg"/>
<point lat="11.3349" lng="77.7078" type="BUS:0001" s_name="siva,sarvesh,kasi" 
image_type="images2.jpg"/><point lat="11.3409" lng="77.7171" type="BUS:0001" 
s_name="Rajan,Rajesh,Pandi" image_type="images2.jpg"/><point lat="11.3481" 
lng="77.7190" type="BUS:0001" s_name="Mugan,Natraj,Balan" image_type="images2.jpg"/>
<point lat="11.3449" lng="77.7269" type="BUS:0001" s_name="karthik,sampath,udhay" 
mage_type="images2.jpg"/><point lat="11.3418" lng="77.7283" type="BUS:0001" 
s_name="Lal,Kannan,Khan" image_type="images2.jpg"/><point lat="11.3578" lng="77.7370" 
type="BUS:0001" s_name="Suresh,Dinesh,Vengadesh" image_type="images2.jpg"/><point 
lat="11.3649" lng="77.7484" type="BUS:0001" s_name="Jay,Prabu,Dana" 
image_type="images2.jpg"/><point lat="11.3671" lng="77.7649" type="BUS:0001" 
s_name="Naveen,Muthu,Kumar" image_type="images2.jpg"/><point lat="11.3621" 
lng="77.7808" type="BUS:0001" s_name="Poun,Buvan,Mari" image_type="images2.jpg"/>
<point lat="11.3654" lng="77.8014" type="BUS:0001" s_name="Chandru,Sakthi,Sekar" 
image_type="images2.jpg"/><point lat="11.3637" lng="77.8262" type="BUS:0001" 
s_name="Soundar,Balu,Babu" image_type="images2.jpg"/><point lat="11.3657" 
lng="77.8429" type="BUS:0001" s_name="Tamil,Selva,Sasi" image_type="images2.jpg"/>
<point lat="11.3654" lng="77.8560" type="BUS:0001" s_name="Rahim,Ibrahim,Mohmed" 
image_type="images2.jpg"/><point lat="11.3741" lng="77.8785" type="BUS:0001" 
s_name="Hari,Nagaraj.Bethana" image_type="images2.jpg"/><point lat="11.3784" 
lng="77.8947" type="BUS:0001" s_name="Mani,Sheik,Win" image_type="images2.jpg"/><point 
lat="11.3711" lng="77.8908" type="BUS:0001" s_name="Rajesh,Saravanan,Prakash" 
image_type="images2.jpg"/><point lat="11.368994" lng="77.888321" type="BUS:0001" 
s_name="Bethu,Sri,Naveen" image_type="images2.jpg"/></line></markers>