Coder Social home page Coder Social logo

Destroy Map? about jqvmap HOT 4 CLOSED

10bestdesign avatar 10bestdesign commented on September 13, 2024
Destroy Map?

from jqvmap.

Comments (4)

ferengi avatar ferengi commented on September 13, 2024

I need this too, i want to reload a new map with ajax.

is this possible ?

from jqvmap.

ferengi avatar ferengi commented on September 13, 2024

my first solution...

first reload wirh ajax
jQuery.ajax({
data: {'elid': el, 'typ':'getmap'},
success: function(data){
jQuery('#vmap').html(data);
}
})

after this you have a new map....but the lable text is the old. Too fix this i have change

var mapData = WorldMap.maps[params.map]; ---> mapData = WorldMap.maps[params.map];

....now i have the problem that after hover the color don't switch back.

from jqvmap.

okendoken avatar okendoken commented on September 13, 2024

Everytime you need to update you map you can replace your element hard way :)

$('#vector-map').replaceWith("<div id='vector-map'></div>");
        var $map = $('#vector-map');
        $map.width("100%").height("100%").vectorMap();

from jqvmap.

chrisNom avatar chrisNom commented on September 13, 2024

I also needed to update the map, based on user interaction and none of the solutions above helped me.
Instead I just "remove" the map's parent div before calling the vectorMap():

           `// This is a hack, as the .empty() did not do the work
            $('#vmap').remove();

            // we recreate (after removing it) the container div, to reset all the data of the map
            $('#test')
                .append('<div id="vmap" style="height: 320px; position: relative; overflow: hidden; background-color: transparent;"></div>');

            // and then render map
            $('#vmap').vectorMap({
                map: 'world_en',
                backgroundColor: null,
                color: '#ffffff',
                hoverOpacity: 0.7,
                selectedColor: '#666666',
                enableZoom: true,
                showTooltip: true,
                values: sample_data,
                scaleColors: ['#C8EEFF', '#006491'],
                normalizeFunction: 'polynomial',
                onLabelShow: function (event, label, code) {
                    if (sample_data[code] > 0)
                        label.append(': ' + sample_data[code]);
                }
            });`

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.