WRLD3Dで超簡単にシムシティのような3D地図表示 wrld.js APIを使ってサンプルを作ってみました

様々な地図APIを見ていて見つけた「WRLD3D」。APIを使って簡単に3D地図を使ったサービスやアプリケーションが作成できるプラットフォームです。面白そうなのでサンプルを参考にして作ってみました。

まずは、WRLDのサイトに登録してAPI Keyをゲット。試しに使って見るなら無料のStarterで十分。

数時間でデモサイトができました。


まるでシムシティのようなかわいい3D地図に、飛行機が飛んでいたり、車や電車が走っています。
雨や雪といった天候や時間帯、季節も変えられます。
残念ながら一部の地域しか3D地図が提供されていないみたいですね。日本は東京だけかな?
上のメニューで場所、天気、時間帯、季節を変更できるようにしました。
拡大縮小移動はマウスやタッチパッドで簡単にできるようになっています。3D地図の左上の矢印で傾き(チルト)や向きを変更できるようにしました。

ニューヨークやロンドンには青いドアのアイコンが表示されるところがあります。そこをクリックすると、

建物の内部が3D表示されます。左上のメニューで階を移動したり、外に出たりすることを可能にしました。

室内3Dモデルなども自分で作ったりすることができるみたいですね。APIが豊富で面白そうです。
作成したHTMLのソースは下記です(CSSやJavascriptを分けるのが面倒だったので中に埋め込んでいます)。これだけでここまで作れます。

<!DOCTYPE HTML>
<html>
  <head>
    <title>wrld.js test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <script src="https://cdn-webgl.wrld3d.com/wrldjs/dist/latest/wrld.js"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.1/leaflet.css" rel="stylesheet" />
    <style type="text/css">
    .button-radio input[type="radio"] {
      display: none;
    }
    .button-radio label {
      display:inline-block;
      color:#fff;
      background-color:#2780e3;
      width:20%;
      padding:5px 10px;
      text-align:center;
      margin: 5px;
    }
    .button-radio input[type="radio"]:checked + label {
      background-color:#000;
    }
    #controlButtons {
      position: absolute;
      z-index: 20;
    }
    #controlButtons button {
      display: block;
      width: 100%;
    }
    #floorButtons {
      position: absolute;
      z-index: 20;
      display: none;
    }
    #floorButtons button {
      display: block;
      width: 100%;
    }
  </style>
  </head>
  <body>
    <div>
      <form id="location" class="button-radio" onchange="setLocation()">
        <input id="l1" type="radio" name="location" value="0" checked>
        <label for="l1">東京</label>
        <input id="l2" type="radio" name="location" value="1">
        <label for="l2">ニューヨーク</label>
        <input id="l3" type="radio" name="location" value="2">
        <label for="l3">ロンドン</label>
        <input id="l4" type="radio" name="location" value="3">
        <label for="l4">ローマ</label>
      </form>
      <form id="weather" class="button-radio" onchange="setTheme()">
        <input id="w1" type="radio" name="weather" value="0" checked>
        <label for="w1">晴れ</label>
        <input id="w2" type="radio" name="weather" value="1">
        <label for="w2">曇り</label>
        <input id="w3" type="radio" name="weather" value="2">
        <label for="w3">雨</label>
        <input id="w4" type="radio" name="weather" value="3">
        <label for="w4">雪</label>
      </form>
      <form id="time" class="button-radio" onchange="setTheme()">
        <input id="t1" type="radio" name="time" value="0" checked>
        <label for="t1">夜明け</label>
        <input id="t2" type="radio" name="time" value="1">
        <label for="t2">昼</label>
        <input id="t3" type="radio" name="time" value="2">
        <label for="t3">夕焼け</label>
        <input id="t4" type="radio" name="time" value="3">
        <label for="t4">夜</label>
      </form>
      <form id="season" class="button-radio" onchange="setTheme()">
        <input id="s1" type="radio" name="season" value="0" checked>
        <label for="s1">春</label>
        <input id="s2" type="radio" name="season" value="1">
        <label for="s2">夏</label>
        <input id="s3" type="radio" name="season" value="2">
        <label for="s3">秋</label>
        <input id="s4" type="radio" name="season" value="3">
        <label for="s4">冬</label>
      </form>
    </div>
    <div style="position: relative">
      <div id="controlButtons">
        <button type="button" >
saya: