This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[android] Add Grid source sample for Custom Geometry Source
- Loading branch information
Asheem Mamoowala
committed
Nov 20, 2017
1 parent
0179a28
commit b73fe5d
Showing
5 changed files
with
182 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
151 changes: 151 additions & 0 deletions
151
...TestApp/src/main/java/com/mapbox/mapboxsdk/testapp/activity/style/GridSourceActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
package com.mapbox.mapboxsdk.testapp.activity.style; | ||
|
||
import android.graphics.Color; | ||
import android.os.Bundle; | ||
import android.support.annotation.NonNull; | ||
import android.support.v7.app.AppCompatActivity; | ||
|
||
import com.mapbox.mapboxsdk.geometry.LatLngBounds; | ||
import com.mapbox.mapboxsdk.maps.MapView; | ||
import com.mapbox.mapboxsdk.maps.MapboxMap; | ||
import com.mapbox.mapboxsdk.maps.OnMapReadyCallback; | ||
import com.mapbox.mapboxsdk.style.layers.LineLayer; | ||
import com.mapbox.mapboxsdk.style.sources.CustomGeometrySource; | ||
import com.mapbox.mapboxsdk.style.sources.GeometryTileProvider; | ||
import com.mapbox.mapboxsdk.testapp.R; | ||
import com.mapbox.services.commons.geojson.Feature; | ||
import com.mapbox.services.commons.geojson.FeatureCollection; | ||
import com.mapbox.services.commons.geojson.MultiLineString; | ||
import com.mapbox.services.commons.models.Position; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
import static com.mapbox.mapboxsdk.style.layers.PropertyFactory.lineColor; | ||
|
||
/** | ||
* Test activity showcasing using CustomGeometrySource to create a grid overlay on the map. | ||
*/ | ||
public class GridSourceActivity extends AppCompatActivity implements OnMapReadyCallback { | ||
|
||
private static final String ID_GRID_SOURCE = "grid_source"; | ||
private static final String ID_GRID_LAYER = "grid_layer"; | ||
|
||
private MapView mapView; | ||
private MapboxMap mapboxMap; | ||
|
||
/** | ||
* Implementation of GeometryTileProvider that returns features representing a zoom-dependent | ||
* grid. | ||
*/ | ||
static class GridProvider implements GeometryTileProvider { | ||
public FeatureCollection getFeaturesForBounds(LatLngBounds bounds, int zoom) { | ||
List<Feature> features = new ArrayList<>(); | ||
double gridSpacing; | ||
if (zoom >= 13) { | ||
gridSpacing = 0.01; | ||
} else if (zoom >= 11) { | ||
gridSpacing = 0.05; | ||
} else if (zoom == 10) { | ||
gridSpacing = .1; | ||
} else if (zoom == 9) { | ||
gridSpacing = 0.25; | ||
} else if (zoom == 8) { | ||
gridSpacing = 0.5; | ||
} else if (zoom >= 6) { | ||
gridSpacing = 1; | ||
} else if (zoom == 5) { | ||
gridSpacing = 2; | ||
} else if (zoom >= 4) { | ||
gridSpacing = 5; | ||
} else if (zoom == 2) { | ||
gridSpacing = 10; | ||
} else { | ||
gridSpacing = 20; | ||
} | ||
|
||
List gridLines = new ArrayList(); | ||
for (double y = Math.ceil(bounds.getLatNorth() / gridSpacing) * gridSpacing; | ||
y >= Math.floor(bounds.getLatSouth() / gridSpacing) * gridSpacing; y -= gridSpacing) { | ||
gridLines.add(Arrays.asList(Position.fromCoordinates(bounds.getLonWest(), y), | ||
Position.fromCoordinates(bounds.getLonEast(), y))); | ||
} | ||
features.add(Feature.fromGeometry(MultiLineString.fromCoordinates(gridLines))); | ||
|
||
gridLines = new ArrayList(); | ||
for (double x = Math.floor(bounds.getLonWest() / gridSpacing) * gridSpacing; | ||
x <= Math.ceil(bounds.getLonEast() / gridSpacing) * gridSpacing; x += gridSpacing) { | ||
gridLines.add(Arrays.asList(Position.fromCoordinates(x, bounds.getLatSouth()), | ||
Position.fromCoordinates(x, bounds.getLatNorth()))); | ||
} | ||
features.add(Feature.fromGeometry(MultiLineString.fromCoordinates(gridLines))); | ||
|
||
return FeatureCollection.fromFeatures(features); | ||
} | ||
} | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_grid_source); | ||
|
||
mapView = (MapView) findViewById(R.id.mapView); | ||
mapView.onCreate(savedInstanceState); | ||
mapView.getMapAsync(this); | ||
} | ||
|
||
@Override | ||
public void onMapReady(@NonNull final MapboxMap map) { | ||
mapboxMap = map; | ||
|
||
// add source | ||
CustomGeometrySource source = new CustomGeometrySource(ID_GRID_SOURCE, new GridProvider()); | ||
mapboxMap.addSource(source); | ||
|
||
// add layer | ||
LineLayer layer = new LineLayer(ID_GRID_LAYER, ID_GRID_SOURCE); | ||
layer.setProperties( | ||
lineColor(Color.parseColor("#000000")) | ||
); | ||
|
||
mapboxMap.addLayer(layer); | ||
} | ||
|
||
@Override | ||
protected void onStart() { | ||
super.onStart(); | ||
mapView.onStart(); | ||
} | ||
|
||
@Override | ||
public void onResume() { | ||
super.onResume(); | ||
mapView.onResume(); | ||
} | ||
|
||
@Override | ||
public void onPause() { | ||
super.onPause(); | ||
mapView.onPause(); | ||
} | ||
|
||
@Override | ||
protected void onStop() { | ||
super.onStop(); | ||
mapView.onStop(); | ||
} | ||
|
||
@Override | ||
protected void onDestroy() { | ||
super.onDestroy(); | ||
mapView.onDestroy(); | ||
} | ||
|
||
@Override | ||
protected void onSaveInstanceState(Bundle outState) { | ||
super.onSaveInstanceState(outState); | ||
mapView.onSaveInstanceState(outState); | ||
} | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_grid_source.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical"> | ||
|
||
<com.mapbox.mapboxsdk.maps.MapView | ||
android:id="@id/mapView" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:mapbox_cameraTargetLat="41.9567" | ||
app:mapbox_cameraTargetLng="-78.6430" | ||
app:mapbox_cameraZoom="5" | ||
app:mapbox_styleUrl="@string/mapbox_style_mapbox_streets"/> | ||
|
||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
platform/android/MapboxGLAndroidSDKTestApp/src/main/res/values/strings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="app_name">Mapbox Android SDK TestApp</string> | ||
<string name="title_activity_grid_source">Grid Source</string> | ||
</resources> |