is it possible to add a circle to the map, like it’s done in leaflet?
I already add can markers with the tt API with the command, :
let marker = tt.marker( [ 51.5, 4.4 ] ).addTo( map)
but now I would like to add a circle with the tt API, like it’s done in leaflet:
let circle = L.circle( [ 52.0, 4.8 ], {
color: ‘red’,
fillColor: ‘cyan’,
fillOpacity: 1,
radius: 1000
}).addTo( map)
The same question for line and polygon (because I don’t want to add these as GeoJson objects for performance reasons).