
nl.pvanassen.geckoboard.api.widget.MapWidget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geckoboard-api Show documentation
Show all versions of geckoboard-api Show documentation
A Java API to generate highchart json on the server side.
The newest version!
package nl.pvanassen.geckoboard.api.widget;
import nl.pvanassen.geckoboard.api.Push;
import nl.pvanassen.geckoboard.api.error.ValidationException;
import nl.pvanassen.geckoboard.api.json.map.*;
import com.google.gson.annotations.SerializedName;
/**
* Text widget type
*
* @author Paul van Assen
*/
public class MapWidget extends Push {
@SerializedName("points")
private final Points points = new Points();
public MapWidget(String widgetKey) {
super(widgetKey);
}
public CityPoint addCityPoint(String cityName, String regionCode, String countryCode) {
CityPoint cityPoint = new CityPoint(cityName, regionCode, countryCode);
points.addPoint(cityPoint);
return cityPoint;
}
public CityPoint addCityPoint(String cityName, String regionCode) {
CityPoint cityPoint = new CityPoint(cityName, regionCode, null);
points.addPoint(cityPoint);
return cityPoint;
}
public CityPoint addCityPoint(String cityName) {
CityPoint cityPoint = new CityPoint(cityName, null, null);
points.addPoint(cityPoint);
return cityPoint;
}
public HostPoint addHostPoint(String hostname) {
HostPoint hostPoint = new HostPoint(hostname);
points.addPoint(hostPoint);
return hostPoint;
}
public IpPoint addIpPoint(String ip) {
IpPoint ipPoint = new IpPoint(ip);
points.addPoint(ipPoint);
return ipPoint;
}
public LatLonPoint addLatLonPoint(String latitude, String longitute) {
LatLonPoint latLonPoint = new LatLonPoint(latitude, longitute);
points.addPoint(latLonPoint);
return latLonPoint;
}
public T addPoint(T point) {
points.addPoint(point);
return point;
}
@Override
protected void validate() throws ValidationException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy