当生成 Google 地图视图的代码如下时,如何添加 KML 文件作为叠加层:
<script type="text/javascript">
jQuery(document).ready(function($){
jQuery('#google_map_1').gMap({
zoom:7,
markers:[{
address:'',
latitude:51.486782,
longitude:-0.143242,
html:'London, United Kingdom',
popup:true
}],
controls:[],
maptype:G_NORMAL_MAP,
scrollwheel:false
});
});