Tag Archives: JavaScript

緯度・経度から住所を取得したい (Google Maps API)

Google Mapsの”逆ジオコーディング”ページにサンプルコード付きの解説があった。 住所→緯度・経度:ジオコーディング 緯度・経度→住所:逆ジオコーディング のよう。 google.maps … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

User Agentの確認

Google Maps APIのデベロッパーガイド:携帯端末(iPhone や Android 端末)向けの開発に、DOMのnavigator.userAgentプロパティを見てどういう端末か判定していた。 確認ページ: … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

Google Maps API 続き

Google Maps APIのHello world的なチュートリアルを以前やったので、今回はデベロッパーガイドを読みながらお試し。 Geolocation API(navigator.geolocation.getC … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

Geolocation API (JavaScript)

Geolocation APIをお試し。 ブラウザがGeolocation APIに対応しているか:geolocation_api_check.html getCurrentPositionで緯度・経度を取得:geolo … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

Google Maps API

書籍:公開API活用ガイドの第9章にあるGoogle Maps APIをお試し。 確認:hello_googlemapsapi.html 参考サイト Google Maps JavaScript API V3 チュートリ … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

フォームにうっすらとヒントを表示する

フォームにうっすらとヒントを表示させたく、調べると、jQueryプラグインを使ったやり方が紹介されていたので使ってみた。 確認ページ:hello_jquery_formtips.html 参考サイト フォーム要素にうっす … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

YouTube APIとjQuery

解説記事を読んだせいもあってjQueryの表記に少しだけ慣れた。 動画を検索するページ:youtubeapi_with_jQuery.html 参考サイト 特集:jQueryではじめるAjax|gihyo.jp … 技術 … Continue reading

Posted in 未分類 | Tagged , , | Leave a comment

はじめてのjQuery

技術評論社のサイト(gihyo.jp)を見てたらYouTube APIに関する記事があったので読もうとしたんだけど、jQueryも使っててなにしてるかよくわからなかったので、まずjQueryについて本で読んだ。 ボタンク … Continue reading

Posted in 未分類 | Tagged , | Leave a comment

JavaScriptでDOM操作

JavaScriptでDOM操作をしているサンプルをよく見るが、何をなっているかよくわからないので、書籍を読みコードを打ち込みながら確認した。読んでいる本は”パーフェクトJavaScript “。 … Continue reading

Posted in 未分類 | Tagged , , , | Leave a comment

twitter API (REST API Methods) でpublic_timelineを表示

前回の続きで、書籍”公開API活用ガイド”の第10章:twitterを読んで実践。 メモ public_timelineは認証なしで取得できる。 リクエストURLの形式:http://api.twitter.com/1/ … Continue reading

Posted in 未分類 | Tagged , | Leave a comment