com.scaleset.geo.CRS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scaleset-geo Show documentation
Show all versions of scaleset-geo Show documentation
Simple framework for dealing with GeoJson and similar data formats
The newest version!
package com.scaleset.geo;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.HashMap;
import java.util.Map;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class CRS {
private String name;
private Map properties = new HashMap();
public CRS() {
}
public String getName() {
return name;
}
public Map getProperties() {
return properties;
}
public void setName(String name) {
this.name = name;
}
public void setProperties(Map properties) {
this.properties = properties;
}
}