
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
geodashboard
Advanced tools
Web library to display data as maps and widgets using WMS, WFS and WPS services.
Web library to display data as maps and widgets using WMS, WFS and WPS services.
GeoDashboard is a pure client application. That means it doesn't include a backend side. All it needs to work is a map server with WMS, WFS and WPS enabled. At the moment, GeoDashboard has been tested only with GeoServer.
The idea behind this project is that anybody who already has an OGC compliant server up and running can create a simple and nice dashboard with just a few lines of JavaScript.
GeoDashboard has born as an inside project of SIASAR.
There are basically two options to use GeoDashboard:
<link rel="stylesheet" href="https://unpkg.com/geodashboard/dist/geo-dashboard.css" />
<script src="https://unpkg.com/geodashboard/dist/geo-dashboard.js"></script>
npm install --save geodashboard
or
yarn add geodashboard
const GeoDashboard = require('geodashboard');
or
import * as GeoDashboard from 'geodashboard';
<div id="dashboard"></div>
const dashboard = new GeoDashboard.Dashboard({
container: document.getElementById('dashboard'),
header: {
title: 'GeoDashboard Demo',
},
map: {
center: [-75.01, -9.53],
zoom: 7,
}
});
dashboard.addBaseLayer(new GeoDashboard.OSMLayer({
visible: true,
}));
dashboard.addOverlayLayer(new GeoDashboard.WFSLayer({
title: 'Communities',
server: 'https://geoserver.siasar.org/geoserver',
layer: 'siasar:communities',
visible: true,
popup: [{
title: 'Name',
property: 'name',
}],
style: {
property: 'score',
values: {
'A': { color: '#54BA46' },
'B': { color: '#FFFF39' },
'C': { color: '#FF9326' },
'D': { color: '#C92429' },
},
}
}));
dashboard.addWidget(new GeoDashboard.CountWidget({
title: 'Total Communities',
server: 'https://geoserver.siasar.org/geoserver',
layer: 'siasar:communities',
}));
dashboard.addWidget(new GeoDashboard.AggregateWidget({
title: 'Total Population',
server: 'https://geoserver.siasar.org/geoserver',
layer: 'siasar:communities',
property: 'population',
function: 'Sum',
}));
dashboard.render();
Thanks ThreeFunkyMonkeys for hosting GeoServer with demo data!
For further details on objects, see the documentation.
GeoDashboard uses BrowserStack for testing automation. BrowserStack is a cloud-based cross-browser testing tool that enables developers to test their websites across various browsers on different operating systems and mobile devices, without requiring users to install virtual machines, devices or emulators.
Thanks BrowserStack for supporting OpenSource projects!
FAQs
Web library to display data as maps and widgets using WMS, WFS and WPS services.
The npm package geodashboard receives a total of 25 weekly downloads. As such, geodashboard popularity was classified as not popular.
We found that geodashboard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.