8000 GitHub - iamtekson/GIS-portal: This is the repo for the Web GIS development 2021 course on udemy. Check out the course here: https://www.udemy.com/course/web-gis-development-2021/?referralCode=488F271341990F62FD05
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

iamtekson/GIS-portal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

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",
  },
]
0