Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
markers-on-map
Advanced tools
Use highly customizable maps (Google Maps) with multiple custom Markers in your web projects.
Use highly customizable maps (Google Maps) with multiple custom Markers in your web projects.
1.4.0 *
https://furcan.github.io/Markers-On-Map/
Install
npm i markers-on-map
yarn add markers-on-map
Import
import MarkersOnMap from "markers-on-map";
<script src="dist/markers-on-map-1.4.0.js"></script>
// Basic usage
MarkersOnMap.Init({
// required => Google Maps JavaScript API Key (in string format)
googleApiKey: null,
// map markers options => at least one marker object required
markerObjects: [
{
// required => marker latitude
markerLat: 39.925018,
// required => marker longitude
markerLong: 32.836956,
}
],
});
/*
* @param1 {string}: Required, Select the element (ID or Class)
* @param2 {function}: Optional, A callback function after the map has been created.
*/
MarkersOnMap.Run('div#GoogleMaps');
// e.g. With a Callback function (v1.4.0 and the next versions)
MarkersOnMap.Run('div#GoogleMaps', function () {
// codes here...
});
// Use "MarkersOnMap.Remarker()" function to replace all markers to new ones.
// Call the function with an array includes new marker objects => MarkersOnMap.Remarker([{...},{...},]);
MarkersOnMap.Remarker([
// At least one marker required
{
markerLat: 40.2155784,
markerLong: 28.937106,
},
{
markerLat: 39.9412639,
markerLong: 32.8495664,
},
]);
// All options with descriptions
MarkersOnMap.Init({
// required => Google Maps JavaScript API Key (in string format)
googleApiKey: null,
// if "Google Maps Places API" enabled on "Google APIs Console" can set "true"
googlePlacesApiEnabled: false,
// available if "googlePlacesApiEnabled" is true
googlePlacesContentButton: 'Get Directions',
// map width
mapWidth: '100%',
// map height
mapHeight: '450px',
// map background color
mapBackgroundColor: '#f8f8f8',
// center of the world (lat)
mapCenterLat: 39.925054,
// center of the world (long)
mapCenterLong: 32.8347552,
// map zoom level
mapZoomLevel: 13,
// map min zoom level
mapMinZoom: 2,
// map max zoom level
mapMaxZoom: 18,
// map zoom control buttons
mapZoomControl: false,
// map animated zoom
mapAnimatedZoom: false,
// map type => "ROADMAP" || "SATELLITE" || "HYBRID" || "TERRAIN"
mapTypeId: 'roadmap',
// map type control buttons
mapTypeControl: false,
// map street view control buttons
mapStreetViewControl: false,
// map fullscreen control buttons
mapFullscreenControl: true,
// map rotate control buttons
mapRotateControl: false,
// map scale control buttons
mapScaleControl: false,
// map clickable points of interest
mapClickableIcons: true,
// map draggable
mapDraggable: true,
// map mouse scroll zoom
mapScrollWheel: true,
// map double click zoom
mapDisableDoubleClickZoom: false,
// map styles => [object] => (snazzymaps or etc. services could be helpful)
mapStyles: null,
// map default marker url
markerDefaultUrl: momMarkerBase64(), // this function return default base64 icon
// map marker animation => "drop" || "bounce" || "null" for off
markerDropAnimation: 'drop',
// adjust map zoom by markers
markerAdjustZoom: true,
// custom markers img element wrapper
markerOverlay: true,
// custom markers wrapper class name => e.g. ".mom-marker img { ...css codes };"
markerOverlayClassName: 'mom-marker',
// map markers labels
markerLabel: {
// map marker use label
useLabel: false,
// map marker label position => "top" || "bottom"
labelPosition: 'top',
// map marker label color
labelColor: '#1e1e1e',
// map marker label font size
labelFontSize: '12px',
// map marker label font weight
labelFontWeight: '600',
// map marker label font family
labelFontFamily: 'Roboto',
},
// map markers options => at least one marker object required
markerObjects: [
{
// required => marker latitude
markerLat: 39.925018,
// required => marker longitude
markerLong: 32.836956,
// optional => marker title
markerTitle: 'Anitkabir',
// optional => marker size
markerSize: 45,
// optional => marker url (an image url or base64 png/jpg)
markerUrl: momMarkerBase64(), // this function return default base64 icon
// optional => if "markerLabel.usaLabel" is true
markerLabelText: 'MOM',
// optional => custom html content infowindow when marker clicked
markerContent: null,
// optional => infowindow from Google Places when marker clicked (if "googlePlacesApiEnabled" is true)
markerContentFromGoogleQuery: 'Anitkabir',
// v1.1.0 and the next versions => optional => A callback function can be used when marker element clicked
markerCallback: null,
// v1.3.0 and the next versions => optional => A callback function can be used when marker infowindow close button element clicked
closeCallback: null,
}
],
});
Copyright © 2020 Markers On Map
MIT license - https://opensource.org/licenses/MIT
FAQs
Use highly customizable maps (Google Maps) with multiple custom Markers in your web projects.
The npm package markers-on-map receives a total of 16 weekly downloads. As such, markers-on-map popularity was classified as not popular.
We found that markers-on-map 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.