0

私はJAVAプログラミングに非常に慣れていませんが、大きな問題を抱えており、これは私の仕事によって異なります。ともかく。さて、私はここにこのjsonを持っています:

{
"GetPOIByTypeResult": [
    {
        "Address": {
            "City": "Bucuresti",
            "ID": 1,
            "Number": 3,
            "Street": "Otopeni"
        },
        "ID": 1,
        "IsSpecial": true,
        "Latitude": 44.542869567871094,
        "Logo": "6fb43083ee663364ef6771293653e56b.jpg",
        "Longitude": 26.06893539428711,
        "Name": "Spitalul Judetean",
        "Phone": "085228291",
        "Remark": "Normal Hospital",
        "Schedule": "Monday to Friday",
        "Specialities": [
            {
                "ID": 1,
                "Name": "Stomatologie"
            },
            {
                "ID": 2,
                "Name": "Radiologie"
            },
            {
                "ID": 3,
                "Name": "Cardiologie"
            },
            {
                "ID": 4,
                "Name": "Ginecologie"
            },
            {
                "ID": 5,
                "Name": "Pediatrie"
            },
            {
                "ID": 6,
                "Name": "Patologie"
            },
            {
                "ID": 7,
                "Name": "Oncologie"
            },
            {
                "ID": 8,
                "Name": "Macelarie"
            },
            {
                "ID": 9,
                "Name": "Oftalmologie"
            },
            {
                "ID": 10,
                "Name": "Ghipsologie"
            }
        ],
        "Type": "Hospital"
    },

JSONから緯度と経度を取得し、アプリケーションのGoogleマップに場所を表示する必要があります。この小さなコードスニペットがここにあります。自分の番号を入力するなど、ローカル座標でうまく機能しますが、JSONから取得する必要があります。

drawable = getResources().getDrawable(R.drawable.marker);
    itemizedOverlay = new CustomItemizedOverlay<CustomOverlayItem>(drawable, mapView);
GeoPoint point2 = new GeoPoint((int)(44.55332946777344*1E6),(int)(26.07666015625*1E6));
    CustomOverlayItem overlayItem2 = new CustomOverlayItem(point2, "Bucuresti Spital 2", 
            "(Spitalul 2)", 
            "http://ia.media-imdb.com/images/M/MV5BMzk2OTg4MTk1NF5BMl5BanBnXkFtZTcwNjExNTgzNA@@._V1._SX40_CR0,0,40,54_.jpg");       
    itemizedOverlay.addOverlay(overlayItem2);</code>

JSONparserを設定していますが、マップコントローラーをアニメーション化する方法がわからないので、座標があるところまで助けてもらいたいです:-S

編集:これは私が私の問題を解決した方法です、多分それは他の誰かにも役立つでしょう。

drawable = getResources().getDrawable(R.drawable.marker);
    itemizedOverlay = new CustomItemizedOverlay<CustomOverlayItem>(
            drawable, mapView); //showing marker on the map
public void showHospitalList(ArrayList<Hospitals> hospitals) {

    for (int i = 0; i < hospitals.size(); i++) {

        Hospitals hospital = hospitals.get(i);
        CustomOverlayItem temp1 = toOverlay(hospital);
        itemizedOverlay.addOverlay(temp1);
    }
    mapOverlays.add(itemizedOverlay); //this is to get the list in the activity
}

public CustomOverlayItem toOverlay(Hospitals hospitals) {

    GeoPoint point = new GeoPoint((int) (hospitals.Latitude * 1E6),
            (int) (hospitals.Longitude * 1E6));

    CustomOverlayItem temp = new CustomOverlayItem(
            point, hospitals.Name, hospitals.Phone, hospitals.Type);

    return temp;
// used the hospitals object to define the cordinates and then multiplied by 1E6 to make it compatible(from double to int)  
// Last line defines the balloon pop-up and what to show(everything is from json).
}  

助けてくれてありがとう

4

1 に答える 1

0

JSONを処理しています。GsonやJacksonなどのライブラリを使用できます。詳細については、JSONオブジェクトの送信と解析をご覧ください 。または、 JSONObjectを使用して自分で解析することもできます。

String jsonString = ... // Your JSON
List<GeoPoint> locationList = new ArrayList<GeoPoint>();
Double lat, lng; // temp
JSONArray jsonArray = new JSONArray(jsonString);
for (int i = 0; i < jsonArray.length(); i++) {
    JSONObject jsonObject = jsonArray.getJSONObject(i);
    lat = jsonObject.getDouble("Latitude");
    lng = jsonObject.getDouble("Longtitude");
    locationList.add(
        new GeoPoint((int)(lat*1E6),(int)(lng*1E6)));
}

次に、マップを処理します。

MapView mapView = (MapView) findViewById(R.id.map);

MapController mc = mapView.getController();
// Set Zoom level of this map (1-21).
mc.setZoom(21);
int x = 0; // Position to get location
GeoPoint point2 = locationList.get(x); // Get Object from list
// This call handle animation to move map to display the given location
mc.animateTo(point2);
mapView.postInvalidate();
于 2012-07-23T09:02:17.633 に答える