summaryrefslogtreecommitdiff
path: root/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/MarkerOptions.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/MarkerOptions.java')
-rw-r--r--android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/MarkerOptions.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/MarkerOptions.java b/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/MarkerOptions.java
new file mode 100644
index 0000000000..f0c15906e0
--- /dev/null
+++ b/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/annotations/MarkerOptions.java
@@ -0,0 +1,84 @@
+package com.mapbox.mapboxsdk.annotations;
+
+import android.support.annotation.Nullable;
+
+import com.mapbox.mapboxsdk.geometry.LatLng;
+
+public final class MarkerOptions {
+
+ private Marker marker;
+
+ public MarkerOptions() {
+ marker = new Marker();
+ }
+
+ /**
+ * Do not use this method. Used internally by the SDK.
+ */
+ public Marker getMarker() {
+ return marker;
+ }
+
+ public LatLng getPosition() {
+ return marker.getPosition();
+ }
+
+ public String getSnippet() {
+ return marker.getSnippet();
+ }
+
+ public String getTitle() {
+ return marker.getTitle();
+ }
+
+ public Sprite getIcon() {
+ return marker.getIcon();
+ }
+
+ public MarkerOptions position(LatLng position) {
+ marker.setPosition(position);
+ return this;
+ }
+
+ public MarkerOptions snippet(String snippet) {
+ marker.setSnippet(snippet);
+ return this;
+ }
+
+ public MarkerOptions icon(@Nullable Sprite icon) {
+ marker.setIcon(icon);
+ return this;
+ }
+
+ public MarkerOptions title(String title) {
+ marker.setTitle(title);
+ return this;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+
+ MarkerOptions marker = (MarkerOptions) o;
+
+ if (getPosition() != null ? !getPosition().equals(marker.getPosition()) : marker.getPosition() != null)
+ return false;
+ if (getSnippet() != null ? !getSnippet().equals(marker.getSnippet()) : marker.getSnippet() != null)
+ return false;
+ if (getIcon() != null ? !getIcon().equals(marker.getIcon()) : marker.getIcon() != null)
+ return false;
+ return !(getTitle() != null ? !getTitle().equals(marker.getTitle()) : marker.getTitle() != null);
+
+ }
+
+ @Override
+ public int hashCode() {
+ int result = 1;
+ result = 31 * result + (getPosition() != null ? getPosition().hashCode() : 0);
+ result = 31 * result + (getSnippet() != null ? getSnippet().hashCode() : 0);
+ result = 31 * result + (getIcon() != null ? getIcon().hashCode() : 0);
+ result = 31 * result + (getTitle() != null ? getTitle().hashCode() : 0);
+ return result;
+ }
+}