julykaz/cmb_field_map

There is no license information available for the latest version (v2.1.2) of this package.

Google Maps field type for Custom Metaboxes and Fields for WordPress

Installs: 162

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 50

Type:wordpress-plugin

v2.1.2 2015-12-14 11:26 UTC

This package is not auto-updated.

Last update: 2024-04-11 16:00:51 UTC


README

Description

Google Maps field type for CMB2.

The pw_map field stores the latitude/longitude values which you can then use to display a map in your theme.

Installation

Install in a theme using composer:

{
 "require": {
    "php": ">=5.3.0",
    "composer/installers": "v1.0.12",
    "webdevstudios/cmb2": "dev-master",
    "julykaz/cmb_field_map": "dev-master"
  },
  "autoload": {
    "files": [
      "vendor/cmb2/init.php",
      "vendor/cmb_field_map/cmb-field-map.php"
    ]
  },
  "extra": {
    "installer-paths": {
      "vendor/{$name}/": [
        "webdevstudios/cmb2",
        "julykaz/cmb_field_map"
      ]
    }
  } 
}

Usage

pw_map

Save a location on a map. Example:

array(
	'name' => 'Location',
	'desc' => 'Drag the marker to set the exact location',
	'id' => $prefix . 'location',
	'type' => 'pw_map',
	// 'split_values' => true, // Save latitude and longitude as two separate fields
),

Extra Parameters:

  • split_values Save the latitude/longitude values into two custom fields, they will be stored as $id . '_latitude' and $id . '_longitude'.

Screenshot

Image