字符串模板传参
const makePopupHtml = (options) => { const html =
名称:${
options.name
}
options.name
}
类型:${
options.poiType
}
options.poiType
}
经度:${
options.lng || options.lon
}
options.lng || options.lon
}
纬度:${
options.lat
}
options.lat
}
; return html; };