【发布时间】:2018-11-22 09:43:27
【问题描述】:
我想从发布的元数据字段中获取属性位置并将其动态显示在地图上,在下面的代码中我采用了静态位置。如何动态获取这些值 ['Cronulla Beach', -34.028249, 151.157507, 3]。
<script type="text/javascript">
var locations = [
['Cronulla Beach', -34.028249, 151.157507, 3],
['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
['Maroubra Beach', -33.950198, 151.259302, 1]
];
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 10,
center: new google.maps.LatLng(-33.923036,151.28747820854187),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var infowindow = new google.maps.InfoWindow();
var marker, i;
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1],locations[i][2]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
</script>
我想从发布元数据字段中获取这些位置。感谢任何帮助..
【问题讨论】:
-
你想要PHP还是JS?
-
我在 wordpress 模板中执行此操作。我想从 wordpress 帖子的元数据中获取坐标数据。有什么办法可以得到。
-
get_post_meta(get_the_ID(),'addr_coordiates', true);我以前用它来获取帖子数据。如何从所有帖子中获取所有帖子元数据值作为数组