Отправка значений latlng в mysql-запрос для обновления маркеров Google Maps через routeboxer

Я использую Routerboxer для создания списка широт и долгот в определенном маршруте. Я хочу отправить lat и lngs обратно в мой запрос к базе данных (я полагаю, используя ajax), чтобы возвращать маркеры в пределах границ.

Я искал и нашел запрос к базе данных:

SELECT * FROM as24 WHERE lat > a AND lat < c AND lng > b AND lng < d

Мой вопрос в том, как отправить эти a, b, c и d's на страницу PHP?

 function calcRoute() { clearBoxes(); distance = 10 * 1.609344; //within 10 miles var start = document.getElementById('start').value; var end = document.getElementById('end').value; var request = { origin:start, destination:end, travelMode: google.maps.TravelMode.DRIVING }; directionService.route(request, function(result, status) { if (status == google.maps.DirectionsStatus.OK) { directionsRenderer.setDirections(result); // Box around the overview path of the first route var path = result.routes[0].overview_path; var boxes = routeBoxer.box(path, distance); drawBoxes(boxes); } else { alert("Directions query failed: " + status); } }); } // Draw the array of boxes as polylines on the map function drawBoxes(boxes) { boxpolys = new Array(boxes.length); for (var i = 0; i < boxes.length; i++) { boxpolys[i] = new google.maps.Rectangle({ bounds: boxes[i], fillOpacity: 0, strokeOpacity: 1.0, strokeColor: '#000000', strokeWeight: 1, map: map //Perform Search }); } } // Clear boxes currently on the map function clearBoxes() { if (boxpolys != null) { for (var i = 0; i < boxpolys.length; i++) { boxpolys[i].setMap(null); } } boxpolys = null; } google.maps.event.addDomListener(window, "load", initialize); function load() { var infoWindow = new google.maps.InfoWindow; // Change this depending on the name of your PHP file downloadUrl("as24_genxml.php", function(data) { var xml = data.responseXML; var markers = xml.documentElement.getElementsByTagName("marker"); for (var i = 0; i < markers.length; i++) { var name = markers[i].getAttribute("name"); var address = markers[i].getAttribute("address"); var price = markers[i].getAttribute("price"); var type = markers[i].getAttribute("type"); var point = new google.maps.LatLng( parseFloat(markers[i].getAttribute("lat")), parseFloat(markers[i].getAttribute("lng"))); var html = "<b>" + name + " " + price + "</b> <br/>" + address; var icon = customIcons[type] || {}; var marker = new google.maps.Marker({ map: map, position: point, icon: icon.icon }); map.getBounds().contains(marker.getPosition()) bindInfoWindow(marker, map, infoWindow, html); $.post("as24_genxml.php", { a:map.getBounds().getNorthEast().lat(), b:map.getBounds().getNorthEast().lng(), c:map.getBounds().getSouthWest().lat(), d:map.getBounds().getSouthWest().lng() }, function(data,status){ }); } }); } 

Как вы можете видеть, я попытался сделать это с помощью ajax php send.

Мой php-файл выглядит так:

 <?php include ('php/config.php'); function parseToXML($htmlStr) { $xmlStr=str_replace('<','&lt;',$htmlStr); $xmlStr=str_replace('>','&gt;',$xmlStr); $xmlStr=str_replace('"','&quot;',$xmlStr); $xmlStr=str_replace("'",''',$xmlStr); $xmlStr=str_replace("&",'&amp;',$xmlStr); return $xmlStr; } // Opens a connection to a MySQL server $connection=mysql_connect ($mysql_server, $mysql_user, $mysql_pass); if (!$connection) { die('Not connected : ' . mysql_error()); } // Set the active MySQL database $db_selected = mysql_select_db($mysql_db, $connection); if (!$db_selected) { die ('Can\'t use db : ' . mysql_error()); } // Select all the rows in the markers table $query = "SELECT * FROM as24 WHERE lat > a AND lat < c AND lng > b AND lng < d"; $result = mysql_query($query); if (!$result) { die('Invalid query: ' . mysql_error()); } header("Content-type: text/xml"); // Start XML file, echo parent node echo '<markers>'; // Iterate through the rows, printing XML nodes for each while ($row = @mysql_fetch_assoc($result)){ // ADD TO XML DOCUMENT NODE echo '<marker '; echo 'name="' . parseToXML($row['name']) . '" '; echo 'address="' . parseToXML($row['address']) . '" '; echo 'price="' . parseToXML($row['price']) . '" '; echo 'lat="' . $row['lat'] . '" '; echo 'lng="' . $row['lng'] . '" '; echo 'type="' . $row['type'] . '" '; echo '/>'; } // End XML file echo '</markers>'; ?> 

Solutions Collecting From Web of "Отправка значений latlng в mysql-запрос для обновления маркеров Google Maps через routeboxer"