
com.cube.geojson.Crs Maven / Gradle / Ivy
package com.cube.geojson;
import java.util.HashMap;
import java.util.Map;
public class Crs {
private String type = "name";
private Map properties = new HashMap();
public String getType() {
return type;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy