@pan-ya/libgeo3dviewer 1.7.38 → 1.7.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +7 -1
- package/dist/libgeo3dviewer.cjs.js +9 -9
- package/dist/libgeo3dviewer.es.js +532 -514
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1204,6 +1204,12 @@ declare type RibbonLayerProps = {
|
|
|
1204
1204
|
|
|
1205
1205
|
export declare const RoadWay: default_2.FC<RoadWayProps & ReactChildren>;
|
|
1206
1206
|
|
|
1207
|
+
declare type RoadWayNameMatching = {
|
|
1208
|
+
mode: 'prefix' | 'regex';
|
|
1209
|
+
value: string;
|
|
1210
|
+
flags?: string;
|
|
1211
|
+
};
|
|
1212
|
+
|
|
1207
1213
|
/**
|
|
1208
1214
|
* databing使用
|
|
1209
1215
|
*/
|
|
@@ -1231,7 +1237,7 @@ declare interface RoadWayProps {
|
|
|
1231
1237
|
}
|
|
1232
1238
|
|
|
1233
1239
|
declare type RoadWayShowNameSettings = {
|
|
1234
|
-
nameList: string[];
|
|
1240
|
+
nameList: (string | RoadWayNameMatching)[];
|
|
1235
1241
|
offset?: Vector3;
|
|
1236
1242
|
fontSize?: number;
|
|
1237
1243
|
color?: string;
|