D3 DataMaps(或 jvectormap):如何通过坐标将自定义对象放在地图上
D3 DataMaps (or jvectormap): How to put a custom object on map by coords
例如,我想通过 gps 坐标(经纬度)向世界地图添加自定义 html 对象 - 就像用 css 或任何其他(js?)标记动画完成的脉动点
<style>
#circle {
background: red;
width: 10px;
height: 10px;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
}
.gps_ring {
border: 3px solid red;
-webkit-border-radius: 30px;
height: 18px;
width: 18px;
left:20px;
top:214px;
-webkit-animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.0
}
@-webkit-keyframes pulsate {
0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
50% {opacity: 1.0;}
100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
</style>
<div id="state" class="grid_4 alpha">
<div class="gps_ring"></div>
</div>
你可以从投影得到x,y坐标:
var projection = d3.geo.mercator()
.center([0, 5 ])
.scale(150);
projection([long, lat]);
对于动画,您可以使用 d3 转换 example 或 CSS。
我已经为你创建了一个区块:http://bl.ocks.org/ckothari/32149f15261b9c5c7a56c40f7f6b353d
编辑
抱歉,刚刚意识到您的问题是关于使用 http://datamaps.github.io/。让我知道你是否可以使用 topojson,否则我会删除我的答案。
EDIT-2
为国家着色:
d3.tsv('data.csv', function(data){
g.selectAll('path')
.filter(function(d){
return data.find(function(d1){
return d1.iso == d.properties.iso_a2;
})
})
.attr('class', 'selected');
//...
})
EDIT-3 链接转换
更新示例:https://bl.ocks.org/ckothari/raw/32149f15261b9c5c7a56c40f7f6b353d/
例如,我想通过 gps 坐标(经纬度)向世界地图添加自定义 html 对象 - 就像用 css 或任何其他(js?)标记动画完成的脉动点
<style>
#circle {
background: red;
width: 10px;
height: 10px;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
}
.gps_ring {
border: 3px solid red;
-webkit-border-radius: 30px;
height: 18px;
width: 18px;
left:20px;
top:214px;
-webkit-animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.0
}
@-webkit-keyframes pulsate {
0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
50% {opacity: 1.0;}
100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
</style>
<div id="state" class="grid_4 alpha">
<div class="gps_ring"></div>
</div>
你可以从投影得到x,y坐标:
var projection = d3.geo.mercator()
.center([0, 5 ])
.scale(150);
projection([long, lat]);
对于动画,您可以使用 d3 转换 example 或 CSS。
我已经为你创建了一个区块:http://bl.ocks.org/ckothari/32149f15261b9c5c7a56c40f7f6b353d
编辑 抱歉,刚刚意识到您的问题是关于使用 http://datamaps.github.io/。让我知道你是否可以使用 topojson,否则我会删除我的答案。
EDIT-2 为国家着色:
d3.tsv('data.csv', function(data){
g.selectAll('path')
.filter(function(d){
return data.find(function(d1){
return d1.iso == d.properties.iso_a2;
})
})
.attr('class', 'selected');
//...
})
EDIT-3 链接转换 更新示例:https://bl.ocks.org/ckothari/raw/32149f15261b9c5c7a56c40f7f6b353d/