我使用以下代码使用JS加载Google地图。
$(document).ready(function(){
$('.acf-map').each(function(){
map = new_map( $(this) );
});
var geocoder = new google.maps.Geocoder();
document.getElementById('submit').addEventListener('click', function() {
geocodeAddress(geocoder, map);
location.reload();
});
});
我使用PHP
创建地图和标记<div class="acf-map">
<?php $custom = new WP_Query(array(
'post_type' => 'centre',
'posts_per_page' => -1
)); ?>
<?php
if ($custom->have_posts()) {
while ($custom->have_posts()) {
$custom->the_post(); ?>
<?php $location = get_field('centre_location'); ?>
<div class="marker" data-lat="<?php echo $location['lat'] ?>" data-lng="<?php echo $location['lng']; ?>" style="border: 5px solid grey;">
<a href="<?= the_permalink() ?>"><h5 class="orange"><?= get_field('centre_name'); ?></h5></a>
<p class="address"><?php echo get_field('centre_address') ?></p>
<p class="orange">Call us at <a href="tel: <?= get_field('centre_telephone_number'); ?>"><?= get_field('centre_telephone_number'); ?></a></p>
</div>
<?php
}
wp_reset_postdata();
}
?>
</div>
然后我从用户那里获取输入并对其进行解码以推送到数据库。
<input type="text" placeholder="Enter your postcode" class="orange find input" id="address">
<button id="submit" class="find sub orange">Search</button>
function geocodeAddress(geocoder, resultsMap) {
var address = document.getElementById('address').value;
geocoder.geocode({'address': address}, function(results, status) {
if (status === 'OK') {
resultsMap.setCenter(results[0].geometry.location);
var lat = results[0].geometry.location.lat();
var lng = results[0].geometry.location.lng();
$.ajax({
url: "../link/to/post.php",
type: "POST",
data : {
lat: lat,
lng: lng
}
});
var marker = new google.maps.Marker({
map: resultsMap,
position: results[0].geometry.location,
title: 'Your location'
});
}
});
}
数据将按原样推送到数据库中,需要额外的代码并添加标记。但是,当页面刷新时,即使数据库中的数据立即插入,也需要另一次刷新才能获取新数据。
我尝试了不同的刷新,但没有一个能解决问题。
我的一个解决方案是找到一种方法来刷新页面两次,但由于我必须加载数百个标记,因此效率不高。
答案 0 :(得分:0)
我回答了我的问题。
问题是,从我猜测的是,SQL查询的运行速度比页面刷新的速度慢。
为了解决这个问题,我加了一个延迟。