Files
react-native-mapbox-gl/android/src/main/java/com/mapbox/reactnativemapboxgl/ReactNativeMapboxGLModule.java
T

145 lines
5.4 KiB
Java
Raw Normal View History

2015-12-12 12:41:50 -08:00
package com.mapbox.reactnativemapboxgl;
import android.content.Context;
import android.util.Log;
2015-12-17 11:47:22 -08:00
import java.util.HashMap;
import java.util.Map;
2015-12-12 12:41:50 -08:00
2015-12-17 11:47:22 -08:00
import com.mapbox.mapboxsdk.constants.Style;
2015-12-12 12:41:50 -08:00
import com.facebook.react.bridge.Arguments;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.bridge.ReadableMap;
import com.facebook.react.bridge.Callback;
2015-12-12 12:41:50 -08:00
import com.facebook.react.bridge.WritableMap;
2015-12-17 11:47:22 -08:00
import com.mapbox.mapboxsdk.constants.MyLocationTracking;
2015-12-12 12:41:50 -08:00
import com.mapbox.mapboxsdk.geometry.LatLng;
import com.mapbox.mapboxsdk.views.MapView;
import javax.annotation.Nullable;
public class ReactNativeMapboxGLModule extends ReactContextBaseJavaModule {
private static final String TAG = ReactNativeMapboxGLModule.class.getSimpleName();
private Context context;
private ReactNativeMapboxGLPackage aPackage;
public ReactNativeMapboxGLModule(ReactApplicationContext reactContext) {
super(reactContext);
this.context = reactContext;
Log.d(TAG, "Context " + context);
Log.d(TAG, "reactContext " + reactContext);
}
@Override
public String getName() {
2015-12-14 09:30:47 -08:00
return "MapboxGLManager";
2015-12-12 12:41:50 -08:00
}
2015-12-17 11:47:22 -08:00
@Override
public @Nullable Map<String, Object> getConstants() {
HashMap<String, Object> constants = new HashMap<String, Object>();
HashMap<String, Object> userTrackingMode = new HashMap<String, Object>();
HashMap<String, Object> mapStyles = new HashMap<String, Object>();
// User tracking constants
userTrackingMode.put("none", MyLocationTracking.TRACKING_NONE);
userTrackingMode.put("follow", MyLocationTracking.TRACKING_FOLLOW);
// Style constants
mapStyles.put("light", Style.LIGHT);
mapStyles.put("dark", Style.DARK);
mapStyles.put("streets", Style.MAPBOX_STREETS);
mapStyles.put("emerald", Style.EMERALD);
mapStyles.put("satellite", Style.SATELLITE);
mapStyles.put("hybrid", Style.SATELLITE_STREETS);
constants.put("userTrackingMode", userTrackingMode);
constants.put("mapStyles", mapStyles);
return constants;
}
2015-12-12 12:41:50 -08:00
@ReactMethod
2015-12-24 12:21:24 -06:00
public void setDirectionAnimated(int mapRef, int direction) {
2015-12-12 12:41:50 -08:00
aPackage.getManager().setDirection(aPackage.getManager().getMapView(), direction);
}
@ReactMethod
2015-12-24 12:21:24 -06:00
public void setCenterCoordinateAnimated(int mapRef, double latitude, double longitude) {
2015-12-12 12:41:50 -08:00
WritableMap location = Arguments.createMap();
location.putDouble("latitude", latitude);
location.putDouble("longitude", longitude);
aPackage.getManager().setCenterCoordinate(aPackage.getManager().getMapView(), location);
}
@ReactMethod
2015-12-24 12:21:24 -06:00
public void setCenterCoordinateZoomLevelAnimated(int mapRef, double latitude, double longitude, double zoom) {
2015-12-12 12:41:50 -08:00
WritableMap location = Arguments.createMap();
location.putDouble("latitude", latitude);
location.putDouble("longitude", longitude);
location.putDouble("zoom", zoom);
aPackage.getManager().setCenterCoordinateZoomLevel(aPackage.getManager().getMapView(), location);
2015-12-12 12:41:50 -08:00
}
@ReactMethod
2015-12-24 12:21:24 -06:00
public void addAnnotations(int mapRef, ReadableArray value) {
aPackage.getManager().setAnnotations(aPackage.getManager().getMapView(), value, false);
2015-12-12 12:41:50 -08:00
}
@ReactMethod
2015-12-24 12:21:24 -06:00
public void setUserTrackingMode(int mapRef, int mode) {
2015-12-12 12:41:50 -08:00
aPackage.getManager().setMyLocationTrackingMode(aPackage.getManager().getMapView(), mode);
}
@ReactMethod
2015-12-24 12:22:48 -06:00
public void removeAllAnnotations(int mapRef) {
2015-12-12 12:41:50 -08:00
aPackage.getManager().removeAllAnnotations(aPackage.getManager().getMapView(), true);
}
@ReactMethod
2015-12-24 12:21:24 -06:00
public void setTilt(int mapRef, double pitch) {
2015-12-12 12:41:50 -08:00
aPackage.getManager().setTilt(aPackage.getManager().getMapView(), pitch);
}
2015-12-13 17:37:32 -08:00
@ReactMethod
2015-12-24 12:21:24 -06:00
public void setVisibleCoordinateBoundsAnimated(int mapRef, double latSW, double lngSW,double latNE, double lngNE, float paddingTop, float paddingRight, float paddingBottom, float paddingLeft) {
2015-12-13 17:37:32 -08:00
WritableMap info = Arguments.createMap();
info.putDouble("latSW", latSW);
info.putDouble("lngSW", lngSW);
info.putDouble("latNE", latNE);
info.putDouble("lngNE", lngNE);
info.putDouble("paddingTop", paddingTop);
info.putDouble("paddingRight", paddingRight);
info.putDouble("paddingBottom", paddingBottom);
info.putDouble("paddingLeft", paddingLeft);
aPackage.getManager().setVisibleCoordinateBounds(aPackage.getManager().getMapView(), info);
}
@ReactMethod
public void getDirection(int mapRef, Callback successCallback) {
WritableMap direction = aPackage.getManager().getDirection(aPackage.getManager().getMapView());
successCallback.invoke(direction);
}
@ReactMethod
public void getCenterCoordinateZoomLevel(int mapRef, Callback successCallback) {
WritableMap location = aPackage.getManager().getCenterCoordinateZoomLevel(aPackage.getManager().getMapView());
successCallback.invoke(location);
}
2016-03-07 12:14:16 +01:00
@ReactMethod
public void getBounds(int mapRef, Callback successCallback) {
WritableMap bounds = aPackage.getManager().getBounds(aPackage.getManager().getMapView());
successCallback.invoke(bounds);
}
2015-12-12 12:41:50 -08:00
public void setPackage(ReactNativeMapboxGLPackage aPackage) {
this.aPackage = aPackage;
}
}