CodePeople Post Map for Google Maps
CodePeople Post Map for Google Maps lets you insert Google Maps into posts or WordPress templates displaying multiple posts. In single posts, it shows a marker for the post’s geolocation and optionally markers for recent posts in related categories. In templates, it displays markers for all posts on the page, highlighting the related post on hover. Main Features: ► Insert Google Maps at optimal positions or associate geolocation without displaying the map ► Handle large volumes of markers ► Discover related entries via map markers ► Define location by address or coordinates ► Customize markers and info bubbles (including default-open bubbles) ► Embed maps in multiple languages ► Based on Google Maps JavaScript API v3 ► Show markers for posts in the same category ► Customize zoom, size, margins, alignment, map type/language, display mode (full or icon), controls, number of points, and hover class ► Style the map freely Premium Features: Load points from specific posts, categories, tags, or all posts Use location info and descriptions in post search Associate multiple points per post/page Draw routes and shapes Add a search box for places Create legends with categories/tags/taxonomies to toggle visibility Add links for directions, opening in Google Maps, or Street View Display multiple maps per post/page (same points across maps) Insert maps as sidebar widgets Group markers in clusters Show and refresh user location at intervals Generate dynamic points from image metadata or WordPress App geolocation Associate maps with any public post_type In non-singular pages, show a map per post Export/import points via CSV or KML Load KML layers from files Developer Features (includes Premium): Design contact forms linked to map points Send notification emails from form submissions Assign unique or global email addresses to points Support Contact Form 7 shortcodes in point descriptions Use point-associated images as map icons Demo Access: https://demos.dwbooster.com/cp-google-maps/wp-login.php https://demos.dwbooster.com/cp-google-maps/ Shorcode Attributes and Plugin Settings Note 1: To display all points that belong to a specific category in the same Google Map, it is required to insert the following shortcode [codepeople-post-map cat="3"]. The number 3 represent the category ID, replace this number by the corresponding category’s ID. To insert the code directly in a template, the snippet of code would be: Note 2: To display all points that belong to more than one category in a same Google Map, separate the categories IDs with the comma symbol [codepeople-post-map cat="3,5"]. The numbers 3 y 5 are the categories IDs, replace these numbers by the corresponding categories IDs. To insert the code directly in a template, the snippet of code would be: Note 3: To display all points defined in the website in a same Google Map, use -1 as the category’s ID: [codepeople-post-map cat="-1"] or for template. Note 4: To display all points that belong to the posts with a specific tag assigned in a same Google Map, for example the tag name “mytag”, use the shortcode’s attribute “tag”, as follows: [codepeople-post-map tag="mytag"]. To insert the code directly in a template, the snippet of code would be: Note 5: To display the points belonging to specific posts or pages in a same Google Map, enter their ids separated by comma through the “id” attribute in the shortcode as follows: [codepeople-post-map id="123"]. To insert the code directly in a template, the snippet of code would be: The “id” attribute has preference over the rest of the filtering attributes. If you prefer configure your map directly from the shortcode, then you must enter an attribute for each map feature to specify. For example: [codepeople-post-map width="500" height="500"] The complete list of allowed attributes are: Very Important. Some of attributes are available only in the premium and developer versions of the plugin. width: Values allowed, number or percentage. Defines the map’s width: [codepeople-post-map width="300"] or [codepeople-post-map width="100%"] height: Values allowed, number or percentage (In the web’s development, the height in percentage is effective only if the parent element has a height defined). Defines the map’s height: [codepeople-post-map height="300"] align: Values allowed, left, right, center. Aligns the map’s container to the left, right or center: [codepeople-post-map align="center"] dynamic_zoom: Values allowed, 1 or 0. Adjust the zoom of map dynamically to display all points on map at the same time: [codepeople-post-map dynamic_zoom="1"] zoom: Accepts a number to define the map’s zoom. To apply a zoom to the map, the dynamic zoom should be 0: [codepeople-post-map dynamic_zoom="0" zoom="5"] type: Values allowed, SATELLITE, ROADMAP, TERRAIN and HYBRID. Select the type of map to display: [codepeople-post-map type="ROADMAP"] language: Values allowed, en for English, es for Spanish, pt for Portuguese, etc. (for the complete list, check the Google Maps documentation). Select a language to display on map: [codepeople-post-map language="en"] route: Values allowed, 0 or 1. Draw or not the route between points in a same post or page: [codepeople-post-map route="1"] mode: Values allowed, DRIVING, BICYCLING and WALKING. Define the type of route: [codepeople-post-map route="1" mode="DRIVING"] show_window: Values allowed, 0 or 1. To enable or disable the infowindows: [codepeople-post-map show_window="1" ] show_default: Values allowed, 0 or 1. Display or not an infowindow expanded by default: [codepeople-post-map show_window="1" show_default="1"] markerclusterer: Values allowed, 0 or 1. Displays a cluster with the number of points in an area: [codepeople-post-map markerclusterer="1"] mousewheel: Values allowed, 0 or 1. Enables the map’s zoom with the mouse wheel: [codepeople-post-map mousewheel="1"] zoompancontrol: Values allowed, 0 or 1. Displays or hide the zoom controls in the Google Maps: [codepeople-post-map zoompancontrol="1"] typecontrol: Values allowed, 0 or 1. Displays or hide the type control in the Google Map: [codepeople-post-map typecontrol="1"] streetviewcontrol: Values allowed, 0 or 1. Displays or hide the street-view control in the Google Map: [codepeople-post-map streetviewcontrol="1"] defaultpost: Defines the post ID, for centring the map, and display by default the infowindow corresponding to the first point associated to this post: [codepeople-post-map defaultpost="396"] center: To define the center of the map, but if the infowindows are configured to be opened by default, the map will be centered in the point with the infowindow opened: [codepeople-post-map center="40.7127837,-74.00594130000002"] legend: Accepts a taxonomy name as value. Some common taxonomies names are: category and post_tag, for the categories and tags, respectively. Displays the legend with the list of elements that belong to the taxonomy and are assigned to the posts associated with the points: [codepeople-post-map legend="category"] legend_title: Text to be used as legend title: [codepeople-post-map legend="category" legend_title="Select the categories to display on map"] legend_class: Class name to be assigned to the legend. The legend design may be modified through CSS styles. Creates a class name, with the styles definition, and associates the new class name to the legend through the legend_class attribute: [codepeople-post-map legend="category" legend_class="my-legend-class"] tag: Tags slugs separated by “,”. Displays on map the points whose posts have assigned the tags: [codepeople-post-map tag="tag1,tag2,tag3"] cat: Categories IDs separated by “,” or -1. Displays on map the points whose posts belong to the categories. The special value -1, allows display on map all points defined in the website: [codepeople-post-map cat="2,4,56"] [codepeople-post-map cat="-1"] excludecat: Categories IDs to exclude, separated by “,”. From points to be displayed on map, the plugin excludes the points whose posts belong to the categories to exclude: [codepeople-post-map tag="tag1,tag2" excludecat="4"] excludepost: Posts IDs to exclude separated by “,”: [codepeople-post-map cat="-1" excludepost="235,260"] excludetag: Tags IDs to exclude separated by “,”: [codepeople-post-map excludetag="2,13"] taxonomy: The taxonomy is a special attribute that should be combined with other attributes, depending of taxonomies to use for points filtering. Suppose the website includes two new taxonomies: taxonomyA and taxonomyB, and the map should display all points that belong to the posts with the value T1 for taxonomyA, and T3,T4 for taxonomyB, the shortcode would be: [codepeople-post-map taxonomy="taxonomyA,taxonomyB" taxonomyA="T1" taxonomyB="t2,t3"] Note 5: The geolocation information is stored in image’s metadata from mobiles or cameras with GPS devices. Note 6: Some plugins interfere with the shortcodes replacements, and provokes that maps don’t be loaded correctly, in this case should be passed a new parameter through the shortcode print=1 Passing the parameter print=1, displays the map at beginning of page/post content. Note 7: To display in the Google Map all points in posts with a specific taxonomy assigned, or multiple taxonomies, should be used the “taxonomy” attribute in the shortcode, with the list of all taxonomies separated by the comma symbol, for example: taxonomy=”taxonomy1,taxonomy2″, and a new attribute for each taxonomy with the values corresponding. For example if you want select the points that belong to the posts with the values: “value1” for “taxonomy1”, the shortcode would be: [codepeople-post-map taxonomy="taxonomy1" taxonomy1="value1"] for multiple taxonomies: [codepeople-post-map taxonomy="taxonomy1,taxonomy2" taxonomy1="value1" taxonomy2="value2,value3"]. post_type: In combination with other attributes like: cat, tag or taxonomy, it is possible to load on map only the points that belong to the post types in the list: [codepeople-post-map cat="-1" post_type="post,page"] excludepost_type: In combination with other attributes like: cat, tag or taxonomy, it is possible to load on map only the points that do not belong to the post types in the list: [codepeople-post-map cat="-1" excludepost_type="post"] kml: Absolute URL (http://…) to a KML file with the Keyhole Markup Language: [codepeople-post-map kml="http://www.yourwebsite.com/your-file.kml"] If you want more information about this plugin or another one don’t doubt to visit my website: http://wordpress.dwbooster.com/content-tools/codepeople-post-map Interface Google Maps offers several setting options and is highly flexible. Options can be set up in the Settings page (and will become the default setup for all maps added to posts in the future), or may be specific to each post to be associated with the Google maps (in this case the values are entered in the editing screen of the post in question.) The settings are divided into two main groups, those belonging to the Google maps and those belonging to the geolocation point. Google Maps configuration options: Map zoom: Initial map zoom. Dynamic zoom: Allows to adjust the map’s zoom dynamically to display all points at the same time. Map width: Width of the map. Map height: Height of the map. Map margin: Margin of the map. Map align: Aligns the map at left, center or right of area. Map type: Select one of the possible types of maps to load (roadmap, satellite, terrain, hybrid). Map language: a large number of languages is available to be used on maps, select the one that matches your blog’s language. Allow drag the map: allows drag the map to see other places. Map route: Draws the route through the points that belong to the same post (available only in the premium and developer versions of plugin) Travel Mode: Travel mode used in route drawing (available only in the premium and developer versions of plugin) Include Traffic Layer: Displays a traffic layer over the map. Show info bubbles: display or hide the bubbles with the information associated to the points. Display a bubble by default: display a bubble opened by default. Display map in post / page: When the Google maps are inserted in a post you can select whether to display the Google maps or display an icon, which displays the map, when pressed (if the Google maps are inserted into a template that allows multiple posts, this option does not apply) Options: This setting allows you to select which map controls should be available. Display a bundle of points in the same area, like a cluster: Allows grouping multiple points in a cluster (available only in the premium and developer versions of plugin) Display Featured Image by default: Displays the Featured Image in posts and pages in the infowindows, if the points don’t have associated an image. Display the user’s location: Displays a marker with the location of user that is visiting the webpage (available only in the premium and developer versions of plugin) Refresh the user’s location every: Integer number that represent the interval in milliseconds to refresh the user’s location (available only in the premium and developer versions of plugin) Title of user’s location: Enter the title of infowindow belonging to the user’s marker (available only in the premium and developer versions of plugin) Display the get directions link: Displays a link in the infowindow to get the directions to the point (available only in the premium and developer versions of plugin) Display a link to Google Maps: Displays a link in the infowindow to load the point directly on Google Maps. Display a link to Street View: Displays a link in the infowindow to display the street view in the specific point. Enter the number of points on the post / page map: When the Google maps are inserted into a post, points that belong to the same categories will be shown on the same Google map. This option allows you to set the number of points to be shown. When the Google maps are inserted into a template that allows multiple posts this option does not apply. Generate points dynamically from geolocation information included on images, when images are uploaded to WordPress: If the image uploaded to WordPress includes geolocation information is generated a point with related to the geolocation information. Generate points dynamically from geolocation information included on posts: Displays new points on maps, if the post includes geolocation information, generated by WordPress App. Display maps legends: Check the option to display a legend with categories, tags, or custom taxonomies, to display or hide the points on map dynamically. Select the taxonomy to display on legend: Select the taxonomies to display on legend. Enter a title for legend: Enter the title to display in the legend. Enter a classname to be applied to the legend: To customize the legend appearance, associate to it a classname, and set the class definition in any of style files in your website. Highlight post when mouse hovers over related point on map: When the Google maps are inserted into a template that allows multiple posts, hovering the mouse over one of the points will highlight the associated post through assignment of a class in the next setup option. Highlight class: Name of the class to be assigned to a post to highlight when the mouse is hovered over the point associated with that post on the Google map. Use points information in search results: Allows search in the points information ( available only in the premium and developer versions of plugin ) Allow to associate a map to the post types: Allows to associate points to custom post types in website ( available only in the premium and developer versions of plugin ) Configuration options related to the points location Location name: Name of the place you …
Top keywords
- map66×2.62%
- points46×1.82%
- codepeople-post-map41×1.63%
- display36×1.43%
- post33×1.31%
- maps30×1.19%
- google29×1.15%
- posts24×0.95%
- legend21×0.83%
- google maps19×0.75%
- values18×0.71%
- displays17×0.67%
Rank Math SEO – AI SEO Tools to Dominate SEO Rankings
Rank Math SEO – WordPress AI SEO Plugin to Rank Higher 📈 ★★★★★ Rank Math SEO helps you stay ahead of competitors with AI-powered SEO tools built for modern search engines, AI assistants, and evolving search experiences. The plugin brings powerful AI SEO tools right into WordPress. It helps you optimize content, include Schema Markup, add smart internal links, target the right keywords, run SEO checks, and more. Over 4 million WordPress websites trust Rank Math to grow their organic traffic faster. If you know you could be doing more for your website’s SEO but don’t have the time, Rank Math SEO is exactly what you need. Try the FREE Demo of Rank Math Features | Why Choose Rank Math? | Compare | Screenshots | Benefits [NEW] AI Visibility: Monitor Your Brand Across AI Search ➜ AI Visibility score to monitor your brand’s visibility ➜ Track how ChatGPT and other AI platforms mention your brand ➜ Monitor your brand’s sentiment across AI responses ➜ See how you compare against your competitors in AI Search ➜ Access complete transcripts of AI responses ➜ Check your brand’s AI Visibility across different countries Learn more about AI Visibility ➜ [NEW] AI Link Genius: Smart Internal Linking on Autopilot ➜ View every internal and external link on your site from one dashboard ➜ Update hundreds of links at once instead of editing pages one by one ➜ Get smart link suggestions as you write, right inside the editor ➜ Monitor broken links, redirects and overall link health ➜ Automatically link keyword variations to the right pages ➜ Get related post suggestions that keep readers on your site longer ➜ Find pages nobody links to and reconnect them to the rest of your site ➜ Export your link data for reports or audits Learn more about AI Link Genius ➜ Exclusive Content AI. Write Highly Optimized SEO Content Get Started with Content AI for FREE and enjoy: ➜ 40+ AI Tools Built for SEO ➜ Use AI SEO to write high-quality content ➜ Fix SEO Issues in One Click ➜ Generate AI Image Alt Text Instantly ➜ Get Instant SEO Help with RankBot ➜ Full Control via Role Manager Learn more about Content AI ➜ Rank Math Includes Every SEO Tool You Need to Rank Higher See the features only Rank Math offers, and find out why it’s the right SEO plugin for you. ✔ Intuitive Setup Wizard that configures Rank Math automatically for your site ✔ 16+ Schema types to add rich results in few clicks ✔ Optimize post for unlimited focus keywords (5 by default, unlimited with this filter) ✔ Content AI to help you write SEO-friendly content ✔ Google Search Console integration ✔ Google Analytics Integration ✔ LSI keyword suggestions to attract more traffic ✔ XML Sitemap with custom post type support ✔ Detailed content analysis with actionable SEO recommendations ✔ 30+ SEO tests with 1-click ✔ Module based system, enable only what you need ✔ SEO optimized breadcrumbs with theme support ✔ Smart Redirection manager to create redirects at scale ✔ Built-in 404 monitor to catch and fix broken links ✔ Internal link suggestions ✔ Role Manager to control what each team member can access ✔ Automatic ALT Text and Title tags for every image ✔ WordPress Multisite support Why is Rank Math such a game-changer? ✔ Fastest SEO plugin with barely any impact on site speed ✔ WooCommerce SEO with automatic Schema and meta tags ✔ Elementor SEO with native integration ✔ Divi SEO with native integration ✔ Local SEO tools to help nearby customers find your business ✔ Google AMP SEO with SEO data added automatically to AMP pages ✔ bbPress & BuddyPress SEO support with Q&A Schema ✔ 1-Click Import from Yoast ✔ 1-Click Import from AIO SEO ✔ 1-Click Import from SEOPress ✔ 1-Click Import from All In One Schema ✔ 1-Click Import from Redirection plugin ✔ Translation plugins support including WPML, Weglot, TranslatePress and Polylang ✔ Theme support including Astra, Kadence, Flothemes, OceanWP, Themify, Schema Theme and more ✔ Page builder support including Oxygen, WPBakery, Avada, Beaver Builder, and Page Builder Framework and more Who Can Benefit From Rank Math? Rank Math Plugin is perfect for: ✔ Bloggers ✔ eCommerce Store Owners ✔ Niche Sites ✔ Businesses ✔ Agencies ✔ Local Businesses ✔ Startups ✔ The Real Estate ✔ Artists & Photographers ✔ The Solution Offerer ✔ Directories ✔ Vloggers (Video Bloggers) ✔ Or any WordPress Website Take a sneak peek into Rank Math’s features Detailed Setup Tutorial BIG Publications are Raving About Rank Math Rank Math Reviews Rank Math Review – Why I Ditched Yoast For Rank Math Rank Math on Product Hunt Rank Math Plugin Review from an SEO Consultant and many more Check Rank Math PRO Which Makes SEO Easier & Faster Rank Math FREE VS PRO COMPARISON Unique Features of Rank Math PRO AI Link Genius ✔ AI-Powered Internal Link Suggestions ✔ Auto-Link Keyword Variations ✔ Automatic Link Audits & Monitor Link Health ✔ Bulk Link Update Tool Google Analytics & Search Console Integration ✔ Integrated Google Analytics, AdSense & Search Console Data ✔ Analyze the SEO Performance of Each Post & Page ✔ See Top Winning/Losing Posts & Keywords ✔ Keep Track of Position History ✔ Rank Tracker for Important Keywords Schema aka Structured Data aka Rich Snippets ✔ 20+ Pre-defined Schema types ✔ Import Schema from Other Websites ✔ Advanced Schema Builder to create any complex Schema Markup ✔ Schema Templates for Automation ✔ Conditional Schema Markup ✔ Multiple Location Schema On Any Page (using the Shortcode) SEO Automation ✔ Automated Image SEO ✔ Advanced Filtering for Images [https://i.rankmath.com/zAUHHP] ✔ Watermark Your images ✔ Advanced Post filtering ✔ Bulk Actions [index, noindex, redirect, etc.] ✔ Quick Edit SEO Details ✔ Bulk Import SEO Meta Details Using CSV file ✔ Auto Detect Videos and Generate Schema Markup for Them ✔ Auto Fetch Thumbnail, Duration of YouTube & Vimeo Videos ✔ Automatically Flush Facebook Thumbnails ✔ Open External Links in New Tabs ✔ Nofollow External Links ✔ Noindex Paginated, Archive, Search Result Pages ✔ Instant Indexing for Bing & Yandex [Also Google using our Instant Indexing Plugin] WooCommerce SEO ✔ Automatic Schema for WooCommerce Products ✔ Advanced Open Graph Tags for WooCommerce Products ✔ Automatic NoIndex Hidden Products ✔ Remove WooCommerce Product and Category Base ✔ Add Custom Brands to Products ✔ Add Global Identifier Schema Like GTIN/MPN – Even to Variations MANY MORE FEATURES ✔ PREMIUM 24x7x365 Dedicated Support Managers ✔ MOST COMPETITIVE PRICING EVER! CHECK ALL THE PREMIUM FEATURES AND PRICING HERE Connect with the Team and SEO Experts JOIN FACEBOOK GROUP COMMUNITY: The purpose of this Facebook group is to have a collective place where the community can help each other, and we can get some feedback to improve Rank Math as well. Joining the group is also a great way to connect with like-minded people and share your SEO experience. Branding Guideline Rank Math® SEO is a registered trademark. Please use the following format when mentioning the Rank Math plugin anywhere. * Rank Math [correct] * RankMath [incorrect] * Rankmath [incorrect] * rankmath [incorrect] * rankMath [incorrect] External Services Rank Math SEO connects to several external services to provide its features. Below is a full disclosure of each service, what data is sent, and when. Rank Math Keyword Suggestions API (api.rankmath.com) Used to provide live keyword suggestions as you type in the Focus Keyword field in the post editor. Keyword suggestions: Each time you type in the Focus Keyword field, the keyword and your site’s locale are sent to api.rankmath.com to retrieve related keyword suggestions. This call is made directly from your browser. No account or login is required for this feature. Service provider: Rank Math (ONE.COM INDIA PRIVATE LIMITED) Privacy policy: https://rankmath.com/privacy-policy/ Terms of service: https://rankmath.com/terms-of-service/ Rank Math API (rankmath.com) Used for site registration, license verification, and the SEO Analysis feature. Site registration / account connection: Sends your site URL, Rank Math username, and API key when you connect your Rank Math account. This is required to activate API-based features. Site disconnection: Sends your site URL, username, and API key when you disconnect your account to remove the registration from Rank Math’s servers. SEO Analysis: Sends your site URL, target keyword, and language when you run an SEO site analysis. Results are returned as a scored report. Dashboard widget: Fetches the latest Rank Math blog posts to display in the WordPress admin dashboard widget. No personal data is sent. Results are cached for 12 hours. Service provider: Rank Math (ONE.COM INDIA PRIVATE LIMITED) Privacy policy: https://rankmath.com/privacy-policy/ Terms of service: https://rankmath.com/terms-of-service/ Rank Math OAuth Connector (oauth.rankmath.com) Used to connect your site to Google services (Search Console, Google Analytics) via OAuth. OAuth token exchange: When you authorize Google services, your browser is redirected through oauth.rankmath.com to exchange the authorization code for access and refresh tokens. The authorization code is sent to this service; it returns OAuth tokens for use on your site. Token refresh: Sends your Google refresh token to obtain a new access token when the current one expires. Service provider: Rank Math (ONE.COM INDIA PRIVATE LIMITED) Privacy policy: https://rankmath.com/privacy-policy/ Terms of service: https://rankmath.com/terms-of-service/ Rank Math Content AI (cai.rankmath.com) Used to power AI-based content features. Only active when the Content AI module is enabled and you have a connected Rank Math account. Keyword research: Sends the target keyword, language, and country to fetch keyword suggestions and metrics. Bulk SEO meta generation: Sends post title and content to generate SEO titles and descriptions in bulk. Bulk image alt text generation: Sends image data (base64-encoded) to generate descriptive alt text for images. Default prompts sync: Sends your site URL, username, API key, and plugin version daily to keep AI prompt templates up to date. Credits/wallet check: Sends your username, API key, and site URL to check remaining Content AI usage credits. Service provider: Rank Math (ONE.COM INDIA PRIVATE LIMITED) Privacy policy: https://rankmath.com/privacy-policy/ Terms of service: https://rankmath.com/terms-of-service/ Google APIs (googleapis.com, google.com) Used by the Analytics module to retrieve website performance data. Only active when you have connected Google Analytics via the Rank Math Analytics module. Google Analytics data: Sends your OAuth access token to fetch data like traffic, keyword, impressions, etc for your site from the Google Analytics API. Token verification: Sends your OAuth access token to verify its validity and authorized scopes. Google Tag Manager script (googletagmanager.com): When a Google Analytics / Google Tag property ID is configured, the Google Tag (gtag.js) script is loaded from googletagmanager.com on your site’s front end. AMP analytics (cdn.ampproject.org): When AMP is active and a Google Analytics property is configured, the AMP analytics component script is loaded from cdn.ampproject.org. Service provider: Google LLC Privacy policy: https://policies.google.com/privacy Terms of service: https://policies.google.com/terms IndexNow API (api.indexnow.org) Used by the Instant Indexing module to notify search engines of new or updated content. Only active when the Instant Indexing module is enabled. Sends a list of URLs, your site URL, and your IndexNow API key to api.indexnow.org each time content is published or updated (or manually triggered). Service provider: Microsoft (Bing) Privacy policy: https://privacy.microsoft.com/en-us/privacystatement Terms of service: https://www.indexnow.org/faq Facebook Graph API (graph.facebook.com) Used to refresh Facebook’s cached preview when a post is updated. Only active when a Facebook App ID and App Secret are configured in Rank Math’s Social settings. Sends the post’s public URL and your Facebook App credentials to trigger a re-scrape of the page by Facebook. Service provider: Meta Platforms, Inc. Privacy policy: https://www.facebook.com/privacy/policy/ Terms of service: https://developers.facebook.com/terms/