Update CircleMarker, CircleMarkerProps.

This commit is contained in:
David Schneider
2017-04-13 16:10:48 -07:00
parent 5d598642b5
commit ccc25ed739

View File

@@ -234,11 +234,11 @@ export interface CircleProps extends PathProps {
}
export class Circle<P extends CircleProps, E extends Leaflet.Circle> extends Path<P, E> { }
interface CircleMarkerProps extends PathProps {
export interface CircleMarkerProps extends PathProps {
center: Leaflet.LatLngExpression;
radius?: number;
}
export const CircleMarker: React.ComponentClass<CircleMarkerProps>;
export class CircleMarker<P extends CircleMarkerProps, E extends Leaflet.CircleMarker> extends Path<P, E> { }
interface PolylineProps extends PathProps {
positions: Leaflet.LatLngExpression[] | Leaflet.LatLngExpression[][];