leaflet は GEOJSON をサポートしているため、リーフレットでベクターデータを簡単に表示できます。
見る:
http://leaflet.cloudmade.com/examples/geojson.html
python geojsonライブラリは geojson もサポートしているため、適切なオブジェクトに取得し、結果の JSON をリーフレットに提供する前に必要なプロパティを追加する以外に、python 側で行う必要があることはあまりありません。
標準の XMLHttpRequest() を使用して、提供している場所から JSON オブジェクトを取得するだけです。
function loadData(){
// retrieve and load features to a layer
var xhrequest = new XMLHttpRequest();
xhrequest.onreadystatechange = function(){
if (xhrequest.readyState == 4){
if (xhrequest.status == 200){
var geojsonLayer = new L.GeoJSON();
geojsonLayer.on("featureparse", function(e){
if (e.properties && e.properties.name && e.properties.value){
var popupContent = "Whatever added properties you want to display";
e.layer.bindPopup(popupContent);
};
// any styles you've added
if (e.properties && e.properties.style && e.layer.setStyle){
e.layer.setStyle(e.properties.style);
};
});
var layerItems = JSON.parse(xhrequest.responseText);
// add features to layer
for (i=0; i<layerItems.length;i++){
var geojsonFeature = layerItems[i];
geojsonLayer.addGeoJSON(geojsonFeature);
};
map.addLayer(geojsonLayer);
};
};
};
var url= "<url of where you are serving the GEOJSON data>";
xhrequest.open('GET', url, true);
xhrequest.send(null);
}