I'm adding hotspots to my map with the following code:
public void addMarker(MyCustomMarker marker) {
LatLng latLng = new LatLng(marker.getLatitude(), marker.getLongitude());
mMap.addMarker(new MarkerOptions().position(latLng).title("Marker"));
}
What are the consequences of adding multiple hotspots with the identical lat/long? Will they both remain on the map and in memory, or will adding a new marker override the last one at that position?
Adding a new marker with identical lat/long will make both remain on the map and in memory.