Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@yandex/ymaps3-default-ui-theme
Advanced tools
Yandex Maps JS API 3.0 example @yandex/ymaps3-default-ui-theme
Yandex JS API package
The package is located in the dist
folder:
dist/types
TypeScript typesdist/esm
es6 modules for direct connection in your projectdist/index.js
Yandex JS ModuleRecommended use @yandex/ymaps3-default-ui-theme
as usual npm package.
Install @yandex/ymaps3-default-ui-theme
package from npm:
npm install @yandex/ymaps3-default-ui-theme
The JS API is loaded dynamically, so the package must be used after the main JS API has loaded:
await ymaps3.ready; // waiting for the main JS API to load.
// ...
const {YMapDefaultMarker} = await import('@yandex/ymaps3-default-ui-theme');
// ...
map.addChild(new YMapDefaultMarker(props));
You also need to import css styles into your project:
/* index.css */
@import '@yandex/ymaps3-default-ui-theme/dist/esm/index.css';
You can use CDN with module loading handler in JS API on your page.
By default ymaps3.import
can load self modules.
Just use ymaps3.registerCdn
and ymaps3.import
:
// register in `ymaps3.import` which CDN to take the package from
ymaps3.import.registerCdn(
'https://cdn.jsdelivr.net/npm/{package}',
'@yandex/ymaps3-default-ui-theme@latest'
);
// ...
// import package from CDN
const pkg = await ymaps3.import('@yandex/ymaps3-default-ui-theme');
This package contains a range of pre-designed user interface elements for your map. This guide will provide you with detailed instructions on how to incorporate these elements into your map and customize them to suit your specific requirements. Live examples of how they can be used, along with links to the relevant code, will also be provided.
This section presents all UI components that belong to the category of controls. These include simple zoom and tilt controls, as well as more advanced controls such as the search control.
This type of controls includes the following:
YMapGeolocationControl
– Display geolocation control on a mapYMapZoomControl
– Display zoom control on a mapYMapRotateControl
– Display rotate control on a mapYMapTiltControl
– Display tilt control on a mapYMapRotateTiltControl
– Display rotate and tilt in one controlThe YMapZoomControl
, YMapRotateControl
, YMapTiltControl
, YMapRotateTiltControl
controls have the same props:
Props name | Description |
---|---|
easing | Easing function for map location animation (optional) |
duration | Map location animate duration (optional) |
The parameters for the YMapGeolocationControl
are slightly different:
Props name | Description |
---|---|
onGeolocatePosition | Geolocation request callback |
source | Data source id for geolocation placemark |
easing | Easing function for map location animation |
duration | Map location animate duration |
More comprehensive controls include the following classes::
YMapSearchControl
– adds a control to the map in the form of a search bar.
It also has built-in suggest hints when entering the name of a place or organization.YMapSearchControl
has the following parameters:
Props name | Description |
---|---|
search | A function that overrides the search function. By default, ymaps3.search is used. |
suggest | A function that overrides the hint function. By default, ymaps3.suggest is used |
searchResult | The callback that receives the search results. |
YMapSearchControl
does not display markers on the map, it only returns coordinates and location parameters,
the developer is responsible for displaying them on the map.
Markers are UI components that are linked to a coordinate on the map. These components include the following classes:
YMapDefaultMarker
– a marker on the map. It can be of different sizes and contain an icon from a ready-made preset.YMapPopupMarker
– a pop-up on the map with custom content.
It may have a different position relative to the point it points to.All markers have parameters from the YMapMarker base class. But there are also specific parameters for each type of marker.
For YMapDefaultMarker
:
Props name | Description |
---|---|
iconName | The name of the icon from the ready-made icons preset |
color | The name of the color from the ready-made colors preset or an object indicating the color for the day and night mode |
size | The size of the marker. 3 sizes are available: normal , small , micro ; |
title | The title to display in the marker hint |
subtitle | The subtitle to display in the marker hint |
staticHint | A flag to indicate that the hint is static or appears when the mouse hovers over the marker |
popup | The parameters for the embedded got into the marker |
For YMapPopupMarker
:
Props name | Description |
---|---|
content | The function of creating popup content |
position | The position of the popup in relation to the point it is pointing to |
offset | The offset in pixels between the popup pointer and the point it is pointing to. |
show | Hide or show popup on map |
onClose | Popup closing callback |
onOpen | Popup opening callback |
FAQs
Yandex Maps JS API 3.0 example @yandex/ymaps3-default-ui-theme
The npm package @yandex/ymaps3-default-ui-theme receives a total of 342 weekly downloads. As such, @yandex/ymaps3-default-ui-theme popularity was classified as not popular.
We found that @yandex/ymaps3-default-ui-theme demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.