वर्णन
The plugin allows to :
- Generate a GEOJson feed from coordinates recorded in the sample posts.
- Display this feed on a map with a shortcode.
Features
- Mapping from a Post Type to generate a GeoJson feed of all posts.
- Exposure this Geojson feeds on the WordPress Rest-API
- Possibility to make a template for the map markers popup
- Coordinate reading compatibility for :
- a text field
- an ACF Google Map field
- an ACF field for the ACF OpenStreetMap Fields extension
- Displaying a map by shortcode of all points.
- Open Street Map put in cache
Hook
The marker content
You can customize more finely the marker popup content.
Example:
<?php
function bindPopup_content_filter( $bindPopup_content, $post_id ) {
return "Yeahhhhh";
}
add_filter( 'cpt_to_map_store_bindPopup_content', 'bindPopup_content_filter', 10, 2 );
?>
Cache
This plugin works with Tiles Proxy for OpenStreetMap for put in cache the map tiles.
Translations
- English – default, always included
- French
Important Information !
Have fun
स्क्रीनशॉट
स्थापना
This section describes how to install the plugin and get it working.
1. Upload cpt-to-map-store.php
to the /wp-content/plugins/
directory
2. Activate the plugin through the ‘Plugins’ menu in WordPress
3. In admin, Settings > CPT to Map Store
नेहमी विचारले जाणारे प्रश्न
-
What are the requirements?
-
- Have a Post Type with Latitide and Longitude meta fields.
- And add a custom fields (https://wordpress.org/support/article/custom-fields/, ACF plugin, Pods or others…)
योगदानकर्ते आणि विकसक
“Custom Post Type to Map Store” हे मुक्त स्रोत सॉफ्टवेअर आहे. पुढील लोक या प्लगइनच्या निर्मितीत योगदान केले आहे.
योगदानकर्ते“Custom Post Type to Map Store” 1 लोकॅलमध्ये भाषांतरित केले आहे. अनुवादकांना त्यांच्या योगदानाबद्दल धन्यवाद.
भाषांतर करा “Custom Post Type to Map Store” तुमच्या भाषेत.
विकासातील आग्रह?
कोड ब्राउझ करा, SVN संग्रहालय तपासा, किंवा विकास लॉग च्या RSS द्वारे सदस्यता घ्या.
बदलांची यादी
1.1.0
- Add the compatibility with the plugin “Tiles Proxy for OpenStreetMap” for put in cache the map tiles.
1.0.3
- Add the marker content filter
cpt_to_map_store_bindPopup_content
1.0.2
- Fix error in engueue scripts in class-cpt-to-map-store-public.php
- Fix Notice in functions.php
- Fix js error in public.js
1.0.1
- Fix enqueue scripts and styles
- Fix isset var
- Add translate terms
1.0.0
- initial