2016-02-01 29 views
1

美好的一天,我的朋友們! 我正在嘗試聯合leaflet.js和d3.js來標記我發生錯誤的對象。但有一些問題: 1)標籤路徑如何? 2)標籤如何排列? 3)voroni標籤(我認爲回答2個問題迫使我^ _ ^)D3文字作爲單張標籤?

因此,有我的代碼錯誤很多

var drawStyle = options.drawStyleOptions; 
    searchLayer = L.geoJson(features[index].geojson, { 
     style: drawStyle, 
     onEachFeature: function (feature, layer) { 
      layer.bindPopup(features[index].display_name); 
     } 
    }); 

    map.addLayer(searchLayer); 
    if (features[index].geojson.type === "Point" && options.pointGeometryZoomLevel !== -1) { 
     map.setView([features[index].geojson.coordinates[1], features[index].geojson.coordinates[0]], options.pointGeometryZoomLevel); 
    } 
    else { 
     map.fitBounds(searchLayer.getBounds()); 
     var path = d3.select("path") 
      .attr("id", "#wavy") 
     //Create an SVG text element and append a textPath element 
     path.append("text") 
      .append("textPath") //append a textPath to the text element 
      .attr("xlink:href", "#wavy") //place the ID of the path here 
      .style("text-anchor","middle") //place the text halfway on the arc 
      .attr("startOffset", "50%")  
      .text("Yay, my text is on a wavy path"); 
    } 
    return searchLayer; 

是否有人知道如何通過功能[指數]標記。顯示名稱???? 我也知道,這應該是很容易的((( 我發現了大約沿線標註的一些信息: http://www.visualcinnamon.com/2015/09/placing-text-on-arcs.html

這是我的SVG元素

<svg pointer-events="none" class="leaflet-zoom-animated" width="1674" height="463" viewBox="-139 -39 1674 463" style="transform: translate3d(-139px, -39px, 0px) scale(1);"> 
    <g> 
    <path class="leaflet-interactive" stroke="blue" stroke-opacity="0.65" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="red" fill-opacity="0.2" fill-rule="evenodd" pointer-events="visiblePainted" d="M549 206L558 200L561 190L564 189L567 180L574 173L573 172L579 172L583 174L586 171L594 169L594 167L599 164L598 165L600 169L603 170L603 172L605 172L605 170L609 170L615 165L623 162L645 160L645 158L650 155L650 153L656 146L650 142L654 138L670 138L675 137L677 135L687 135L689 131L690 132L695 129L699 121L701 121L701 119L704 116L708 116L709 112L715 108L716 100L722 98L722 96L726 96L729 93L735 92L741 94L744 97L744 99L747 100L752 105L760 118L760 128L755 136L755 138L758 139L756 145L772 145L773 148L770 153L772 155L787 157L787 159L796 166L797 169L795 173L797 173L801 179L802 178L810 182L820 192L822 192L820 194L820 198L824 202L826 202L824 206L825 205L828 208L831 207L841 215L842 225L846 229L845 230L845 228L838 225L832 229L824 229L817 224L809 226L802 221L800 223L799 222L797 224L798 227L791 232L789 230L787 232L783 232L776 227L776 229L773 230L773 232L772 231L770 233L769 232L760 235L753 239L742 234L742 236L738 238L738 242L735 243L736 244L734 248L732 250L726 250L724 248L716 246L703 246L700 243L689 244L685 236L675 230L674 231L673 228L662 227L655 232L655 234L646 245L643 245L646 254L644 256L645 265L641 261L635 265L633 263L627 263L619 259L616 262L615 261L608 264L601 263L598 266L596 272L597 279L589 294L587 288L586 275L574 264L564 252L566 252L563 243L561 243L556 238L555 225L552 224L554 218L554 210L551 209L549 206z"> 
    </path> 
    </g> 
    </svg> 

回答

0

您可以使用文本路徑寫文本沿着一條路徑:

想象一下,你有這樣的SVG路徑:

<svg pointer-events="none" class="leaflet-zoom-animated" width="1674" height="463" viewBox="-139 -39 1674 463" style="transform: translate3d(-139px, -39px, 0px) scale(1);"> 
    <g> 
     <path id="mypath" class="leaflet-interactive" stroke="blue" stroke-opacity="0.65" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="red" fill-opacity="0.2" fill-rule="evenodd" pointer-events="visiblePainted" d="M549 206L558 200L561 190L564 189L567 180L574 173L573 172L579 172L583 174L586 171L594 169L594 167L599 164L598 165L600 169L603 170L603 172L605 172L605 170L609 170L615 165L623 162L645 160L645 158L650 155L650 153L656 146L650 142L654 138L670 138L675 137L677 135L687 135L689 131L690 132L695 129L699 121L701 121L701 119L704 116L708 116L709 112L715 108L716 100L722 98L722 96L726 96L729 93L735 92L741 94L744 97L744 99L747 100L752 105L760 118L760 128L755 136L755 138L758 139L756 145L772 145L773 148L770 153L772 155L787 157L787 159L796 166L797 169L795 173L797 173L801 179L802 178L810 182L820 192L822 192L820 194L820 198L824 202L826 202L824 206L825 205L828 208L831 207L841 215L842 225L846 229L845 230L845 228L838 225L832 229L824 229L817 224L809 226L802 221L800 223L799 222L797 224L798 227L791 232L789 230L787 232L783 232L776 227L776 229L773 230L773 232L772 231L770 233L769 232L760 235L753 239L742 234L742 236L738 238L738 242L735 243L736 244L734 248L732 250L726 250L724 248L716 246L703 246L700 243L689 244L685 236L675 230L674 231L673 228L662 227L655 232L655 234L646 245L643 245L646 254L644 256L645 265L641 261L635 265L633 263L627 263L619 259L616 262L615 261L608 264L601 263L598 266L596 272L597 279L589 294L587 288L586 275L574 264L564 252L566 252L563 243L561 243L556 238L555 225L552 224L554 218L554 210L551 209L549 206z"> 
     </path> 
    </g> 
    </svg> 

給一個ID,path = mypath

下一頁我使用D3追加像這樣的文本路徑:

d3.select("svg").append("text") 
    .append("textPath") //append a textPath to the text element 
    .attr("xlink:href", "#mypath") //place the ID of the path here 
    .text("Hello World"); 

工作實例here

希望這有助於!

+0

非常感謝!這就是我要找的! –