com.targomo.client.api.geo.PoiTargetCoordinate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for easy usage of Targomo web services.
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