我正在尝试在 Kartograph 生成的 SVG 地图上创建气泡。我想做这样的事情:http: //kartograph.org/showcase/symbols/
地图加载,但符号不显示。我在 Javascript 控制台中没有抛出任何错误。
$(document).ready(function() {
var map = $K.map('#map');
map.loadMap("mapfinal.svg", function() {
// add layers
map.addLayer('background', {
styles: {
fill: '#e8f9fb',
'stroke': 'none'
}
});
map.addLayer('world', {
styles: {
fill: '#f5f3f2',
'stroke': 'none'
}
});
map.addLayer('states', {
styles: {
fill: '#FFF',
'stroke': '#882222',
'stroke-width': 0.5,
'stroke-opacity': 0.4
}
});
map.addLayer('urban', {
styles: {
fill: '#553344',
'fill-opacity': 0.6,
'stroke': 'none'
}
});
map.addSymbols({
type: kartograph.Bubble,
data: [{
lon: -104,
lat: 40.5,
name: 'Berlin'
}],
radius: 40,
location: function(d) {
return [d.lon, d.lat]
},
style: 'fill:#800000; stroke: #fff; fill-opacity: 0.5',
});
});
});
我不知道还能做什么。我已遵循所有示例代码并阅读了文档。