Geo Data Store
A WordPress plugin to store latitude and longitude information in a separate (and better optimized) table., (*1)
This plugin is a fork of the original (now unmaintained and not available on GitHub)
"Geo Data Store" plugin by Scott "l3rady" Carris home and on GitHub., (*2)
Scott by now is possibly married and I wish him all the best., (*3)
Install
If youÂŽre using Composer, simply add the following line to your require
array:, (*4)
"wcm/geo-data-store-2" : "dev-master"
Usage
Before activating set what meta keys you want this plugin to capture
by using the filter sc_geodatastore_meta_keys
., (*5)
add_filter( 'sc_geodatastore_meta_keys', 'homes_for_sale_geodata' );
function homes_for_sale_geodata( $keys )
{
$keys[] = "properties_address_coords";
return $keys;
}
Your latitude and longitude values have to be stored in a single meta field as comma separated value:, (*6)
`51.507334,-0.127682`
License
Inherited license from the original software: GPL v2+, (*7)