com.gwidgets.api.leaflet.Circle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwty-leaflet Show documentation
Show all versions of gwty-leaflet Show documentation
a JsInterop wrapper for the Leaflet js library
The newest version!
package com.gwidgets.api.leaflet;
import jsinterop.annotations.JsType;
/**
* A class for drawing circle overlays on a map. Extends Path. Use addLayer method of the Map class to add it to the map.
*/
@JsType(isNative = true)
public class Circle extends CircleMarker {
protected Circle() {
super();
}
}