高度なカスタムフィールドを使用してGoogleマップアイコンを配置します。私はリピータフィールドを使うのが好きですが、まずは通常のフィールドを達成しようとしています。画像フィールドの出力はurlです。私は何が間違っているのか分からないのですか?ここでjsの高度なカスタムフィールドの値をgoogle mapsのマーカーに使用します
は私のコードからの抜粋です:事前に
<script>
<?php $image = get_field('marker'); ?>
function initialize() {
//add map, the type of map
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 15,
center: new google.maps.LatLng(52.355692, 5.619524),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
//add locations
var locations = [
['Hotspot1', 52.355889, 5.619535,'<?php echo $image ;?>'],
['Hotspot2', 52.354349, 5.618924,'$get_google_map']
];
//declare marker call it 'i'
var marker, i;
//declare infowindow
var infowindow = new google.maps.InfoWindow();
//add marker to each locations
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,
icon: locations[i][3]
});
//click function to marker, pops up infowindow
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=hidden&callback=initialize">
</script>
<?php endwhile; ?>
</div>
<?php endif; ?>
おかげで、
ジーノ
デバッグに役立てるために、$ imageに値がありますか?あなたが出力を見ることができるどこかにエコーするか、phpを使ってタイプを取得してください。 echo gettype($ image) – samisonline
今は動作していますが、リピーターを動作させることはできません。 – Gino