yunusga / carbon-field-map-yandex
Carbon Fields extension, that adds a Map Yandex field type.
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- htmlburger/carbon-fields: ^3.0
README
The map field provides a Yandex-powered map with an address search field for Carbon Fields.
Field::make( 'map_yandex', 'crb_map', __( 'Yandex Map' ) )
Install via Composer
composer require yunusga/carbon-field-map-yandex
Information
The field stores several pieces of related information:
Yandex Maps JS Key setup
As of October 11, 2018, Yandex requires users to generate an API key in order to use the Yandex Maps API: https://yandex.ru/blog/mapsapi/novye-pravila-dostupa-k-api-kart?from=club
You can get your API key here: https://developer.tech.yandex.ru/services/3/
Once you're ready with the process of generating a key, you'll need to provide the key to Carbon Fields through a filter:
/** * Provide the Yandex Maps API key to Carbon Fields * * @param string $key Yandex JS API key. */ function crb_get_yandex_maps_api_key( $key ) { return 'your key goes here'; } add_filter( 'carbon_fields_map_yandex_field_api_key', 'crb_get_yandex_maps_api_key' );
Config methods
set_position( $lat, $lng, $zoom )
Set the default position on the map specified by $lat
and $lng
and the default zoom level to $zoom
(zoom 0
corresponds to a map of the Earth fully zoomed out).
Field::make( 'map_yandex', 'crb_company_location', __( 'Location' ) ) ->set_help_text( __( 'drag and drop the pin on the map to select location' ) )
Usage
To get all the location data as an array, you can use the map_yandex
type in the retrieval functions. Example:
// Get the location data. $map_yandex = carbon_get_post_meta( $post_id, $field_name );
Value Format
array( 'value' => '11.370946,142.591472', 'lat' => 11.370946, 'lng' => 142.591472, 'zoom' => 4, 'address' => 'The lowest point of the Mariana Trench', )