clubdeuce/wp-google-maps

A Google Maps library for WordPress.

0.4.1 2023-03-21 01:36 UTC

This package is auto-updated.

Last update: 2024-04-09 21:04:11 UTC


README

Scrutinizer Code Quality Code Coverage Build Status DeepScan Grade

A Google Maps library for WordPress.

Installation

This project can be installed via Composer:

composer require clubdeuce\wp-google-maps

Simply include autoload.php from your vendor directory and the library will be included.

Usage

A simple example:


use Clubdeuce\WPGoogleMaps\Google_Maps;

Google_Maps::initialize();

// Register the conditions under which to load the necessary javascript
// You can use WP specific ( e.g. is_single, is_search, etc ) or any 
// valid callback function or closure.
Google_Maps::register_script_condition( 'is_single' );

//Create a new map object
$map = Google_Maps::make_new_map();

//Create a new marker object
$marker = Google_Maps::make_marker_by_address( '1600 Pennsylvania Ave NW Washington DC' );

//Set the info window content
$marker->info_window()->set_content( 'The White House' );

//Add the marker to the map
$map->add_marker( $marker );

//Render the map
$map->the_map();