resium
Version:
React components for Cesium
168 lines (151 loc) • 4.55 kB
text/typescript
import {
Billboard,
BillboardCollection,
Entity,
GeoJsonDataSource as CesiumGeoJsonDataSource,
Label,
LabelCollection,
Model,
ModelMesh,
ModelNode,
PointPrimitive,
PointPrimitiveCollection,
Polyline,
PolylineCollection,
Primitive,
} from "cesium";
import { createCesiumComponent, PickCesiumProps, Merge, MethodOptions2, EventProps } from "../core";
/*
@summary
`GeoJsonDataSource` provides the way to load and show GeoJSON data into the scene.
Both GeoJSON and TopoJSON are supported, and can be loaded from a URL, string or raw object.
*/
/*
@scope
Inside [Viewer](/components/Viewer) or [CesiumWidget](/components/CesiumWidget) components.
*/
export type Target = Merge<
Merge<CesiumGeoJsonDataSource, CesiumGeoJsonDataSource.LoadOptions>,
MethodOptions2<typeof CesiumGeoJsonDataSource, "load">
>;
export type GeoJsonDataSourceCesiumProps = PickCesiumProps<
CesiumGeoJsonDataSource,
typeof cesiumProps
>;
export type GeoJsonDataSourceCesiumReadonlyProps = PickCesiumProps<
Target,
typeof cesiumReadonlyProps
>;
export type GeoJsonDataSourceCesiumEvents = {
onChange?: (GeoJsonDataSource: CesiumGeoJsonDataSource) => void;
onError?: (GeoJsonDataSource: CesiumGeoJsonDataSource, error: any) => void;
onLoading?: (GeoJsonDataSource: CesiumGeoJsonDataSource, isLoaded: boolean) => void;
};
export type GeoJsonDataSourceOtherProps = {
/** Calls when the Promise for loading data is fullfilled. */
onLoad?: (GeoJsonDataSouce: CesiumGeoJsonDataSource) => void;
data?: Parameters<InstanceType<typeof CesiumGeoJsonDataSource>["load"]>[0];
};
export type EventTarget = {
id: Entity;
} & (
| { primitive: Primitive }
| {
primitive: Model;
mesh: ModelMesh;
node: ModelNode;
}
| { collection: BillboardCollection; primitive: Billboard }
| { collection: LabelCollection; primitive: Label }
| { collection: PointPrimitiveCollection; primitive: PointPrimitive }
| { collection: PolylineCollection; primitive: Polyline }
);
export type GeoJsonDataSourceProps = GeoJsonDataSourceCesiumProps &
GeoJsonDataSourceCesiumReadonlyProps &
GeoJsonDataSourceCesiumEvents &
EventProps<EventTarget> &
GeoJsonDataSourceOtherProps;
const cesiumProps = ["clustering", "name", "show"] as const;
const cesiumReadonlyProps = [
"clampToGround",
"sourceUri",
"credit",
"markerSize",
"markerSymbol",
"markerColor",
"stroke",
"strokeWidth",
"fill",
"describe",
] as const;
export const cesiumEventProps = {
onChange: "changedEvent",
onError: "errorEvent",
onLoading: "loadingEvent",
} as const;
const load = (
element: CesiumGeoJsonDataSource,
{ data, onLoad, ...options }: GeoJsonDataSourceProps,
) => {
if (!data) return;
element.load(data, options).then(value => {
if (onLoad) {
onLoad(value);
}
});
};
const GeoJsonDataSource = createCesiumComponent<CesiumGeoJsonDataSource, GeoJsonDataSourceProps>({
name: "GeoJsonDataSource",
create(context, props) {
if (!context.dataSourceCollection) return;
const element = new CesiumGeoJsonDataSource(props.name);
if (props.clustering) {
element.clustering = props.clustering;
}
if (typeof props.show === "boolean") {
element.show = props.show;
}
context.dataSourceCollection.add(element);
if (props.data) {
load(element, props);
}
return element;
},
update(element, props, prevProps) {
if (!props.data) {
element.show = false;
} else if (prevProps.show !== props.show) {
element.show = typeof props.show === "boolean" ? props.show : true;
}
if (
props.data &&
(prevProps.data !== props.data ||
prevProps.clampToGround !== props.clampToGround ||
prevProps.sourceUri !== props.sourceUri ||
prevProps.credit !== props.credit ||
prevProps.markerSize !== props.markerSize ||
prevProps.markerSymbol !== props.markerSymbol ||
prevProps.markerColor !== props.markerColor ||
prevProps.stroke !== props.stroke ||
prevProps.strokeWidth !== props.strokeWidth ||
prevProps.fill !== props.fill)
) {
load(element, props);
}
},
destroy(element, context) {
if (context.dataSourceCollection && !context.dataSourceCollection.isDestroyed()) {
context.dataSourceCollection.remove(element);
}
},
provide(element) {
return {
dataSource: element,
};
},
cesiumProps,
cesiumReadonlyProps,
cesiumEventProps,
useCommonEvent: true,
});
export default GeoJsonDataSource;