- →ダウンロード(kml_manual.zip)
- ※上記ファイルは同じフォルダに保存してください.
- ※また,このマニュアル上では例として保存フォルダを「C:\data」としています.
変数名 | 説明 |
{%name} | 火山名 |
{%name_j} | 読み |
{%name_e} | アルファベット |
{%longitude} | 経度 |
{%latitudes} | 緯度 |
{%img} | サムネールリンク先 |
{%html_link} | 個別火山リンク先 |
行番号 | ソース |
1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <kml xmlns="http://earth.google.com/kml/2.2"><Document><name>日本の火山</name> <Snippet maxLines="1"><![CDATA[産業技術総合研究所 日本の火山]]></Snippet> <Style id="styleinfo"><IconStyle> <Icon><href> TMNL/icon.png </href></Icon> <hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/></IconStyle> <LabelStyle><scale>0</scale></LabelStyle><BalloonStyle><text> <![CDATA[$[description]]]></text></BalloonStyle></Style> |
3 | <Placemark><Snippet maxLines="1"><![CDATA[{%name_j}/{%name_e}<br/>]]></Snippet> <name>{%name}</name> <description><![CDATA[ <font size=5><B>{%name}</B></font><br/> {%name_j}<br/>{%name_e}<br/><br/><div align="center"><a href="{%html_link}"> <img src="http://staff.aist.go.jp/nakano.shun/{%jpg}"></a></div> <a href="{%html_link}"><div align="right"><font size=3>詳細はこちら</font></div> </a><br/><div align="right">産業技術総合研究所 <a href ="http://riodb02.ibase.aist.go.jp/strata/VOL_JP/index.html">日本の火山</a> </div> ]]></description> <styleUrl>#styleinfo</styleUrl><Point><coordinates>{%longitude},{%latitudes}</coordinates></Point></Placemark> |
4 | </Document></kml> |
文字コード | 行番号 | ソース |
UTF-8 10-14行目をコメントアウト 17行目を有効にする |
10 11 12 13 14 17 |
// $text = file_get_contents( $csv_file ); // $text = mb_convert_encoding($text,"UTF-8","SJIS"); // $fp_csv = fopen( "php://temp","r+" ); // fwrite( $fp_csv,$text ); // rewind( $fp_csv ); $fp_csv = fopen( $csv_file, 'r' ); |
行番号 | ソース |
1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <kml xmlns="http://earth.google.com/kml/2.2"><Document> <name> タイトル1 </name><Snippet maxLines="1"><![CDATA[サブタイトル1 ]]></Snippet><Style id="styleinfo"><IconStyle><Icon><href> http://maps.google.com/mapfiles/kml/paddle/red-circle.png</href></Icon> <hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction"/></IconStyle> <LabelStyle><scale>0</scale></LabelStyle><BalloonStyle><text> <![CDATA[$[description]]]></text></BalloonStyle></Style> |
3 | <Placemark><Snippet maxLines="1"><![CDATA[ タイトル2 ]]></Snippet><name> サブタイトル2 </name><description><![CDATA[ テキスト ]]></description><styleUrl>#styleinfo</styleUrl><Point><coordinates>140.13406,36.06169</coordinates></Point></Placemark> |
4 | </Document></kml> |