<div class="map-container">
	<div id="map" class="acf-map">
		<?php $themosisQuery = (is_array(($query))) ? new WP_Query(($query)) : ($query); if($themosisQuery->have_posts()){ while($themosisQuery->have_posts()){ $themosisQuery->the_post(); ?>
			<?php $office = new OfficeEntity(get_post()); ?>

			<?php if(($location = $office->getAcf('g-map')) && $office->getAcf('show-in-g-map')): ?>
				<div class="marker" data-lat="<?php echo($location['lat']); ?>" data-lng="<?php echo($location['lng']); ?>"></div>
			<?php endif; ?>
		<?php }} wp_reset_postdata(); ?>
	</div>
</div>
