google map Info window [closed]

Divi don’t have a option to pop up marker on load, but you can do it this way: Open file divi\includes\builder\scripts\frontend-builder-scripts.js find this: google.maps.event.addListener(marker, ‘click’, function() { if( infowindow_active ) { infowindow_active.close(); } infowindow_active = infowindow; infowindow.open( $this_map_container.data(‘map’), marker ); }); } }); } and replace with this: google.maps.event.addListener(marker, ‘click’, function() { if( infowindow_active ) … Read more

How to handle multiple distance matrix api request in loop to reduce load and request time?

I need to pass the lat and long for two address function calculate_distance($lat1, $lon1, $lat2, $lon2, $unit) { $theta = $lon1 – $lon2; $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta)); $dist = acos($dist); $dist = rad2deg($dist); $miles = $dist * 60 * 1.1515; $unit = strtoupper($unit); if ($unit == “K”) { … Read more

Google map iframe into wordpress theme [closed]

I’ve used it like this and it works well 😉 $(“.div”).html(“<iframe width=”850″ height=”450″ frameborder=”0″ scrolling=’no’ marginheight=”0″ marginwidth=”0″ src=”http://yourlocation.com”></iframe>”); $(“.div”).css(“display”,”block”);

Search Results with googlemaps

@Richard, it’s hard to answer this in detail with this little details. Do you need to pinpoint a single house? Will you use an address or will you use latitude and longitude? My suggestion would be to take a look at this excellent Google Maps Plugin for jQuery. jQuery is part of any WordPress installation, … Read more

How to extract specific image meta for all images?

Get all Images: $all_images = get_posts( array( ‘post_type’ => ‘attachment’ ,’numberposts’ => -1 ) ); foreach ( $all_images as $img ) echo $img; Some notes: You can use extract to make your code shorter: extract( $image[‘image_meta’], EXTR_SKIP ); echo $latitude; Use Yoda Conditions. When writing php on one line, you can also use shorthand php: … Read more