我想在使用vue2-google-maps时为Google地图制作自定义信息窗口。但到目前为止,据我所知,我们只能在信息窗口中添加文字。有没有办法用我的自定义HTML自定义它。
我希望使用vue2-google-maps完成此操作。
感谢。
答案 0 :(得分:2)
我们可以通过在infoOptions属性中发送“ content”参数来实现这一目标。
<gmap-map
:center="center"
:zoom="13"
:options="mapStyle"
ref="map"
style="width: 100%; height: 100%"
>
<gmap-info-window
:options="infoOptions"
:position="infoPosition"
:opened="infoOpened"
:content="infoContent"
@closeclick="infoOpened=false">
</gmap-info-window>
<gmap-marker v-if="mapLoaded"
:key="index"
v-for="(m, index) in markers"
:position="m.position"
:clickable="true"
@click="toggleInfo(m, index)"
></gmap-marker>
</gmap-map>
数据中
data() {
return {
map: null,
mapLoaded: false,
center: { lat: 22.449769, lng: .3902178 },
markers: [
{
position: {
lat: 22.449769,
lng: .3902178
}
}
],
infoPosition: null,
infoContent: null,
infoOpened: false,
infoCurrentKey: null,
infoOptions: {
pixelOffset: {
width: 0,
height: -35
},
content:
'<div id="content">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+
'<div id="bodyContent">'+
'<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' +
'sandstone rock formation in the southern part of the '+
'Northern Territory, central Australia. It lies 335 km (208 mi) '+
'south west of the nearest large town, Alice Springs; 450 km '+
'(280 mi) by road. Kata Tjuta and Uluru are the two major '+
'features of the Uluru - Kata Tjuta National Park. Uluru is '+
'sacred to the Pitjantjatjara and Yankunytjatjara, the '+
'Aboriginal people of the area. It has many springs, waterholes, '+
'rock caves and ancient paintings. Uluru is listed as a World '+
'Heritage Site.</p>'+
'<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+
'https://en.wikipedia.org/w/index.php?title=Uluru</a> '+
'(last visited June 22, 2009).</p>'+
'</div>'+
'</div>'
}
};
}