All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.targomo.client.api.geo.PoiTargetCoordinate Maven / Gradle / Ivy

There is a newer version: 0.39.0
Show newest version
package com.targomo.client.api.geo;

import com.targomo.client.api.statistic.PoiType;

/**
 * Created by gerb on 24/03/2017.
 */
public class PoiTargetCoordinate extends DefaultTargetCoordinate {

    private PoiType type;

    public PoiTargetCoordinate(String id, double x, double y) {
        super(id,x,y);
    }

    public PoiType getType() {
        return type;
    }

    public void setType(PoiType type) {
        this.type = type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy