Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーの位置情報、つまり座標ではなく、そのユーザーがいる場所の名前を取得して、Yahoo 天気のようなテキスト ボックスに投稿するにはどうすればよいでしょうか。
ありがとう。
HTML5 ジオロケーションを使用して、ユーザーの位置を取得できます。結果は緯度と経度になります。
次に、以下のように Yahoo の Placefinder API に渡す URL を作成します。
var geoAPI = 'http://where.yahooapis.com/geocode?location='+lat+','+lon+'&flags=J&gflags=R&appid='+APPID;
これが役立つことを願っています。