我有一個工作單張地圖,但無法使用encodeURI傳遞SVG圖標(沒有嘗試encodeURIComponent,因爲我不確定是否是問題)。該gist我使用的是展示瞭如何在SVG矩形通過,這部作品:Leaflet.js中的SVG圖
<svg xmlns='http://www.w3.org/2000/svg'> <rect> x='0' y='0' width='20' height='10' fill='#000000' </rect> </svg>
不過,我不能在一個圓圈或成功的路徑通過,即使代碼是有效的,在SVGOMG優化,出現正確使用SVG短片,如SVG查看器。例如,一個明星。
<svg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px'><path d='M2,111 h300 l-242.7,176.3 92.7,-285.3 92.7,285.3 z' fill='#000000'/></svg>
的example is on CodePen與代碼相關的線路有:
var svgicon ="<svg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px'><path d='M2,111 h300 l-242.7,176.3 92.7,-285.3 92.7,285.3 z' fill='#000000'/></svg>"
var url = encodeURI("data:image/svg+xml," + svgicon).replace(/%20/g, ' ').replace(/%22/g, "'").replace(/%3C/g,'<').replace(/%3E/g,'>');
console.log(url);
您可以在控制檯中看到的SVG路徑。
"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px'><path d='M2,111 h300 l-242.7,176.3 92.7,-285.3 92.7,285.3 z' fill='#000000'/></svg>"
什麼也沒有顯示,也沒有錯誤信息。有時,一個破碎的圖像鏈接出現。
謝謝!我以爲我驗證了我的SVG路徑在http://www.rapidtables.com/web/tools/svg-viewer-editor.htm中工作,但似乎我只需要更好地理解基本的SVG。 – achen