@tuoyuan/map-adapter-lib
Version:
地图适配器库
10 lines (9 loc) • 369 B
JavaScript
function s(e, n) {
const t = document.createElement("span");
t.style.font = n, t.style.visibility = "hidden", t.style.position = "absolute", t.style.whiteSpace = "nowrap", t.textContent = e, document.body.appendChild(t);
const o = t.offsetWidth, i = t.offsetHeight;
return document.body.removeChild(t), { width: o, height: i };
}
export {
s as measureText
};