Coder Social home page Coder Social logo

Comments (4)

manifestinteractive avatar manifestinteractive commented on September 13, 2024

Sounds like a good idea. How would you want to approach this. There is already a way to handle sending data to regions... I could make it so that any region without data gets disabled from clicking. I can make it a setting ( boolean ) to disable regions without data. Your thoughts are welcome ;)

from jqvmap.

MarcusJT avatar MarcusJT commented on September 13, 2024

Well, you already have the ability to set the color of specific countries like this:

jQuery('#vmap').vectorMap('set', 'colors', {us: '#0000ff'});

But you also have the global setting "color", and I think this is a little messy, especially when you consider that enabling/disabling clicks is merely one example of many per-region properties that one might want to control, so it would be better to separate them out so that all the properties of regions were singular and could be set both globally and overriden per region in a standardise way that you can extend with new properties in the future.

So how about extending your "set" function to allow setting any property of all or specific regions to one or more values as required using the following 3 syntaxes:

//all regions blue
jQuery('#vmap').vectorMap('set', 'color', '#0000ff');

//US, SO, GR blue
jQuery('#vmap').vectorMap('set', 'color', '#0000ff', 'us,so,gr');

//US blue, SO red, GR green
jQuery('#vmap').vectorMap('set', 'color', {us: '#0000ff', so: '#ff0000', gr: '#00ff00'});

So then for disabling clicking you would just create a new region property "clickEnabled" (with supporting code tweaks elsewhere) and call it like this:

//clicks enabled for all regions
jQuery('#vmap').vectorMap('set', 'clickEnabled', true);

//clicks enabled for all regions which have data
jQuery('#vmap').vectorMap('set', 'clickEnabled', null);

//clicks disabled for US, SO, GR
jQuery('#vmap').vectorMap('set', 'clickEnabled', false, 'us,so,gr');

from jqvmap.

manifestinteractive avatar manifestinteractive commented on September 13, 2024

Seems pretty straight forward. I will work on this for the next version. This would be a handy feature to have.

from jqvmap.

jbafford avatar jbafford commented on September 13, 2024

My pull request #27, among other things, adds a check for isDefaultPrevented() in the regionClick event, allowing a jqvmap client to dynamically allow/suppress clicks on regions, which can be used as one way to solve this problem.

from jqvmap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.