Skip to content

Commit

Permalink
Arcs with popup example
Browse files Browse the repository at this point in the history
  • Loading branch information
magic890 committed Mar 7, 2016
1 parent ed2896c commit ce14dcd
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions src/examples/arc-with-popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<style>
.active { fill: blue !important;}
/*.datamaps-key dt, .datamaps-key dd {float: none !important;}
.datamaps-key {right: -50px; top: 0;}*/
</style>
</head>
<body>

<div id="container1" style="border:1px dotted blue; width: 700px; height: 475px; position: relative;"></div>
<script src="/src/js/components/d3/d3.min.js"></script>
<script src="/src/js/components/topojson/topojson.js"></script>
<!-- <script src="/src/js/json2.js"></script> -->
<script src="/src/rel/datamaps.world.js"></script>
<script>

var map = new Datamap({
scope: 'world',
element: document.getElementById('container1'),
geographyConfig: {
popupOnHover: false,
highlightOnHover: false,
borderColor: '#444',
borderWidth: 0.5
},
bubblesConfig: {
popupTemplate: function(geography, data) {
return '<div class="hoverinfo">Some From New: data about ' + data.centered + '</div>'
},
fillOpacity: 0.2
},
fills: {
'Visited': '#306596',
'neato': '#0fa0fa',
'Trouble': '#bada55',
defaultFill: '#dddddd'
}
});

// Mix and match ways to specify how arcs are drawn
map.arc([{
origin: {
latitude: 61,
longitude: -149
},
destination: {
latitude: -22,
longitude: -43
},
strokeColor: 'blue'
}, {
origin: 'MEX',
destination: 'ARG'
},
{
origin: 'CAF',
destination: 'IND'
},
{
origin: 'BRA',
destination: 'USA',
strokeColor: 'green'
}], {
animationSpeed: 2000,
popupOnHover: true
});

</script>
</body>
</html>

0 comments on commit ce14dcd

Please sign in to comment.