npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mapuiexts/react-cesiumext

v0.1.4

Published

A react library to build 3d map applications with cesiumjs

Downloads

10

Readme

1-About

React-CesiumExt, the React Cesium Extension, is a Open Source Toolkit that provides collection of components to build a professional 3D map application. Its implementation is based on Cesium, OpenLayers, Ant Design and React library. With a few lines of code you will be able to create a powerfull 3D Web Map application.

So, React-CesiumExt provide you the power to launch a professional 3D Web Map application using Cesium with support to OGC standards like WMS and WFS, givining you the ready to use UI components to:

  • Add WMS layers
  • Create WMS Layers on-the-fly
  • Add WFS Layers
  • Create WFS layers on-the-fly
  • Search features using WFS spatial queries
  • Visualize and result of the search in the Cesium Viewer and the list of features in a Grid component.
  • Etc...

React-CesiumExt is under the MIT License, which allow you to develop open-source or commercial applications free of charge. The source code will be available soon.

React-CesiumExt 0.1.x is the first base version which uses currently the versions Cesiumjs and React;

For a complete description of all components with a LIVE CODE EDITOR, check our API Documentation

2-UI Components

As shown in the figure below, some included components are: Imagery Layer Tree, DataSource Tree, Entity Grid, etc. There are a lot of UI components ready to be used or to be extended. For the complete list and description of all components, check the section "UI Components" on this documentation: there you can also find the usage of each component with description of the parameters and a LIVE EDITOR on where you can modify the code and see interactively the result.

2.1-Entity Grid

You can add in your application an Entity Grid component to visualize the list of entities from a specified datasource. This Grid component is dynamic. It means that:

  • If the attribute properties of a entity is changed, the changes will be reflected in the grid.
  • Also if new entities are added to the datasource or removed from it, the new entities will be added or removed automatically.

Once you select a row in the grid, the entity will be highlighted with the configured color. In the figure below, the selected row (Minnesota) in showning in the Cesium Viewer with a highlighted yellow color.

Also it is included in the grid the button "options" with the common options to zoom to the entities and clear the datasource. New options will be available soon.

2.2- WFS Entity Grid

The development for the WFS Entity Grid is still in progress and it will be released soon. The following functionalities will be included:

  • Build complexes queries using several OGC operators: Equal To, Like, Greater Than, Less Than, etc.
  • Build complexes queries using OGC spatial operators: Filter by Polygon, Bounding Box, etc.
  • The Grid column names are automatically retrieved from WFS query
  • Highlight in the map the selected entity in Grid (selection of multiple rows are possible)
  • Zoom in the map to the selected entity(ies) in the Grid or Zoom to all retrieved entities
  • Clear in the map the selected entity(ies) in the Grid or clear all the retrieved entities
  • Etc.

2.3- Imagery Layer Tree View

The Tree Layer will allow the user to show/hide the configured imagery layers in the map. Additionally, this UI component provides a powerfull context menu once the user right clicks in the tree node. The context menu will provide several options. This context menu also can be customized with new options or to remove some of them.

If the user right click in the root node, the following functionalities are available to create a new layer:

  • Create a New WMS Layer
  • Create a New OSM Layer
  • Create a Ion Layer
  • Remark: possibility to create other layers will be added in the future

If the user right click direclty in the layer node, different options will be available for the selected layer:

  • Edit the layer
  • Remove the layer
  • Remark: new options will be added in the future to manipulate the selected layer.

2.4- DataSource Tree View

The DataSource Tree View will allow the user to show/hide the Cesium DataSource in the map. Additionally, this UI component provides a powerfull context menu once the user right clicks in the tree node. The context menu will provide several options. This context menu also can be customized with new options or to remove some of them.

If the user right click in the root node, the following functionalities are available to create a new datasource:

  • Create a New GeoJson DataSource
  • Create a New Wfs GeoJson DataSource
  • Create a New Czml DataSource
  • Create a New Gpx DataSource

If the user right click direclty in the DataSource node, different options will be available for the selected DataSource. The options available will depend on the selected DataSource:

  • Fly to entities
  • Filter by Polygon: available for Wfs Datasource and the user will be able to draw a polygon to retrieve the entities
  • Unload DataSource
  • Edit DataSource
  • Remove DataSource
  • Remark: new options will be added in the future to manipulate the selected DataSource.

In the option "Filter by Polygon" from the previous figure, the user will draw a polygon to retrieve the buildings intersecting the polygon area through a Wfs request. To indicate the last vertex of the polygon, the user has to double-click in the viewer.

As a result for the Wfs request, the buildings are retrieved, as indicated in the figure below