2017-04-05 11 views
0

私はGoogleマップのアクティビティに降水量の天気のレイヤーを表示しようとしていますが、地図上に表示されない理由を理解できません。 Google Maps Keyをapp\src\debug\res\values\google_maps_api.xmlに実装し、Android SDKマネージャにGoogle Playサービスをインストールしました。また、OpenWeatherMapを使用してAPI用のアカウントを設定しました(下記参照)。気象タイルレイヤーを正しく取得する方法は?

地図が正常に読み込まれ、入力したズーム、x、yの別のブラウザでレイヤーを検索すると表示されますが、Googleマップのアクティビティにレイヤーを表示できません。

x、y、ズームを定義する必要がありますか、それともURLから取得する必要がありますか?ここで

は私のJavaで、ここでは

package com.example.user.project; 

import android.support.v4.app.FragmentActivity; 
import android.os.Bundle; 

import com.google.android.gms.maps.CameraUpdateFactory; 
import com.google.android.gms.maps.GoogleMap; 
import com.google.android.gms.maps.OnMapReadyCallback; 
import com.google.android.gms.maps.SupportMapFragment; 
import com.google.android.gms.maps.model.LatLng; 
import com.google.android.gms.maps.model.MarkerOptions; 
import com.google.android.gms.maps.model.TileOverlay; 
import com.google.android.gms.maps.model.TileOverlayOptions; 
import com.google.android.gms.maps.model.TileProvider; 
import com.google.android.gms.maps.model.UrlTileProvider; 

import java.net.MalformedURLException; 
import java.net.URL; 
import java.util.Locale; 

public class MapsActivity extends FragmentActivity implements OnMapReadyCallback { 

    private GoogleMap mMap; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_maps); 
     // Obtain the SupportMapFragment and get notified when the map is ready to be used. 
     SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() 
       .findFragmentById(R.id.map); 
     mapFragment.getMapAsync(this); 
    } 

    /** 
    * Manipulates the map once available. 
    * This callback is triggered when the map is ready to be used. 
    * This is where we can add markers or lines, add listeners or move the camera. In this case, 
    * we just add a marker near Sydney, Australia. 
    * If Google Play services is not installed on the device, the user will be prompted to install 
    * it inside the SupportMapFragment. This method will only be triggered once the user has 
    * installed Google Play services and returned to the app. 
    */ 
    @Override 
    public void onMapReady(GoogleMap googleMap) { 
     mMap = googleMap; 

     // Move the camera 
     LatLng indy = new LatLng(39, -86.5); 
     mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(indy, 8)); 

     TileProvider tileProvider = new UrlTileProvider(256, 256) { 
      @Override 
      public URL getTileUrl(int x, int y, int zoom) { 

    /* Define the URL pattern for the tile images */ 
       String s = String.format(Locale.US, "http://tile.openweathermap.org/map/precipitation/%d/%d/%d.png?appid={my_key}", 
         zoom, x, y); 

       if (!checkTileExists(x, y, zoom)) { 
        return null; 
       } 

       try { 
        return new URL(s); 
       } catch (MalformedURLException e) { 
        throw new AssertionError(e); 
       } 
      } 

      /* 
      * Check that the tile server supports the requested x, y and zoom. 
      * Complete this stub according to the tile range you support. 
      * If you support a limited range of tiles at different zoom levels, then you 
      * need to define the supported x, y range at each zoom level. 
      */ 
      private boolean checkTileExists(int x, int y, int zoom) { 
       int minZoom = 12; 
       int maxZoom = 16; 

       return !(zoom < minZoom || zoom > maxZoom); 

      } 
     }; 

     TileOverlay tileOverlay = mMap.addTileOverlay(new TileOverlayOptions() 
       .tileProvider(tileProvider)); 
    } 
} 

は、Android Studioは、レイアウト生成されます。

<fragment xmlns:android="http://schemas.android.com/apk/res/android" 
      xmlns:map="http://schemas.android.com/apk/res-auto" 
      xmlns:tools="http://schemas.android.com/tools" 
      android:id="@+id/map" 
      android:name="com.google.android.gms.maps.SupportMapFragment" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      tools:context="com.example.user.project.MapsActivity"/> 

を私はOpenWeatherMap、GoogleマップAPI、およびAndroidの開発者から提供されたチュートリアルとマニュアルに従っているが、なぜこれが機能していないのか分かりません。

私には何が欠けていますか?

答えて

0

マップのズームレベルとしてレベル8を設定していますが、TileProviderが表示されるようにズームレベルを12〜16に制限しています。

この削除:あなたはまた、checkTileExistsメソッドを削除することができます任意のスケールの制限を必要としない場合

if (!checkTileExists(x, y, zoom)) { 
    return null; 
} 

を。

+0

はい!どうもありがとうございました。私はカメラがこれに影響すると誤解した。 – braj

関連する問題