Pinpoint image is a statamic addon that allows users to quickly and easily content manage points on images.
Pinpoint image is a Statamic addon that does something pretty neat. Oh yes, thats right, we need to explain that bit. Right then, It allows you to create your own pinpoint image fieldtype!
hmmmm, that still does not explain it, does it?
Perhaps an image, people like pictures, here is how the fieldtype looks in your cp admin:
This addon does:
- Allows you to add your own pinpoint image fieldtype (which was wonderfully described above)
- Add an image to the field
- Pin each point with text on each point
- Output the field data to the frontend with a handy tag
{{ pinpoint_image :field="pinpoint_image_field" }}
(:field= is the name of the field handle when you create the field in blueprint) - Edit the outputted field on the frontend
Pinpoint image requires a license to be used while on a production site. You can purchase one at https://statamic.com/addons/weareframework/pinpoint-image.
You may use Pinpoint image without a license while developing locally.
You can search for this addon in the Tools > Addons
section of the Statamic control panel and click install, or run the following command from your project root:
composer require weareframework/pinpoint-image
The field utilises the asset field type to grab an image so ensure you've picked a container for the field e.g. assets
Install it, use it, let your site have fun with it
This can be used within Antlers using the product_color_swatch tag:
{{ pinpoint_image :field="pinpoint_image_field" }}
:field=
is the name of the field handle when you create the field in blueprint
You can hover on each point to get your text you typed in the cp admin.
Pass field to the pinpoint_image
tag.
{{ pinpoint_image :field="pinpoint_image_field" }}
This will render a default pinpoint_image tag with the default output as shown above. Nice
If you want to customize the generated html, you can publish the views using
php artisan vendor:publish
and choosing Roxdigital\PinpointImage\ServiceProvider
This will create the file template to overwrite at the following path:
statamic-install-site-name/resources/views/vendor/pinpoint-image/tags/index.blade.php
Hopefully it makes sense for you to edit it!
Please see CHANGELOG for more information what has changed recently.
If you discover any security related issues, please use the issue tracker.