JSFiddle - React, Tailwind, and code Playground

by ruslanchek

JavaScript

var Marker = function(){
    this.instance = {};
    this.options = {};
};

Marker.prototype.show = function(){
    this.instance.show = true;
}

Marker.prototype.hide = function(){
    this.instance.show = false;
}

function PosMarker()