変です。 GET statuses/show/:id を叩くと得られる JSON から座標に関するプロパティだけ抜き出すと以下のようになります。 { "geo": { "type": "Point", "coordinates": [35.0, 135.0] }, "coordinates": { "type": "Point", "coordinates": [135.0, 35.0] }, "place": { "bounding_box": { "type": "Polygon", "coordinates": [ [ [135.0, 35.0], [135.1, 35.0], [135.1, 35.1], [135.0, 35.1] ] ] } } } 一見すると GeoJSON に定められた座標表現の仕様に則っているように見えますが、 geo プロパティの値は経度と緯度が逆になっ