文字を描画する

説明

文字を描画するにはdraw_text()を使います。パラメータは書体、文字スタイル(太字、標準)、文字サイズ、基準位置、表示文字列、描画X座標(または経度)、描画Y座標(または緯度)の順番で指定します。

サンプルプログラム

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
<title>電子国土(国土地理院)</title>
<script type="text/javascript"><!--
function app_main(){
top.map.draw_xyunit("screen");
top.map.draw_level("all");
top.map.draw_color(255,0,0);
top.map.draw_text("Vardana","太字", 36, "LT", "OpenSpace", 20,10);
top.map.setMapCenter(137.95340448617935, 36.114983812119554, 18000);
top.map.openMap();
}
// --></script>
</head>
<body>
<h1>文字を描画する</h1>
<iframe name="map" src="./map.html" width="640" height="480"></iframe>
</body>
</html>
サンプルを実行
[戻る]