私は近くのバスを検索するためのAndroidプロジェクトを持っているが、私はこのURLを持って停止します。 http://travelplanner.mobiliteit.lu/hafas/query.exe/dot?performLocating=2&tpl=stop2csv&stationProxy=yes&look_maxdist=250&look_x=6112550&look_y=49610700アンドロイド検索近くのバス停GoogleのAPI
私はコードで記述をmLatitudeとmLongitudeは、現在のユーザーのためのものである
StringBuilder sb = newStringBuilder("http://travelplanner.mobiliteit.lu/hafas/query.exe/dot?performLocating=2&tpl=stop2csv&stationProxy=yes &");
sb.append("look_maxdist=250");sb.append("look_x="+mLatitude");sb.append("look_y="+mLongitude");
今場所
ないJSONでのレスポンスが、HTTPレスポンス
6,113204;49,610280;200403005;Belair, Sacré-Coeur;http://travelplanner.mobiliteit.lu/hafas/stboard.exe/dn?L=vs_stb&input=200403005&start
6,112260;49,612644;200403002;Belair, Archiducs;http://travelplanner.mobiliteit.lu/hafas/stboard.exe/dn?L=vs_stb&input=200403002&start
やリンクなど多分
[email protected]=Belair, Sacré[email protected]=6,[email protected]=49,[email protected][email protected][email protected][email protected]=1481807866;
[email protected]=Belair, [email protected]=6,[email protected]=49,[email protected][email protected][email protected][email protected]=1481807866;
質問は、私はGEの座標(6,113204,49,610280)にこの結果を継続し、ここでマップ 上のマーカーを置くことができる方法ですリンクは https://data.public.lu/en/datasets/arrets-de-transport-public-et-departs-en-temps-reel/
です
thenks –