You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tzahi Levi edited this page Apr 13, 2021
·
7 revisions
The annotation features object is basically a GeoJson FeatureCollection object,
with the following specific properties for each feature:
{
id: string;// the id of the annotation.
style: object;//the style of the annotation.
showMeasures: boolean;// will show the annotaiton measure.
label: {
text: string;// the annotaiton label.
geometry: geoJsonpoint.// the position of the label.}
labelSize: number;// the font size of the label
mode: 'Point'|'LineString'|'Polygon'|'Circle'|'Rectangle'|'Arrow'// the annotaion type
icon: string;// the url for the icon.
undeletabel: boolean;// this annotation could be delete.}