Google Maps Shell
This plugin is meant to be used in conjunction with external code that provides necessary coordinates to the plugin.
Maintenance 20/1004767d since update
Active installs
0
Downloads
1,291
Reviews
0
Age
13.1y
TagsmapsGoogle Maps
Plugin info
Total downloads: 1,291
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 12/12/2012 (4767 days ago)
Added to WordPress: 12/12/2012 (13 years old)
Minimum WordPress version: 3.4
Tested up to WordPress version: 3.5.2
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4767 days ago
20/100
Is Google Maps Shell abandoned?
Possibly abandoned (last update 4767 days ago).
Compatibility
Requires WordPress: 3.4
Tested up to: 3.5.2
Requires PHP: f
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
WP Go Maps (formerly WP Google Maps)
Rating 4.8/5 (2,988 reviews) • Active installs 300,000
WP Maps – Store Locator,Google Maps,OpenStreetMap,Mapbox,Listing,Directory & Filters
Rating 4.3/5 (121 reviews) • Active installs 70,000
MapPress Maps for WordPress
Rating 4.7/5 (146 reviews) • Active installs 40,000
Maps Widget for Google Maps
Rating 4.6/5 (512 reviews) • Active installs 30,000
Snazzy Maps
Rating 4.2/5 (15 reviews) • Active installs 30,000
Maps Plugin using Google Maps for WordPress – WP Google Map
Rating 4.9/5 (168 reviews) • Active installs 10,000
Description
This plugin is for developers and is meant to be used to enable Google Maps integration. While it does come with a default location, developers will want to feed the plugin a nested array of location data. This data can be manually curated or retrieved through external means.
You need to use the filter ab_google_maps_markers and return the new nested array.
Example:
function new_array( $markers ) { $markers = (object) array(
array(
'lat' => '30.266132',
'lon' => '-97.745825', 'title' => 'Gingerman Austin', 'address' => '301 Lavaca St, Austin TX 78701' ), array( 'lat' => '30.2658', 'lon' => '-97.735691', 'title' => 'Easy Tiger Bake Shop and Beer Garden', 'address' => '709 East 6th St, Austin TX 78701' ), ); return $markers; } add_filter( 'ab_google_maps_markers', 'new_array' );
Installation
- Upload
plugin-name.phpto the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Get a Google Maps API Key from the Google Developers Console
- Add
define( 'AB_GMAPS_API_KEY', 'foo');to yourwp-config.phpfile wherefoois the API Key from Google.
Frequently Asked Questions
No FAQ available
Review feed
No reviews available
Screenshots
No screenshots available
Changelog
1.0
- Initial Release