• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7.  
    8. <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
    9. <style></style>
    10. </head>
    11.  
    12. <body>
    13. <div id='myChart'></div>
    14. <script>
    15. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    16. zingchart.loadModules('maps, maps-gbrL2', function(e) {
    17. zingchart.render({
    18. id: 'myChart',
    19. data: {
    20. shapes: [{
    21. type: 'zingchart.maps',
    22. options: {
    23. zooming: false, // turn of zooming
    24. panning: false, // turn of zooming
    25. name: 'gbrL2',
    26. style: {
    27. controls: {
    28. visible: false,
    29. // other stuff to turn off zooming
    30. }
    31. }
    32. }
    33. }]
    34. },
    35. height: 600,
    36. width: '100%'
    37. });
    38. });
    39. </script>
    40. </body>
    41.  
    42. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7.  
    8. <script src="https://cdn.zingchart.com/zingchart.min.js"></script>
    9. </head>
    10.  
    11. <body>
    12. <div id='myChart'></div>
    13. </body>
    14.  
    15. </html>
    1.  
    1. zingchart.loadModules('maps, maps-gbrL2', function(e) {
    2. zingchart.render({
    3. id: 'myChart',
    4. data: {
    5. shapes: [{
    6. type: 'zingchart.maps',
    7. options: {
    8. zooming: false, // turn of zooming
    9. panning: false, // turn of zooming
    10. name: 'gbrL2',
    11. style: {
    12. controls: {
    13. visible: false,
    14. // other stuff to turn off zooming
    15. }
    16. }
    17. }
    18. }]
    19. },
    20. height: 600,
    21. width: '100%'
    22. });
    23. });