<template>
<div>
<map id="myMap" :style="{width: '100%', height: height+'rpx'}" :latitude="latitude" :longitude="longitude" :markers="markers" @markertap="clickMarker" show-location></map>
</div>
</template>
export default {
created() {
var mapContext = uni.createMapContext('myMap', this);
console.log(mapContext); // 这里打印没问题人
mapContext.getRegion({
success(res) {
console.log(res);
}
})
}
}
保存 找不到 myMap ,但我map组件上id已经给myMap 了