มาตราส่วนกราฟิกและลูกศรทิศเหนือ

มาตราส่วนกราฟิกและตัวชี้ทิศเหนือแบบพิมพ์ได้

มาตราส่วนกราฟิก

1:

ลูกศรทิศเหนือ

ความยาวแถบที่พิมพ์:

แถบสร้างตามมาตราส่วนจริงที่ขนาดมิลลิเมตรจริง พิมพ์ที่มาตราส่วน 100% เพื่อให้วัดได้ถูกต้อง

ตัวอย่างสด


แชร์สิ่งนี้

การค้นหายอดนิยม
สร้างมาตราส่วนกราฟิก แถบมาตราส่วนกราฟิก สร้างลูกศรทิศเหนือ แถบมาตราส่วนพิมพ์ได้ แถบมาตราส่วนแผนที่ สัญลักษณ์ลูกศรทิศเหนือ

เพิ่มเครื่องมือฟรีนี้ลงในเว็บไซต์ของคุณเอง — คัดลอกและวางโค้ดด้านล่าง

'; const win = window.open('', '_blank'); if (!win) { if (window.showToast) window.showToast('warning', T.popup_blocked); else alert(T.popup_blocked); return; } win.document.open(); win.document.write(html); win.document.close(); win.focus(); setTimeout(() => win.print(), 300); }); downloadBtn.addEventListener('click', async () => { const token = await ensureCharged(); if (!token) return; if (token.downloadUrl) { window.location.href = token.downloadUrl; return; } // Free fallback (admin set the cost to 0): no server PDF was // produced, so offer the exact-size SVG instead. const c = readConfig(); const node = svg.cloneNode(true); node.setAttribute('width', c.W + 'mm'); node.setAttribute('height', c.H + 'mm'); const blob = new Blob([new XMLSerializer().serializeToString(node)], { type: 'image/svg+xml' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'scale-bar.svg'; a.click(); URL.revokeObjectURL(a.href); }); render(); })();