百度很多東西,然后我沒找到騰訊地圖在VUE2.0里面的引用。于是根據(jù)找的其他地圖引用資料進(jìn)行嘗試。步驟如下。
首先在src里面建立了TMap.js的文件,內(nèi)容如下:
export function TMap(key) { return new Promise(function (resolve, reject) { window.init = function () { resolve(qq)//注意這里 } var script = document.createElement("script"); script.type = "text/javascript"; script.src = "http://map.qq.com/api/js?v=2.exp&callback=init&key="+key; script.onerror = reject; document.head.appendChild(script); }) }
然后,直接使用部分代碼,我在map.vue里面使用代碼如下:
網(wǎng)友評論