2017-03-15 1 views
0

경찰서와 같은 인근 장소를 공개 거리지도에 표시하려면 어떻게해야합니까? 내 안드로이드 애플 리케이션에서 열린 거리지도를 통합하는 this 라이브러리를 사용하고 있습니다. 나는이 라이브러리를 통합하는 방법은 OverpassAPIProvider를 통해 근처의 관심 장소를 다운로드 osmbonuspack을 사용할 수 있습니다안드로이드의 거리지도에있는 가까운 장소

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    Context ctx = getApplicationContext(); 
    //important! set your user agent to prevent getting banned from the osm servers 
    Configuration.getInstance().load(ctx, PreferenceManager.getDefaultSharedPreferences(ctx)); 
    setContentView(R.layout.activity_main); 

    MapView map = (MapView) findViewById(R.id.map); 
    map.setTileSource(TileSourceFactory.DEFAULT_TILE_SOURCE); 
    map.setUseDataConnection(true); 
    map.setBuiltInZoomControls(true); 
    map.setMultiTouchControls(true); 
    IMapController mapController = map.getController(); 
    mapController.setZoom(14); 
    GeoPoint startPoint = new GeoPoint(48.8583, 2.2944); 
    mapController.setCenter(startPoint); 
} 

답변

2

을 따르고있다. OSM의 map features에서보기를 다운로드 할 수있는 관심 장소를 결정하고 해당 들어 keys 편의 시설, 가게, 레저있다.

관련 문제