Google Map centered on the city but not on the street coordinates not considered
-
Hello,
This bug happen with
do_action( 'epl_property_map' );
So I had to did it like t
<?php /* do_action( 'epl_property_map' ); */ ?> <?php $gmap_coordinates = $property->get_property_meta('property_address_coordinates'); if(isset($gmap_coordinates) && !empty($gmap_coordinates)) { ?> <div class="epl-tab-section"> <div style="width:100%; height:350px" data-suburb_mode="0" data-cord="" data-zoom="12" data-id="<?php echo get_the_ID(); ?>" data-address="<?php echo $property->get_property_meta('property_address_coordinates'); ?>" id="epl-default-map"></div> </div> <?php } ?>
My 2 cents.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Google Map centered on the city but not on the street coordinates not considered’ is closed to new replies.