我正在尝试显示带有多个标记的google map的ACF中继器,我已经添加了所有代码,并遵循here中的所有步骤:
问题在于地图无法缩放,我猜Lat和Lng无法正常工作。
@if( have_rows('google_map_repeater', '745') )
<div class="acf-map">
@while ( have_rows('google_map_repeater', '745') ) @php(the_row())
@php( $location = get_sub_field('location'))
<div class="marker" data-lat="{{ $location['lat'] }}" data-lng="{{ $location['lng'] }}" >
<h4>{{ the_sub_field('title') }}</h4>
<p class="address">{{ $location['address'] }}</p>
</div>
@endwhile
</div>
@endif