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

GeoFenceFeature.java « api « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2670854a3c8af7ac35522563e579a54bef4cecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mapswithme.maps.api;

/**
 * Represents CampaignFeature from core.
 */
public class GeoFenceFeature
{
  public final long mwmVersion;
  public final String countryId;
  public final int featureIndex;
  public final double latitude;
  public final double longitude;

  public GeoFenceFeature(long mwmVersion, String countryId, int featureIndex,
                         double latitude, double longitude)
  {
    this.mwmVersion = mwmVersion;
    this.countryId = countryId;
    this.featureIndex = featureIndex;
    this.latitude = latitude;
    this.longitude = longitude;
  }
}