This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Simple Shortcode for Google Maps

Сүрөттөө

Simple to use, yet powerful, Google Maps plugin! Reviews say this is “Best Google Map Shortcode plugin”.

Put a Google map on your WordPress posts and pages simply and easily with a shortcode. Straight forward and easy to use! Ideal for contact page maps, maps showing delivery areas and many other uses!

This plugin will enable a simple shortcode that you can use for embedding Google Maps in any WordPress post or page. The shortcode uses the WordPress HTTPS API and the Transients API for delivering cached Google maps with little to no impact on your site’s performance.

Maps are displayed with the [pw_map] shortcode:

[pw_map address="New York City" key="YOUR API KEY"]

Google now requires that new accounts use an API key. You can register a free API key here.

You can have multiple map pins, simply add multiple addresses separated by semi-colon ;

[pw_map address="Statue of Liberty National Monument NYC;Empire State Building, New York, NY, USA" key="YOUR API KEY"]

All Shortcode Options

Mandatory

  • address – Description: The address you want pinned – Allowed values: any address that Google can find, multi addresses separated by ;
  • key – Description: Your Google Maps API Key – Allowed values: valid key
  • Optional ( with default values)

  • width – Description: sets the map width – Default: 100% – Allowed values: size in % or px
  • height – Description: sets the map height – Default: 400px – Allowed values: size in % or px
  • enablescrollwheel – Description: zooming on the map using a mouse scroll wheel – Default: true – Allowed values: true or false
  • zoom – Description: The initial Map zoom level – Default: 15 – Allowed values: Valid zoom values are numbers from zero up to the supported maximum zoom level
  • disablecontrols – Description: Enables/disables all default UI buttons. May be overridden individually. Does not disable the keyboard controls – Default: false – Allowed values: true or false
  • force – Description: disable caching of geocoding, only use this on test – Default: false – Allowed values: true or false
  • zoomcontrol – Description: display the Zoom +/- buttons – Default: true – Allowed values: true or false
  • nozoom – Description: fixes the zoom level by seeting min and max to the starting zoom – Default: false – Allowed values: true or false
  • gesturehandling – Description: This setting controls how the amp handles gestures on the map. – Default: auto – Allowed values:
    • “cooperative”: Scroll events and one-finger touch gestures scroll the page, and do not zoom or pan the map. Two-finger touch gestures pan and zoom the map. Scroll events with a ctrl key or ⌘ key pressed zoom the map. In this mode the map cooperates with the page.
    • “greedy”: All touch gestures and scroll events pan or zoom the map.
    • “none”: The map cannot be panned or zoomed by user gestures.
    • “auto”: Gesture handling is either cooperative or greedy, depending on whether the page is scrollable or in an iframe.
  • maptypeid – Description: Determines the initial map display type – Default: roadmap – Allowed values:
    • “roadmap”: This map type displays a normal street map.
    • “satellite”: This map type displays satellite images.
    • “hybrid”: This map type displays a transparent layer of major streets on satellite images.
    • “terrain”: This map type displays maps with physical features such as terrain and vegetation.

    Блоктор

    This plugin provides 1 block.

    • Simple Google Maps Google Maps Block

    Орнотуу

    1. Activate the plugin.
    2. Obtain an API key here.
    3. Added [pw_map address=”your address here” key=”YOUR API KEY”] to any post or page.

    FAQ.KG

    Can I change the width or height of the map?

    Yes, simply supply a width and height parameter:

    [pw_map address="New York City" width="400px" height="200px" key="YOUR API KEY"]
    

    You can also use percentages for heights:

    [pw_map address="New York City" width="50%" height="200px" key="YOUR API KEY"]
    

    Can I disable the scroll wheel?

    Yes, simple add enablescrollwheel="false" to the maps shortcode.

    [pw_map address="New York City" enablescrollwheel="false" key="YOUR API KEY"]
    

    Can I disable the map controls?

    Yes, simple add disablecontrols="true" to the shortcode.

    [pw_map address="New York City" disablecontrols="true" key="YOUR API KEY"]
    

    How are the maps cached?

    Maps are cached using the WordPress Transients API, which allows for very efficient and WordPress standard database-based caching.

    Each time you display a map, the address specified is used to generate a unique md5 hash, which is used for the cache identifier. This means that if you change the address used for your map, the cache will be refreshed.

    For testing ONLY if you want to not use the cache then specify force=true

    e.g.

    [pw_map address="New York City" force="true" key="YOUR API KEY"]
    

    How often do caches refresh?

    The maps are cached for 3 months. Caches are automatically cleared (for individual maps) when you change the address in the shortcode.

    Can I specify multiple pins?

    Yes simply separate addresses with a semi-colon ; the map will center on the first pin

    [pw_map address="New York City;New Jersey" zoom="8" key="YOUR API KEY"]
    

    How do I change the initial zoom?

    Initial zoom can be controlled with the shortcode option zoom= the default is zoom=15 use for instance zoom=10 to zoom out

    [pw_map address="New York City" zoom="8" key="YOUR API KEY"]
    

    Why do I get REQUEST_DENIED error?

    This is likely to be an issue with the authorization you granted to your API key see Google API REQUEST_DENIED troubleshooting

    It is recommended that you set an Application Restriction to restrict your API key from others using it.

    However restricting the referrer HTTP will cause this error ‘API keys with referer restrictions cannot be used with this API’, this is because the geoencoding is performed server side and cached server side, so there is no browser referrer.
    If you get this message change your restriction to IP addresses (web servers, cron jobs, etc.) using the IP address of your website.

    If you restrict your API key to specific APIs make sure you enable at least
    * Maps JavaScript API
    * Geocoding API

    Are there any filters for developers?

    For developer documentation on filters visit here https://fullworksplugins.com/docs/developers-simple-shortcode-for-google-maps/

    Сын-пикирлер

    Сентябрь 14, 2022-ж. 4 replies
    This was exactly what I needed. I'm using my page title to set the location and couldn't do it with any of the Maps that require you to set the location in the block. Those are great if you are putting a map on a page and the address will never change. I'm using this shortcode map on a page I've created as a template, thus every page created on that template has a different address, ie a different map. Of course it took some coding on my end to use the page title but much less than if I did this without the plugin. Much appreciated!!!
    Август 14, 2022-ж.
    Use this now since years, never a problem. great job!
    Read all 42 reviews

    Contributors & Developers

    “Simple Shortcode for Google Maps” is open source software. The following people have contributed to this plugin.

    Мүчөлөрү

    “Simple Shortcode for Google Maps” has been translated into 3 locales. Thank you to the translators for their contributions.

    Translate “Simple Shortcode for Google Maps” into your language.

    Interested in development?

    Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

    Өзгөртүүлөр

    1.5.5

    • allow . (dot) in addresses so coordinates can be used

    1.5.4

    • add filters for developers
    • add option to disable zoom
    • remove special characters from address that can break Google

    Full Change History