Paid plug-in development opportunity

Hello All -

I’m looking to hire a developer to create a plugin that extends the functionality of the Image Marker plug-in currently available in Bubble.

The only additional feature needed is the ability to change the graphic used for the marker programmatically based on a query.

For reference, my app is tracking basketball scores and I want to show one kind of marker on top of an image of the court for a made shot, and a different marker for a missed shot. I will also have other events that will require different marker types so the plug-in needs to handle more than just two types.

If you are capable and interested, please reply and let me know as well as roughly what the effort would be and what your price would be.

Richard

1 Like

Hi Richard,
I would be interested as this is within my skill set.
You can reach me on andrewjohnson56782@gmail.com
Best Wishes,
Andrew

You should reach out to the plugin developer as he is the only one that can add a feature to an existing plugin

1 Like

I think you’re capable of creating a private plug-in. You can check the code for the Image Marker plugin here Bubble Plugin Editor - Image Marker

<script src="//dd7tel2830j4w.cloudfront.net/f1535808417244x369071930181235100/jquery-ui.min.js"></script>
<script src="//dd7tel2830j4w.cloudfront.net/f1535805302964x700419988716021100/jquery.ui.touch-punch.min.js"></script>
<script>
var uniqueid = instance.data.uniqueid;
var picker = $(instance.canvas.find('#'+uniqueid)[0]);
var my_canvas_new = picker.get(0).id; 

$("#"+my_canvas_new).draggable();</script>

<script>
jQuery.browser = {};
(function () {
    jQuery.browser.msie = false;
    jQuery.browser.version = 0;
    if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
        jQuery.browser.msie = true;
        jQuery.browser.version = RegExp.$1;
    }
})();

</script>
<script>jQuery.curCSS = function(element, prop, val) {
    return jQuery(element).css(prop, val);
};
</script>