Skip to content

iamtekson/GIS-portal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

05fbcd4 · May 10, 2021

History

11 Commits
May 4, 2021
May 5, 2021
May 2, 2021
May 10, 2021
May 4, 2021
May 4, 2021

Repository files navigation

GIS-portal

This is repo for Web GIS development 2021 course on udemy. Click here to get the course on discounted price (78% discount).

Getting start with this project

  1. Download and install the geoserver. Installation tutorial.
  2. Upload data to the geoserver. data upload guide.
  3. Change the lib/js/layers.js file according to your need. Below is the example of layers.js file,
var layersFromGeoserver = [
  {
    layerName: "gis:BU_2020", // This is the layer name from geoserver
    layerTitle: "Building", // This name will be shown in the left-sidebar
    defaultCheck: "false", // The layer default visibility
    thumbnailUrl: "./img/bu_2020.PNG", //Thumbnail of the layer
    description: // Short description for the layer
      "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Minima nobis soluta molestiae asperiores quae! Veritatis",
  },

  {
    layerName: "gis:LP_2020",
    layerTitle: "Land parcel",
    defaultCheck: "checked",
    thumbnailUrl: "./img/lp_2020.PNG",
    description:
      "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Minima nobis soluta molestiae asperiores quae! Veritatis",
  },
]