Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ShareableInfoProvider.java « sharing « util « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd6ad57653e831b146786118a890e8e9f9415b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mapswithme.util.sharing;

import androidx.annotation.NonNull;

public interface ShareableInfoProvider
{
  @NonNull
  String getName();

  double getLat();

  double getLon();

  double getScale();

  @NonNull
  String getAddress();
}