blob: 88c970c1f14b4a2c2466c258f135b4e0536f9529 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package io.flutter.plugins.googlemaps;
import com.google.android.gms.maps.model.BitmapDescriptor;
import com.google.android.gms.maps.model.LatLng;
/** Receiver of Marker configuration options. */
interface MarkerOptionsSink {
void setAlpha(float alpha);
void setAnchor(float u, float v);
void setConsumeTapEvents(boolean consumeTapEvents);
void setDraggable(boolean draggable);
void setFlat(boolean flat);
void setIcon(BitmapDescriptor bitmapDescriptor);
void setInfoWindowAnchor(float u, float v);
void setInfoWindowText(String title, String snippet);
void setPosition(LatLng position);
void setRotation(float rotation);
void setVisible(boolean visible);
void setZIndex(float zIndex);
}