入力として住所文字列(例:渋谷区恵比寿)が渡されると、
API経由で緯度経度を取得し、
それをもとに alpslab base の地図ページを表示するという
サンプル CGI (perl) です。
#!/usr/bin/perl -T
use strict;
use warnings;
use CGI;
use URI::Escape;
use LWP::Simple;
my $q = new CGI;
my $ek = URI::Escape::uri_escape($q->param('q')...