weblinksのweblinks_gmap.jsを読んでみる事にしました。
その間に、いろいろと調べたリンク先を列挙しておきます。

GoogleMap

GBrowserIsCompatible
  http://www.openspc2.org/Google/Maps/api/GBrowserIsCompatible/index.html

マップタイプの追加(addMapTypeメソッド)
  http://www.ajaxtower.jp/googlemaps/gmaptype/index3.html

G_PHYSICAL_MAP
  http://flughafen.jp/blog/2007/11/g_physical_map.html

GScaleControlクラス
  http://www.ajaxtower.jp/googlemaps/gcontrol/index6.html

GOverviewMapControlクラス
  http://www.ajaxtower.jp/googlemaps/gcontrol/index8.html

GLatLng
  地図上の緯度経度を指定
  http://www.openspc2.org/Google/Maps/api2/GLatLng/GLatLng/index.html

座標の指定(setCenterメソッド)
  地図に表示される座標を指定。setCenter(center, zoom, type)
  引数:centerツꀀ 表示される地図の中央の座標 / zoomツꀀ 縮尺(省可) / typeツꀀ マップタイプ(省可)
  http://www.ajaxtower.jp/googlemaps/gmap2/index3.html

setMapType
  表示する画像指定。地図はG_MAP_TYPE / 衛星写真はG_SATELLITE_TYPE /
  地図と衛星の合成はG_HYBRID_TYPE
  http://www.openspc2.org/Google/Maps/api2/GMap2/setMapType/index.html

マーカーの表示(GMarkerクラス, addOverlayメソッド)
  GMarker(latlng, opts?)で、マーカー作成。
  addOverlay(overlay)で、地図に追加。
  http://www.ajaxtower.jp/googlemaps/gmarker/index1.html

getCenter
  地図の中央の座標を取る
  http://www.openspc2.org/Google/Maps/api2/GMap2/getCenter/index.html

GMarker
  地図にマーカーを追加して表示 GMarker(point, options)
  http://www.openspc2.org/Google/Maps/api2/GMarker/GMarker/index.html

GEvent
  地図やマーカーで発生するイベント。で、addListener(source, event, handler)。
  http://www.ajaxtower.jp/googlemaps/gevent/index1.html

openInfoWindowHtml
  http://www.ajaxtower.jp/googlemaps/gmarker/index3.html

javascript

parseFloat
  小数を含む文字列を数値に
  http://www.openspc2.org/JavaScript/ref/convert/parseFlt.htm

ツꀀMath.floor
  数学関数。floorは繰り下げた整数値
  http://www.tohoho-web.com/js/math.htm