Bathtub Row Brewing Co-op

<?php 
$location = get_field('location');
if( $location ) {

    // Loop over segments and construct HTML.
    $address = '';
    foreach( array('street_number', 'street_name', 'city', 'state', 'post_code', 'country') as $i => $k ) {
        if( isset( $location[ $k ] ) ) {
            $address .= sprintf( '<span class="segment-%s">%s</span>, ', $k, $location[ $k ] );
        }
    }

    // Trim trailing comma.
    $address = trim( $address, ', ' );

}

$get_google_map = get_field('location', $value);
$lat = $get_google_map['lat'];
$long = $get_google_map['lng']; ?>

<div class="location-address"><a target="_blank" href="https://www.google.com/maps?saddr=My+Location&daddr=<?php echo +$lat; ?>,<?php echo +$long; ?>"><?php echo $address; ?></a></div>

Bathtub Row Brewing Co-op

Bathtub Row Brewing Co-op, Central Park Square, Los Alamos, NM, USA

Get Directions