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

com.frightanic.smn.api.geojson.Geometry Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.frightanic.smn.api.geojson;

import lombok.Getter;

/**
 * Each feature has a 'Point' geometry with coordinates based on the selected CRS.
 */
@Getter
public final class Geometry {
  private final String type = "Point";
  private final Number[] coordinates;

  public Geometry(Number[] coordinates) {
    this.coordinates = coordinates;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy