Plugin Directory

Changeset 3027917


Ignore:
Timestamp:
01/28/2024 10:28:36 PM (2 years ago)
Author:
gsarig
Message:

Updating readme/assets from GitHub

Location:
ootb-openstreetmap
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ootb-openstreetmap/tags/2.6.0/readme.txt

    r3027915 r3027917  
    3535* OpenAI integration which allows you to add markers by using commands in natural language. Just say "please" to activate (e.g. "Please, show me where GOT was filmed"). Requires an OpenAI API key. [Read more](https://www.gsarigiannidis.gr/openstreetmap-openai-integration/).
    3636* Query Maps: Supports creating a map out of maps added on other posts or post types. This can be quite powerful when, for example, you have a custom post type for "Places" with each place having its own map, and you want to dynamically gather-up all the places on a single map.
    37 * Shortcode support: You can use the shortcode `[ootb_openstreetmap]` as an alternative way to use the aforementioned Query Maps feature (see the FAQ for more info).
     37* Shortcode support: You can use the shortcode `[ootb_query]` as an alternative way to use the aforementioned Query Maps feature (see the FAQ for more info).
    3838* Adjust the map height.
    3939* Change the default marker icon with a custom one.
     
    8282
    8383= How can I use the shortcode? =
    84 The shortcode `[ootb_openstreetmap]` allows you to display a dynamic map, which retrieves markers from other posts or post types. Just add it to a post or page and you're good to go. By default, it will fetch the markers from the 100 most recent posts. The shortcode supports the following attributes:
     84The shortcode `[ootb_query]` allows you to display a dynamic map, which retrieves markers from other posts or post types. Just add it to a post or page and you're good to go. By default, it will fetch the markers from the 100 most recent posts. The shortcode supports the following attributes:
    8585* post_type: (Optional) The type of post to query. By default, it is set to `post`.
    8686* posts_per_page: (Optional) The number of posts to be displayed on page. Default value is `100`.
     
    9797Here's an example of how you can use it:
    9898```
    99 [ootb_openstreetmap post_type="post" post_ids="1,2,3,4" height="400px" provider="mapbox" maptype="polygon" touchzoom="true" scrollwheelzoom="true" dragging="true" doubleclickzoom="true" marker="https://www.example.com/my-custom-icon.png"]
     99[ootb_query post_type="post" post_ids="1,2,3,4" height="400px" provider="mapbox" maptype="polygon" touchzoom="true" scrollwheelzoom="true" dragging="true" doubleclickzoom="true" marker="https://www.example.com/my-custom-icon.png"]
    100100```
    101101
     
    170170= 2.6.0 =
    171171* [NEW] Adds option to query maps, which allows you to create a map out of maps added on other posts or post types. This can be quite powerful when, for example, you have a custom post type for "Places" with each place having its own map, and you want to dynamically gather-up all the places on a single map.
    172 * [NEW] Adds shortcode support. You can use the shortcode `[ootb_openstreetmap]` to retrieve the aforementioned Query Maps feature (see the FAQ for more info).
     172* [NEW] Adds shortcode support. You can use the shortcode `[ootb_query]` to retrieve the aforementioned Query Maps feature (see the FAQ for more info).
    173173
    174174= 2.5.0 =
  • ootb-openstreetmap/trunk/readme.txt

    r3027915 r3027917  
    3535* OpenAI integration which allows you to add markers by using commands in natural language. Just say "please" to activate (e.g. "Please, show me where GOT was filmed"). Requires an OpenAI API key. [Read more](https://www.gsarigiannidis.gr/openstreetmap-openai-integration/).
    3636* Query Maps: Supports creating a map out of maps added on other posts or post types. This can be quite powerful when, for example, you have a custom post type for "Places" with each place having its own map, and you want to dynamically gather-up all the places on a single map.
    37 * Shortcode support: You can use the shortcode `[ootb_openstreetmap]` as an alternative way to use the aforementioned Query Maps feature (see the FAQ for more info).
     37* Shortcode support: You can use the shortcode `[ootb_query]` as an alternative way to use the aforementioned Query Maps feature (see the FAQ for more info).
    3838* Adjust the map height.
    3939* Change the default marker icon with a custom one.
     
    8282
    8383= How can I use the shortcode? =
    84 The shortcode `[ootb_openstreetmap]` allows you to display a dynamic map, which retrieves markers from other posts or post types. Just add it to a post or page and you're good to go. By default, it will fetch the markers from the 100 most recent posts. The shortcode supports the following attributes:
     84The shortcode `[ootb_query]` allows you to display a dynamic map, which retrieves markers from other posts or post types. Just add it to a post or page and you're good to go. By default, it will fetch the markers from the 100 most recent posts. The shortcode supports the following attributes:
    8585* post_type: (Optional) The type of post to query. By default, it is set to `post`.
    8686* posts_per_page: (Optional) The number of posts to be displayed on page. Default value is `100`.
     
    9797Here's an example of how you can use it:
    9898```
    99 [ootb_openstreetmap post_type="post" post_ids="1,2,3,4" height="400px" provider="mapbox" maptype="polygon" touchzoom="true" scrollwheelzoom="true" dragging="true" doubleclickzoom="true" marker="https://www.example.com/my-custom-icon.png"]
     99[ootb_query post_type="post" post_ids="1,2,3,4" height="400px" provider="mapbox" maptype="polygon" touchzoom="true" scrollwheelzoom="true" dragging="true" doubleclickzoom="true" marker="https://www.example.com/my-custom-icon.png"]
    100100```
    101101
     
    170170= 2.6.0 =
    171171* [NEW] Adds option to query maps, which allows you to create a map out of maps added on other posts or post types. This can be quite powerful when, for example, you have a custom post type for "Places" with each place having its own map, and you want to dynamically gather-up all the places on a single map.
    172 * [NEW] Adds shortcode support. You can use the shortcode `[ootb_openstreetmap]` to retrieve the aforementioned Query Maps feature (see the FAQ for more info).
     172* [NEW] Adds shortcode support. You can use the shortcode `[ootb_query]` to retrieve the aforementioned Query Maps feature (see the FAQ for more info).
    173173
    174174= 2.5.0 =
Note: See TracChangeset for help on using the changeset viewer.