Filters/Actions for Google Maps

Filters available for UAE Google Maps are listed below.

uael_google_map_latitude

Filters the latitude of the marker.

function google_map_latitude( $latitude ) {
    // One can manipulate these latitude values.
    return $latitude; 
} 
add_filter( 'uael_google_map_latitude', 'google_map_latitude' );

uael_google_map_longitude

Filters the longitude of the marker.

function google_map_longitude( $longitude) {
    // One can manipulate these longitude values.
    return $longitude; 
} 
add_filter( 'uael_google_map_longitude', 'google_map_longitude' );

uael_google_map_title

Filters the title of the marker.

function google_map_title( $title ) {
    // One can manipulate these title values.
    return $title; 
} 
add_filter( 'uael_google_map_title', 'google_map_title' );

uael_google_map_description

Filters the description of the marker.

function google_map_description( $description ) {
    // One can manipulate these description values.
    return $description; 
} 
add_filter( 'uael_google_map_description', 'google_map_description' );
Was this article helpful?
Did not find a solution? We are here to help you succeed.

Related Docs

Get access to growing library of 40+ innovative widgets and 300+ creative templates.

Scroll to Top