This is repo for Web GIS development 2021 course on udemy. Click here to get the course on discounted price (78% discount).
- Download and install the geoserver. Installation tutorial.
- Upload data to the geoserver. data upload guide.
- 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",
},
]