당신은 작동 다음 설명에 CDATA 블록에 HTML을 포함해야합니다.
참고 : 짧은 설명으로 스 니펫 요소를 KML에 추가해야하므로 전체 HTML이 장소 패널에 렌더링되지 않습니다.
실무 예는 다음과 같습니다 여기에서 찾을 수 있습니다 KML 포함 제한에 설명 요소에 대한
<?xml version="1.0" encoding="UTF-8"?>
<kml>
<Placemark>
<snippet>Click to see embedded chart</snippet>
<description>
<![CDATA[
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Google Visualization API Sample</title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1', {packages: ['motionchart']});
function drawVisualization() {
var time = [['2000W01', '2000W02'],
['2002Q3', '2002Q4'],
[1990, 1991],
[(new Date(2000, 0, 1)), (new Date(2000, 0, 2))]];
// ... rest of HTML/javascript truncated
// full HTML found here:
// https://code.google.com/apis/ajax/playground/?type=visualization#motion_chart_time_formats
<div id="visualization" style="width: 800px; height: 400px;"></div>
</body>
</html>
]]>
</description>
<Point>
<coordinates>-122.087461,37.422069</coordinates>
</Point>
</Placemark>
</kml>
세부 사항을. https://developers.google.com/kml/documentation/kmlreference#description
이 질문을 좀 더 구체적으로 작성하려면? – Zyerah