Extension to Simple Fields that adds a field type for selecting a location on a Google Map.
Adds a new field type to Simple Fields that let you choose a location.
The coordinates (lat/lng) of that location is saved and easily retrieved in for example your theme.
Happy geocoding!
Slug for this field extension is "googlemaps".
Full example using register field group:
simple_fields_register_field_group('sf_map_test_field_fg',
array(
'name' => 'My map',
'repeatable' => 1,
'fields' => array(
array(
"type" => "googlemaps",
"slug" => "sf_map",
"name" => "Test map",
"options" => array(
"defaultZoomLevel" => 10,
"defaultMapTypeId" => "HYBRID", // ROADMAP | SATELLITE | HYBRID | TERRAIN
"defaultLocationLat" => 40.71435,
"defaultLocationLng" => -74.00597,
"defaultZoomLevel" => 10
)
)
)
)
);
This plugin is available in the following languages:
Requires: 3.5 or higher
Compatible up to: 3.5.1
Last Updated: 2013-5-14
Downloads: 946
0 of 1 support threads in the last two months have been resolved.
Got something to say? Need help?