我目前正在使用谷歌MapAPI来创建一个属性Map。我通过自定义发布类型来控制它,该类型通过infoWindows将标记带到Map上,当他们被点击时就会打开。
我现在需要实现某种方式来列出Map下面的属性(最终到一个滑块中),以便当在Map外部单击属性时,Map会平移到标记并打开infoWindow。
目前,我不能让它工作在所有-我不是一个非常强大的javascript编码器,所以任何帮助将不胜感激。
我有一个列表的帖子类型条目下面的Map目前,但没有办法链接他们。
下面是到目前为止Map的代码片段。
/* MARKER 1 */
function add_marker( $marker, map ) {
// var
var image = 'http://www.masonyoung.co.uk/wp-content/uploads/2015/08/mason-new.png';
var latlng = new google.maps.LatLng( $marker.attr('data-lat'), $marker.attr('data-lng') );
// create marker
var marker = new google.maps.Marker
({
position : latlng,
map : map,
icon: image
});
// add to array
map.markers.push( marker );
// if marker contains HTML, add it to an infoWindow
if( $marker.html() )
{
// create info window
var infowindow = new google.maps.InfoWindow({
content : $marker.html()
});
// show info window when marker is clicked
google.maps.event.addListener(marker, 'mouseover', function() {
if($('.gm-style-iw').length) {
$('.gm-style-iw').parent().hide();
}
infowindow.open( map, marker );
});
google.maps.event.addListener(marker, "mouseout", function() {
marker.setAnimation(null);
});
}
}
这是我目前为止得到的Map下的属性列表的代码。
<?php
$maps = get_posts( array(
'post_type' => 'properties',
'posts_per_page' => -1
) );?>
<?php foreach($maps as $map): ?>
<?php
$location = get_field('location',$map->ID);
$price = get_field('price',$map->ID);
$squareft = get_field('sq_ft_total',$map->ID);
$buylet = get_field('to_buy_or_to_let',$map2->ID);
$link = the_permalink($map->ID);
?>
<div id="map_list">
<ul id="map-locations">
<li data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<h3><a href="<?php echo post_permalink( $map ); ?>"><?php echo $location['address']; ?></a></h3>
</li>
</ul>
</div>
<?php endforeach; ?>
1条答案
按热度按时间qvtsj1bj1#
最简单的方法是将每个标记添加到标记数组中。然后为每个标记创建一个链接,其中包含对标记索引的引用,这样您就可以在单击外部链接时触发标记本身的单击事件。
JSFiddle demo