gpt4 book ai didi

php - 编写这个 mysql join 与 google map 地理编码的正确方法是什么?

转载 作者:行者123 更新时间:2023-11-30 01:02:18 25 4
gpt4 key购买 nike

我有一个可以运行的脚本,但是当其中一个表中有大量记录时,页面和 map 加载需要很长时间。

一张 table 很大,另一张 table 很小。 visitors_pb_list 是小的。

有没有办法编写查询,使其不会读取第二个表中的每条记录?

例如,假设表 1 有 10 条记录,landing_page 编号为 500。另一个表可能有 5 或 10,000 条或更多具有相同landing_page 编号的记录。

Google 对可以完成的查询数量有限制。不能超过 2500 条,所以我希望此查询只准备基于表 1 的确切记录数以及表 2 中的记录数。我不希望它从表 1 中读取 10 条记录,从表 2 中读取数千条记录.

有人可以告诉我执行此查询的最有效方法,以便地理编码不会出现最大限制错误,因此页面和 map 加载速度相当快吗?

用 google 地址注释掉的 3 行,这就是 mysql 查询如何使用 2 个表从数据库输出行。只想输出表 1 具有特定着陆页编号的记录数量。另一个表包含地址,但有很多记录。

在查询部分,我注释掉了几行。我正在尝试不同类型的连接。它们都需要永远加载并导致谷歌给出​​最大地理编码查询错误。我想我没有尝试其中之一,但无论如何,我想知道这 4 个查询行中哪一个是最好的,如果有比所有 4 个查询行更好的东西,它是什么?

var geocoder;
var map;
var markersArray = [];
var bounds;
var infowindow = new google.maps.InfoWindow({
content: ''
});

//plot initial point using geocode instead of coordinates (works just fine)
function initialize() {
geocoder = new google.maps.Geocoder();
bounds = new google.maps.LatLngBounds ();

var myOptions = {
zoom: 2,
mapTypeId: google.maps.MapTypeId.ROADMAP,
navigationControlOptions: {
style: google.maps.NavigationControlStyle.SMALL
}
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

geocoder.geocode( { 'address': '5th Avenue New York'}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);

marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});

bounds.extend(results[0].geometry.location);

markersArray.push(marker);
}
else{
alert("Geocode was not successful for the following reason: " + status);
}
});

plotMarkers();
}

var locationsArray = [

//['Google Official','1600 Amphitheatre Parkway, Mountain View, USA'],
//['Google 1','112 S. Main St., Ann Arbor, USA'],
//['Google 2','10 10th Street NE, Suite 600 USA'],

<?
//$emp_select="SELECT pb_list.*, visitors_pb_list.* FROM visitors_pb_list LEFT JOIN pb_list ON pb_list.landing_page=visitors_pb_list.landing_page WHERE visitors_pb_list.landing_page=".$pb_list_id."";
//$emp_select="SELECT pb_list.*, visitors_pb_list.* FROM visitors_pb_list INNER JOIN pb_list ON pb_list.landing_page=visitors_pb_list.landing_page WHERE visitors_pb_list.landing_page=".$pb_list_id."";
//$emp_select="SELECT pb_list.*, visitors_pb_list.* FROM pb_list LEFT JOIN visitors_pb_list ON pb_list.landing_page=visitors_pb_list.landing_page WHERE visitors_pb_list.landing_page=".$pb_list_id."";
$emp_select="SELECT pb_list.*, visitors_pb_list.* FROM pb_list INNER JOIN visitors_pb_list ON pb_list.landing_page=visitors_pb_list.landing_page WHERE visitors_pb_list.landing_page=".$pb_list_id."";
$emp_num=mysql_query($emp_select);
while($roww=mysql_fetch_array($emp_num)){ ?>

['Marker','<?php echo $roww['address'] ?>, <?php echo $roww['city'] ?>, <?php echo $roww['state'] ?>'],

<? } ?>

];

function plotMarkers(){
var i;
for(i = 0; i < locationsArray.length; i++){
codeAddresses(locationsArray[i]);
}
}

function codeAddresses(address){
geocoder.geocode( { 'address': address[1]}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});

google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent(address[0]);
infowindow.open(map, this);
});

bounds.extend(results[0].geometry.location);

markersArray.push(marker);
}
else{
alert("Geocode was not successful for the following reason: " + status);
}

map.fitBounds(bounds);
});
}

google.maps.event.addDomListener(window, 'load', initialize);

最佳答案

您可以编写纯js并异步查询yout php后端,而不是使用内联php。这里只是伪编码

function plotMarkers(){
jQuery.ajax({
url: 'geocoder.php',
dataType:'json'
}).done(function(locationsArray) {
for(i = 0; i < locationsArray.length; i++){
codeAddresses(locationsArray[i]);
}
});
}

在 geocoder.php 中

$emp_select="SELECT pb_list.*, visitors_pb_list.* 
FROM pb_list
INNER JOIN visitors_pb_list ON pb_list.landing_page=visitors_pb_list.landing_page WHERE
visitors_pb_list.landing_page=$pb_list_id";
$emp_num=mysql_query($emp_select);
$codeAddresses=array();
while($roww=mysql_fetch_assoc($emp_num)){
$codeAddresses[]=$roww;
}
echo json_encode($codeAddresses);

PD:以这种方式编写查询并不安全,您应该使用准备好的语句来避免 SQL 注入(inject),但这完全是另一个主题。

关于php - 编写这个 mysql join 与 google map 地理编码的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20013517/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com