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
maplibre-gl
BSD licensed community fork of mapbox-gl, a WebGL interactive maps library
@maplibre/maplibre-gl-style-spec
a specification for maplibre styles
@maplibre/maplibre-gl-geocoder
A geocoder control for Maplibre GL JS
maplibre-gl-draw-circle
A module to draw a circle using mapbox-gl-draw
npm install maplibre-gl-js-amplify
v3.0.0-unstable.16
Published on 03 Sept 2024
v4.0.1
Published on 20 Aug 2024
v3.0.0-unstable.15
Published on 20 Aug 2024
v3.0.0-unstable.14
Published on 05 Jun 2024
v4.0.0
Published on 10 Nov 2023
v3.0.0-unstable.13
Published on 09 Nov 2023
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
14 Stars
279 Commits
10 Forks
45 Watching
31 Branches
114 Contributors
Updated on 20 Nov 2024
Minified
Minified + Gzipped
TypeScript (92.65%)
CSS (5.65%)
JavaScript (1.61%)
Shell (0.08%)
Cumulative downloads
Total Downloads
Last day
-49.8%
5,490
Compared to previous day
Last week
9.2%
42,306
Compared to previous week
Last month
12.8%
154,278
Compared to previous month
Last year
-40.7%
2,048,965
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
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
all changesets reviewed
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
0 existing vulnerabilities detected
Reason
6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Score
Last Scanned on 2024-11-25
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