Gathering detailed insights and metrics for maplibre-gl-js-amplify
Gathering detailed insights and metrics for maplibre-gl-js-amplify
Gathering detailed insights and metrics for maplibre-gl-js-amplify
Gathering detailed insights and metrics for maplibre-gl-js-amplify
npm install maplibre-gl-js-amplify
Typescript
Module System
Node Version
NPM Version
v4.0.1-unstable.2
Updated on Jan 17, 2025
v4.0.2
Updated on Dec 05, 2024
v3.0.0-next-geo.1
Updated on Dec 05, 2024
v3.0.0-unstable.16
Updated on Sep 03, 2024
v4.0.1
Updated on Aug 20, 2024
v3.0.0-unstable.15
Updated on Aug 20, 2024
TypeScript (92.65%)
CSS (5.65%)
JavaScript (1.61%)
Shell (0.08%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
13 Stars
296 Commits
10 Forks
44 Watchers
33 Branches
89 Contributors
Updated on Mar 26, 2025
Latest Version
4.0.2
Package Id
maplibre-gl-js-amplify@4.0.2
Unpacked Size
445.80 kB
Size
84.09 kB
File Count
87
NPM Version
8.13.2
Node Version
16.20.2
Published on
Dec 05, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
10
3
34
A plugin for maplibre-gl-js for integration with Amplify Geo.
1yarn add maplibre-gl-js-amplify
1import { createMap } from "maplibre-gl-js-amplify";
2import { Amplify } from "aws-amplify";
3import awsconfig from './aws-exports';
4
5Amplify.configure(awsconfig);
6...
7 const map = await createMap({
8 container: "map", // An HTML Element or HTML element ID to render the map in https://maplibre.org/maplibre-gl-js-docs/api/map/
9 center: [-123.1187, 49.2819],
10 zoom: 11,
11 region: "us-west-2"
12 })
1import { Amplify } from "aws-amplify"; 2import { AmplifyGeocoderAPI } from "maplibre-gl-js-amplify"; 3import awsconfig from './aws-exports'; 4import maplibregl from "maplibre-gl"; 5import MaplibreGeocoder from "@maplibre/maplibre-gl-geocoder"; 6import "@maplibre/maplibre-gl-geocoder/dist/maplibre-gl-geocoder.css"; 7 8Amplify.configure(awsconfig); 9... 10 const geocoder = createAmplifyGeocoder(); 11 map.addControl(geocoder);
1import spiderManIcon from "./spiderman.svg" 2... 3const icon = new Image(100, 100); 4icon.src = spiderManIcon; 5 6map.on("load", function () { 7 drawPoints( 8 'mySourceName', 9 [ 10 { 11 coordinates: [-122.477, 37.8105], 12 }, 13 ], 14 map, 15 { 16 unclusteredOptions: { 17 markerImageElement: icon, 18 } 19 } 20 ); 21});
See API.md for complete reference.
See FIXME.
See CONTRIBUTING.md.
No vulnerabilities found.
Reason
all changesets reviewed
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
all dependencies are pinned
Details
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
5 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More