<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="19" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[19]</anchor-end> <dfn>Google Maps</dfn> は、 <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Google</anchor> の<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">地図</anchor>サービスです。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="20" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[20]</anchor-end> 単独の<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Webサービス</anchor>として提供されている他、 <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Web API</anchor>
を通じて多くの <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Webサイト</anchor>に埋め込まれて<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">地図</anchor>等の機能を提供しています。</p><section><h1>API を使う</h1><section><h1>地図の表示範囲を指定したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="6" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[6]</anchor-end> Map オブジェクトの <code>panTo</code> メソッドで指定できます。</p></section><section><h1>線の一部区間だけ色を変えたい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="3" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[3]</anchor-end> Polyline を区間ごとに分割してそれぞれの色を指定すれば良い。</p></section><section><h1>線に縁取りしたい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="4" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[4]</anchor-end> 太い Polyline の上に細い Polyline を重ねるしかない?</p></section><section><h1>線に沿って文字を描きたい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="7" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[7]</anchor-end> 難しそう。</p></section><section><h1>Poyline に tooltip を指定したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="8" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[8]</anchor-end> 無理そう。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="13" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[13]</anchor-end> mouseover で地図を含む要素に title 属性を設定して、
mouseout で元に戻せばできるかも?</p></section><section><h1>マーカーをドラッグしたとき、ドロップ先をいくつかの座標候補に限定させたい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="5" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[5]</anchor-end> API にそういう機能は無さそう。 drag イベントでドラッグ位置の直近の座標を自分で計算して Marker 位置を設定すれば良い。</p></section><section><h1>右クリックでメニューを表示したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="9" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[9]</anchor-end> 右クリックされたことは <code>rightclick</code> イベントで取得できます。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="11" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[11]</anchor-end> 地図上の<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">クリック</anchor>も標準状態では地図の外側の <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">DOM</anchor> <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">要素</anchor>の<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">イベント</anchor>として<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">伝播</anchor>しますが、
<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Google Maps</anchor> の <code>click</code> や <code>rightclick</code> のイベントにコールバック関数を登録していると、
地図外には伝播しなくなる (場合もある) ようです。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="10" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[10]</anchor-end> コールバック関数の引数の <code>MouseEvent</code> オブジェクトは、
ドキュメントによると <code>latLng</code> プロパティーしかありませんが、
実際には (<code>Map</code> オブジェクトの場合) <code>pixel</code> プロパティーがあって、そこから <code>x</code> と <code>y</code>
の座標が取得できます。 (ドキュメントにないのですが、世間ではまま使われているようです。)
<code>Map</code> 以外のオブジェクトでの右クリックだと <code>pixel</code>
は利用できないことがあります。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="12" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[12]</anchor-end> より安全・確実に地図画面上の座標を取得したいときは、少し面倒ですが、 OverlayView から
getProjection で取得できるオブジェクトを使うと良いようです。
(Map の getProjection は少し違っていて、同じことはできないようです。)</p><figure><pre class="js code">  var Overlay = function () { };
  Overlay.prototype = new google.maps.OverlayView();
  Overlay.prototype.onAdd = function () {
  };
  Overlay.prototype.draw = function () {
  };
  Overlay.prototype.onRemove = function () {
  };

  var overlay = new Overlay;
  overlay.setMap (map);

  object.addListener ('rightclick', function (ev) {
    var xy = map.getProjection ().fromLatLngToContainerPixel (ev.latLng);
    console.log (xy.x, xy.y);
  });</pre></figure></section><section><h1>線の近く数ピクセルのクリックでも線をクリックしたことにしたい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="14" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[14]</anchor-end> 無理そう。 Map の <code>click</code> で自力でがんばればできる。</p></section><section><h1>座標により細かくマウスカーソルを制御したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="15" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[15]</anchor-end> 無理そう。  Map の <code>mousemove</code> で自力でがんばればできる。</p></section><section><h1>標準で表示される地物の表示にマウスイベントを奪われる</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="16" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[16]</anchor-end> 建物や山頂などの表示 (アイコンやラベル) があると、そちらに<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">クリック</anchor>などの<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">マウスイベント</anchor>が奪われてしまいます。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="17" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[17]</anchor-end> <code>OverlayView</code> を使えば、 <code>floatPane</code> でそれよりも上面にレンダリングはできますが、なぜか<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">マウスイベント</anchor>と<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">カーソル</anchor>表示は奪われてしまいます。
(なお、 <code>floatPane</code> の説明に情報窓よりも上と書いてありますが、嘘っぽく、それよりは下になります。)</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="18" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[18]</anchor-end> これを避けるには非表示にするしかなさそうです。</p><example xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:"><pre xmlns="http://www.w3.org/1999/xhtml"> new google.maps.Map (element, {
    styles: [
      {featureType: &quot;poi&quot;, elementType: &quot;all&quot;, stylers: [{visibility: &quot;off&quot;}]},
      {featureType: &quot;landscape&quot;, elementType: &quot;all&quot;, stylers: [{visibility: &quot;off&quot;}]},
    ],
  });</pre></example></section><section><h1>地図内にポップアップを表示したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="24" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[24]</anchor-end> <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">情報ウィンドウ</anchor> (<code>google.maps.InfoWindow</code>) でできます。</p></section><section><h1>縮尺を表示したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="27" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[27]</anchor-end> <code>map.setOptions ({scaleControl: true})</code>
で表示されます。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="32" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[32]</anchor-end> 
「○km」と表示される部分をクリックすると「○マイル」
のように切り替わります。 <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">API</anchor> から切り替えたり、現在の状態を取得したりする方法は見当たりません。</p><comment-p xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:10:"><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="33" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[33]</anchor-end> 
<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">API</anchor>
には
<code xmlns="http://www.w3.org/1999/xhtml">google.maps.UnitSystem.METRIC</code> (<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">メートル法</anchor>、<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">メートル</anchor>や<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">キロメートル</anchor>),
<code xmlns="http://www.w3.org/1999/xhtml">google.maps.UnitSystem.IMPERIAL</code> (<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">ヤードポンド法</anchor>、<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">フィート</anchor>や<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">マイル</anchor>)
というのがありますが、
地図表示には使われません。</comment-p></section><section><h1>現在位置ボタンを表示したい</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="31" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[31]</anchor-end> 
<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Google Maps</anchor> 本体にある現在位置を取得して中央に表示するボタンは、
<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">API</anchor> で表示させることはできないようです。</p></section></section><section><h1><cite>Google Maps</cite>の不適切表示問題</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="36" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[36]</anchor-end> <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">地図表示の政治問題</anchor></p><ul><li><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="34" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[34]</anchor-end> <cite xml:lang="ja-jp">政府、グーグルマップ「禁止令」 竹島を「独島」など領土関係で不適切表記 - MSN産経ニュース</cite>, <time>2023-07-08T13:38:30.000Z</time>, <time>2013-10-02T03:39:47.002Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://web.archive.org/web/20131002033946/http://sankei.jp.msn.com/life/news/130929/trd13092908010002-n1.htm">https://web.archive.org/web/20131002033946/http://sankei.jp.msn.com/life/news/130929/trd13092908010002-n1.htm</anchor-external></li><li><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="35" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[35]</anchor-end> <cite xml:lang="ja">グーグルマップの「利用禁止令」 竹島や北方領土が「日本名でない表記」 政府が自治体などに要請 | ハフポスト NEWS</cite>, <time>2023-07-08T13:38:41.000Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://www.huffingtonpost.jp/2013/09/29/google-map-forbidden_n_4011180.html">https://www.huffingtonpost.jp/2013/09/29/google-map-forbidden_n_4011180.html</anchor-external></li><li><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="40" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[40]</anchor-end> <cite xml:lang="ja">グーグルマップ「尖閣諸島」の中国表記併記解消 - 産経ニュース</cite>, <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">SANKEI DIGITAL INC.</anchor>, <time>2023-10-21T07:57:56.000Z</time>, <time>2023-10-21T07:58:38.772Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://www.sankei.com/article/20231020-C5AFEOYKONNSPIOLG2FO7HNEBA/">https://www.sankei.com/article/20231020-C5AFEOYKONNSPIOLG2FO7HNEBA/</anchor-external></li></ul><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="41" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[41]</anchor-end> <anchor-internal xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="40" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">&gt;&gt;40</anchor-internal> 一度解決したはずなのに再発してたらしい。</p></section><section><h1>料金改定</h1><section><h1>令和7年</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="44" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[44]</anchor-end> 
<time>2025-03-01</time>からまた改定。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="45" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[45]</anchor-end> 
例によってわかりにくい書き方がされているが、よく使っているところにとっては実質値上げらしい。</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="42" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[42]</anchor-end> <cite xml:lang="en">Blog: Build more for free and access more discounts online with Google Maps Platform updates – Google Maps Platform</cite>, <time>2025-02-10T17:48:00.000Z</time>, <time>2025-02-13T04:06:47.819Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://mapsplatform.google.com/resources/blog/build-more-for-free-and-access-more-discounts-online-with-google-maps-platform-updates/">https://mapsplatform.google.com/resources/blog/build-more-for-free-and-access-more-discounts-online-with-google-maps-platform-updates/</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="43" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[43]</anchor-end> <cite xml:lang="en">Platform Pricing &amp; API Costs - Google Maps Platform</cite>, <time>2025-02-10T17:48:00.000Z</time>, <time>2025-02-13T04:07:51.556Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://mapsplatform.google.com/pricing-calculator/?_gl=1*12klq45*_up*MQ..*_ga*MjA2OTcxNDg4LjE3Mzk0MTk1ODg.*_ga_NRWSTWS78N*MTczOTQxOTU4OC4xLjAuMTczOTQxOTU4OC4wLjAuMA..">https://mapsplatform.google.com/pricing-calculator/?_gl=1*12klq45*_up*MQ..*_ga*MjA2OTcxNDg4LjE3Mzk0MTk1ODg.*_ga_NRWSTWS78N*MTczOTQxOTU4OC4xLjAuMTczOTQxOTU4OC4wLjAuMA..</anchor-external></p></section></section><section><h1>技術</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="47" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[47]</anchor-end> 
<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Googleによる地名翻訳</anchor></p></section><section><h1>関連</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="21" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[21]</anchor-end> <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Google Earth</anchor> とは別製品となっているようです。</p></section><section><h1>メモ</h1><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="2" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[2]</anchor-end> <cite xml:lang="en">Google Maps JavaScript API V3 Reference  |  Google Maps JavaScript API  |  Google Developers</cite> (<time>2016-06-01 10:39:27 +09:00</time> 版) <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://developers.google.com/maps/documentation/javascript/reference">https://developers.google.com/maps/documentation/javascript/reference</anchor-external></p><figure class="quote"><figcaption><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="1" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[1]</anchor-end> <cite xml:lang="ja">Google Japan Blog: Google マップの不動産検索について</cite>
(<time>2016-03-02 13:52:41 +09:00</time> 版)
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="http://googlejapan.blogspot.jp/2011/01/google_27.html">http://googlejapan.blogspot.jp/2011/01/google_27.html</anchor-external></figcaption><blockquote><p>2009 年 7 月に米国で、2010 年 8 月に日本でも開始した Google マップの不動産検索機能は、「多くの物件情報を一度に地図上に表示する」というコンセプトを非常に高く評価していただきました。しかしながら、実際のサービスの利用増加にはなかなか繋がらず、様々な側面から検討した結果、断腸の思いではありますが、本年 2 月 11 日をもって、サービスを停止することになりました。サービスの停止は、日本を始め、今日同サービスを提供しているすべての地域(米国、オーストラリア、ニュージーランド、英国)が対象となります。</p></blockquote></figure><figure class="amazon"><p>Google Maps</p></figure><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="22" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[22]</anchor-end> <cite xml:lang="en">Too Many Markers!  |  Google Maps APIs  |  Google Developers</cite>
( (<time>2016-07-13 06:14:51 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://developers.google.com/maps/articles/toomanymarkers">https://developers.google.com/maps/articles/toomanymarkers</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="23" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[23]</anchor-end> <cite xml:lang="en">googlemaps/js-marker-clusterer: A marker clustering library for the Google Maps JavaScript API v3.</cite>
( (<time>2016-07-22 11:59:38 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://github.com/googlemaps/js-marker-clusterer">https://github.com/googlemaps/js-marker-clusterer</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="25" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[25]</anchor-end> <cite xml:lang="en">Share your trips and real-time location from Google Maps</cite>
( (<time>2017-03-25 14:11:51 +09:00</time>))
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://blog.google/products/maps/share-your-trips-and-real-time-location-google-maps/">https://blog.google/products/maps/share-your-trips-and-real-time-location-google-maps/</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="26" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[26]</anchor-end> <cite xml:lang="en">Google Maps Platform: Introducing Google Maps Platform</cite>
(<time>2018-05-03 08:30:48 +09:00</time>)
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://mapsplatform.googleblog.com/2018/05/introducing-google-maps-platform.html?utm_source=em-anncmt&amp;utm_medium=em&amp;utm_campaign=fy18-q2-global-adhoc-email-cs-maps_none_maps_spicestandardplannobilling&amp;utm_content=global%7Cen%7Chybr%7C%7C%7C%7C%7C%7C">https://mapsplatform.googleblog.com/2018/05/introducing-google-maps-platform.html?utm_source=em-anncmt&amp;utm_medium=em&amp;utm_campaign=fy18-q2-global-adhoc-email-cs-maps_none_maps_spicestandardplannobilling&amp;utm_content=global%7Cen%7Chybr%7C%7C%7C%7C%7C%7C</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="28" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[28]</anchor-end> <cite xml:lang="en">Developer Guide  |  Maps Embed API  |  Google Developers</cite>
(<time>2018-07-03 09:41:55 +09:00</time>)
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://developers.google.com/maps/documentation/embed/guide">https://developers.google.com/maps/documentation/embed/guide</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="29" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[29]</anchor-end> <cite xml:lang="ja">Googleマップがゼンリンとの契約解除で、「バス停が消えた」「うちがなくなった」「存在しない道がある」など数々の改変が露見する - Togetter</cite>
(<time>2019-03-22 10:51:45 +09:00</time>)
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://togetter.com/li/1330522">https://togetter.com/li/1330522</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="30" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[30]</anchor-end> <cite xml:lang="ja">「Googleマップが劣化した」不満の声が相次ぐ ゼンリンとの契約解除で日本地図データを自社製に変更か - ITmedia NEWS</cite>
(<time>2019-03-22 10:52:03 +09:00</time>)
<anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://www.itmedia.co.jp/news/articles/1903/22/news067.html">https://www.itmedia.co.jp/news/articles/1903/22/news067.html</anchor-external></p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="37" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[37]</anchor-end> <cite xml:lang="ja">ビッグモーター全店舗、グーグルマップより消ゆ | スラド IT</cite>, <time>2023-08-02T09:55:09.000Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://it.srad.jp/story/23/08/01/1242207/">https://it.srad.jp/story/23/08/01/1242207/</anchor-external></p><blockquote><p><snip xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:"></snip>これにより、枯れた街路樹の確認が困難になっており、SNS上でもこの問題について困惑の声が広がっているようだ。 </p></blockquote><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="38" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[38]</anchor-end> <anchor-internal xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="37" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">&gt;&gt;37</anchor-internal>
事の真相はともかく、 <anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">Google Maps</anchor> に<anchor xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:">地物</anchor>情報が出てこないごときのことで
「確認が困難」になるのは見る人の問題だろう...</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="39" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[39]</anchor-end> 
その程度の事実確認もできない素人は何もしないで黙っていたほうがすべての人にとっていいのでは...</p><p><anchor-end xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:anchor="46" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:">[46]</anchor-end> 
<cite xml:lang="ja">Xユーザーの西村まさゆきさん: 「Googleマップって便利すぎる上に無料だから、なんか国土地理院の地図みたいな感じで使ってるけど、ぜんぜんそんなことなくて、大阪駅より金を払ってるSMショーパブの方をデカく表示するとか、普通にするのみて「そういえば営利企業のサービスだった」って気づく」 / X</cite>, <time>午後3:03 · 2025年3月26日<attrvalue xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:10:">2025-03-26T06:03:05.000Z</attrvalue></time>, <time>2025-03-28T03:51:26.000Z</time> <anchor-external xmlns="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resScheme="URI" xmlns:a0="urn:x-suika-fam-cx:markup:suikawiki:0:9:" a0:resParameter="https://x.com/tokyo26/status/1904776098363433168">https://x.com/tokyo26/status/1904776098363433168</anchor-external></p></section></body></html>