Skip to content

Latest commit

 

History

History
118 lines (89 loc) · 3.28 KB

README.md

File metadata and controls

118 lines (89 loc) · 3.28 KB

ArcGIS API Web Application

This web application allows users to interact with an interactive map using the ArcGIS API. Users can create, modify, and delete geometries, manage layers, and visualize data related to transport stations.

Features

  • Interactive Map: Display map with different basemap options.
  • Geometry Creation and Modification: Tools for creating, modifying, and deleting points, lines, and polygons.
  • Attribute and Geometry Modification: Modify geometry and attributes of existing objects.
  • Layer Management: View and manage layers created by users.
  • Data Visualization: Create charts to visualize data from the map.
  • Search by Coordinates: Search for locations using latitude and longitude.

Installation

  1. Clone the Repository

    git clone https://github.com/Hervnzig/arcgisAPI_app.git
    cd arcgisAPI_app/
  2. Install Dependencies

    npm install
  3. Start the Development Server

    npm start
  4. Open the Application Open your web browser and navigate to http://localhost:3000

File Structure

.
├── README.md
├── folder-tree.txt
├── package-lock.json
├── package.json
├── public
│   ├── data
│   │   ├── provinces.geojson
│   │   ├── regions.geojson
│   │   └── transport_stations.csv
│   ├── favicon.ico
│   ├── index.html
│   ├── manifest.json
│   └── robots.txt
└── src
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── components
    │   ├── BasemapSelector.js
    │   ├── DataChart.js
    │   ├── Filter.js
    │   ├── Header.js
    │   ├── HeaderWithLayerList.js
    │   ├── LayerList.js
    │   ├── MapView.js
    │   ├── SearchBar.js
    │   ├── dataLoader.js
    │   └── styles
    │       ├── BasemapSelector.css
    │       ├── Filter.css
    │       ├── Header.css
    │       └── SearchBar.css
    ├── index.css
    ├── index.js
    ├── logo.svg
    ├── reportWebVitals.js
    └── setupTests.js

Current Features

  1. Interactive Map

    • Display map with different basemap options.
    • Enable panning and zooming functionality.
  2. Geometry Creation and Modification

    • Tools for creating, modifying, and deleting points, lines, and polygons.
    • Sketch widget for creating and updating geometries.
  3. Attribute and Geometry Modification

    • Modify geometry and attributes of existing objects.
    • Selection of geometries to view and edit attributes.
  4. Layer Management

    • View and manage layers created by users.
    • Toggle visibility of layers.
  5. Data Visualization

    • Create charts to visualize data from the map.
    • Ensure queries and filters update both the map and the charts.
  6. Search by Coordinates

    • Search for locations using latitude and longitude.
    • Mark search results on the map.

Contributing

Feel free to submit issues and pull requests. We welcome contributions from the community!

License

This project is licensed under the MIT License. See the LICENSE file for details.