osm-mini-editor
Version:
osm轻量化编辑器,相比较OSM源代码包
45 lines (44 loc) • 818 B
TypeScript
export declare const roads: ({
id: string;
wkt: string;
tags: {
datatype: string;
roadclass: string;
ownerShip: string;
fc?: undefined;
};
type: string;
} | {
id: string;
wkt: string;
type: string;
tags: {
datatype: string;
roadclass?: undefined;
ownerShip?: undefined;
fc?: undefined;
};
} | {
id: string;
wkt: string;
tags: {
datatype: string;
roadclass: string;
fc: string;
ownerShip: string;
};
type: string;
})[];
export declare const nodes: {
id: string;
wkt: string;
tags: {
datatype: string;
};
type: string;
attrs: {
showHover: boolean;
title: string;
};
}[];
export declare const roadCrosses: any[];